Skip to content

Latest commit

 

History

History
113 lines (56 loc) · 4.19 KB

CHANGELOG.md

File metadata and controls

113 lines (56 loc) · 4.19 KB

Change Log

All notable changes to this project will be documented in this file. See Conventional Commits for commit guidelines.

3.0.3 (2021-10-15)

Note: Version bump only for package @thi.ng/vector-pools

3.0.2 (2021-10-15)

Note: Version bump only for package @thi.ng/vector-pools

3.0.1 (2021-10-13)

Note: Version bump only for package @thi.ng/vector-pools

3.0.0 (2021-10-12)

Build System

  • major update of ALL pkgs (export maps, ESM only) (0d1d6ea)

BREAKING CHANGES

  • discontinue CommonJS & UMD versions
  • only ESM modules will be published from now on
  • CJS obsolete due to ESM support in recent versions of node:
    • i.e. launch NodeJS via:
    • node --experimental-specifier-resolution=node --experimental-repl-await
    • in the node REPL use await import(...) instead of require()
  • UMD obsolete due to widespread browser support for ESM

Also:

  • normalize/restructure/reorg all package.json files
  • cleanup all build scripts, remove obsolete
  • switch from mocha to @thi.ng/testament for all tests

2.0.0 (2021-02-20)

Bug Fixes

  • vector-pools: fix regression/update buffer arg types (27a3614)

Code Refactoring

  • vector-pools: update attrib type handling (0ebd889)

Features

  • vector-pools: export asNativeType/asGLType() (d4b397b)

BREAKING CHANGES

  • vector-pools: update attrib types to use string consts
    • part of umbrella-wide changes to thi.ng/api Type aliases (see a333d4182)
    • remove obsolete asNativeType()/asGLType() fns (moved to thi.ng/api for better re-use)

1.0.0 (2019-07-07)

Code Refactoring

  • vector-pools: address TS strictNullChecks flag (981b5ce)

Features

  • vector-pools: add AttribPool.attribArray(), add tests (285022a)
  • vector-pools: enable TS strict compiler flags (refactor) (1af6f78)
  • vector-pools: update AttribPool, add tests, update readme (33109d0)

BREAKING CHANGES

  • vector-pools: update return types of various class methods
    • some AList, ArrayList, LinkedList, VecPool methods now return undefined if operation failed

0.2.0 (2019-02-05)

Bug Fixes

  • vector-pools: AttribPool opts & default handling (16b48b3)

Features

  • vector-pools: update & fix AttribPool resize logic (b7d162f)

0.1.0 (2019-01-21)

Features

  • vector-pools: add AttribPool, refactor lists (019c0af)
  • vector-pools: add GLType alias, AttribPoolOpts, update pool impls (4fe2047)
  • vector-pools: add VecPool, VecArrayList & VecLinkedList (48d5d57)
  • vector-pools: update readme, add examples (fd54d32)