@thi.ng/hex 2.3.60 → 2.3.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +3 -61
  2. package/package.json +3 -4
package/CHANGELOG.md CHANGED
@@ -1,9 +1,11 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2025-01-04T21:07:38Z
3
+ - **Last updated**: 2025-01-23T13:39:11Z
4
4
  - **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
5
5
 
6
6
  All notable changes to this project will be documented in this file.
7
+ Only versions published since **2022-01-01** are listed here.
8
+ Please consult the Git history for older version information.
7
9
  See [Conventional Commits](https://conventionalcommits.org/) for commit guidelines.
8
10
 
9
11
  **Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
@@ -27,63 +29,3 @@ and/or version bumps of transitive dependencies.
27
29
  #### 🚀 Features
28
30
 
29
31
  - add U64BIG ([06bcf05](https://github.com/thi-ng/umbrella/commit/06bcf05))
30
-
31
- ## [2.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hex@2.1.0) (2021-11-17)
32
-
33
- #### 🚀 Features
34
-
35
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
36
- Improving the overall build ergonomics
37
- - introduced a tools workspaces
38
- - imported it in all needed packages/examples
39
- - inclusive project root
40
-
41
- #### ♻️ Refactoring
42
-
43
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
44
- this commit reverts (partly) changes made in:
45
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
46
- overall purpose is better testament ergonomics:
47
- instead of having to pass NODE_OPTIONS with every invocation
48
- having a binary to handle this for us.
49
-
50
- ### [2.0.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/hex@2.0.1) (2021-10-13)
51
-
52
- #### ♻️ Refactoring
53
-
54
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
55
-
56
- # [2.0.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hex@2.0.0) (2021-10-12)
57
-
58
- #### 🛑 Breaking changes
59
-
60
- - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
61
- - BREAKING CHANGE: discontinue CommonJS & UMD versions
62
- - only ESM modules will be published from now on
63
- - CJS obsolete due to ESM support in recent versions of node:
64
- - i.e. launch NodeJS via:
65
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
66
- - in the node REPL use `await import(...)` instead of `require()`
67
- - UMD obsolete due to widespread browser support for ESM
68
- Also:
69
- - normalize/restructure/reorg all package.json files
70
- - cleanup all build scripts, remove obsolete
71
- - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
72
-
73
- #### ♻️ Refactoring
74
-
75
- - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
76
- - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
77
-
78
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hex@0.2.0) (2021-02-20)
79
-
80
- #### 🚀 Features
81
-
82
- - add uuid() ([c8417b4](https://github.com/thi-ng/umbrella/commit/c8417b4))
83
- - migrate/dedupe from [@thi.ng/random](https://github.com/thi-ng/umbrella/tree/main/packages/random) & [@thi.ng/strings](https://github.com/thi-ng/umbrella/tree/main/packages/strings)
84
-
85
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hex@0.1.0) (2020-11-24)
86
-
87
- #### 🚀 Features
88
-
89
- - import as new package ([1c2f331](https://github.com/thi-ng/umbrella/commit/1c2f331))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/hex",
3
- "version": "2.3.60",
3
+ "version": "2.3.62",
4
4
  "description": "Hex string formatters for 4/8/16/24/32/48/64bit words, hexdump formatting of binary data",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,10 +40,9 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.48.1",
44
43
  "esbuild": "^0.24.2",
45
44
  "typedoc": "^0.27.6",
46
- "typescript": "^5.7.2"
45
+ "typescript": "^5.7.3"
47
46
  },
48
47
  "keywords": [
49
48
  "base16",
@@ -75,5 +74,5 @@
75
74
  ],
76
75
  "year": 2020
77
76
  },
78
- "gitHead": "56c1d57a96565bbcc8c06c73779a619bba0db368\n"
77
+ "gitHead": "b92b48abda9941d608be8a2e1c83447e679a6f79\n"
79
78
  }