Skip to content

Latest commit

 

History

History
322 lines (195 loc) · 12.1 KB

CHANGELOG.md

File metadata and controls

322 lines (195 loc) · 12.1 KB

Change Log

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

Note: Unlisted patch versions only involve non-code or otherwise excluded changes and/or version bumps of transitive dependencies.

3.8.0 (2024-05-08)

🚀 Features

  • add rdom-klist example project, update readmes (cd458ac)
  • add rdom-klist example project, update readmes (531437f)

3.7.0 (2024-03-21)

🚀 Features

  • add weightedProbability() (393dcaa)

3.6.13 (2023-11-09)

♻️ Refactoring

  • update all tests (packages A-S) (e3085e4)

3.6.6 (2023-10-05)

🩹 Bug fixes

  • update ARandom.minmaxInt/Uint() (33c35b4)
    • fix NaN bug iff min == max

3.6.1 (2023-08-12)

⏱ Performance improvements

  • add/re-use internal buf for uuid() (6bf7f1d)
    • avoid temp allocations (10% faster)

3.6.0 (2023-08-12)

🚀 Features

  • add IRandom.minmaxUint() (6558eb1)
    • clarify .minmaxInt() is for signed (i32)
    • new .minmaxUint() is for unsigned (u32)
    • add ARandom.minmaxUint()
  • add IRandom.probability() (efdd49c)
    • add impl for ARandom base class

⏱ Performance improvements

  • increase Crypto default size to 1KB (a30075a)
  • minor update randomBytesFrom() (770dbe5)
    • switch loop direction

3.5.0 (2023-07-14)

🚀 Features

  • add pickRandomUnique() (a70c951)
    • add generics for uniqueValuesFrom()

3.4.0 (2023-04-19)

🚀 Features

  • add INorm.normMinMax(), update ARandom (89c6b76)

3.3.0 (2022-05-22)

🚀 Features

  • update IRandom, add SFC32 impl (970d7f4)
  • add pickRandomKey(), weightedRandomKey() (9b8ed07)

3.2.2 (2021-11-21)

🩹 Bug fixes

  • off-by-one error in ARandom (0bf9828)

3.2.0 (2021-11-17)

🚀 Features

  • Using workspaces for local tools (bf7a404) Improving the overall build ergonomics
    • introduced a tools workspaces
    • imported it in all needed packages/examples
    • inclusive project root

♻️ Refactoring

  • testrunner to binary (4ebbbb2) this commit reverts (partly) changes made in: ef346d7a8753590dc9094108a3d861a8dbd5dd2c overall purpose is better testament ergonomics: instead of having to pass NODE_OPTIONS with every invocation having a binary to handle this for us.

3.1.4 (2021-11-10)

♻️ Refactoring

  • update all countdown loops (a5f374b)

3.1.0 (2021-10-25)

🚀 Features

3.0.1 (2021-10-13)

♻️ Refactoring

  • update imports in all pkgs (5fa2b6f)
    • add .js suffix for all relative imports
  • update imports in all tests/pkgs (effd591)

3.0.0 (2021-10-12)

🛑 Breaking changes

  • major update of ALL pkgs (export maps, ESM only) (0d1d6ea)
  • BREAKING CHANGE: 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

♻️ Refactoring

  • update all tests in all pkgs (8b582bc)
  • update all test stubs (f2d6d53)
  • update imports (138571a)
  • update deps & imports in various pkgs (e1cf29e)
    • largely related to recent updates/restructuring of these packages:
      • api
      • defmulti
      • errors
      • logger

2.4.4 (2021-08-04)

🩹 Bug fixes

  • update weightedRandom() (70afa70)
    • assume missing weights as zero

2.4.0 (2021-04-19)

🚀 Features

  • add uniqueValuesFrom/uniqueIndices() (3b3b5d8)

🩹 Bug fixes

  • HOF issue w/ exponential() (12586b9)

♻️ Refactoring

  • minor updates weightedRandom() (c6741bc)

2.3.1 (2021-02-24)

🩹 Bug fixes

  • update weightedRandom() (b1cf4d8)
    • don't throw error if total weights <= 0 (only print warning)

2.3.0 (2021-02-20)

🚀 Features

♻️ Refactoring

2.2.0 (2021-01-13)

🚀 Features

  • add opt start/end for randomBytes() (4d095da)
  • add CRYPTO IRandom impl (94e69c1)

🩹 Bug fixes

  • add opt start index arg for uuid() (268ec3f)

⏱ Performance improvements

  • minor update weightedRandom() (258fd7b)
    • avoid sorting if no weights are given

♻️ Refactoring

  • minor update randomID() (9d278ad)

2.1.2 (2020-12-07)

♻️ Refactoring

  • update type-only imports in various tests/pkgs (3fd9c24)

2.1.1 (2020-11-26)

🩹 Bug fixes

  • add missing subdir to pkg "files" (916dbe7)

2.1.0 (2020-11-24)

🚀 Features

  • add randomBytesFrom(), update UUID fns (b31c872)
    • add @thi.ng/hex dependency
    • update uuidv4Bytes() to take opt IRandom arg
    • refactor/optimize uuid()
    • add tests
  • add distribution HOFs, move gaussian() (9328821)
    • add exponential(), geometric(), normal(), uniform() HOFs
    • migrate gaussian() to /distributions

2.0.0 (2020-08-28)

🛑 Breaking changes

  • add INorm, extract gaussianCLT() (c687598)
  • BREAKING CHANGE: remove gaussian() from IRandom, extract as standalone gaussianCLT()
    • update gaussianCLT() default args to be more meaningful

🩹 Bug fixes

  • off-by-one error in SYSTEM.int() (ca0492d)

♻️ Refactoring

  • update imports/docstrings (ecb2a36)

1.4.0 (2020-03-01)

🚀 Features

  • add Xoshiro128, refactor default seeds (b535628)

🩹 Bug fixes

  • use correct 160bit default seed for XorWow (38d511b)

1.3.0 (2020-02-25)

🚀 Features

♻️ Refactoring

  • update imports, internal restruct (8548a80)

1.2.0 (2020-01-26)

🚀 Features

  • add randomBytes() wrapper (c536bcd)

1.1.15 (2020-01-24)

⏱ Performance improvements

  • minor update ARandom.norm() (babbbaa)

1.1.14 (2019-11-30)

♻️ Refactoring

1.1.0 (2019-02-15)

🚀 Features

  • add randomID() & weightedRandom() (f719724)

🩹 Bug fixes

  • add opt scale arg to IRandom.float() (5a7e448)

1.0.0 (2019-01-21)

🛑 Breaking changes

  • update package build scripts & outputs, imports in ~50 packages (b54b703)
  • BREAKING CHANGE: enabled multi-outputs (ES6 modules, CJS, UMD)
    • build scripts now first build ES6 modules in package root, then call scripts/bundle-module to build minified CJS & UMD bundles in /lib
    • all imports MUST be updated to only refer to package level (not individual files anymore). tree shaking in user land will get rid of all unused imported symbols.

0.1.0 (2018-11-24)

🚀 Features

  • re-import, extend & refactor random package (MBP2010) (4aea85d)