@thi.ng/dynvar 0.3.88 → 0.3.90

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 -73
  2. package/package.json +5 -6
package/CHANGELOG.md CHANGED
@@ -1,82 +1,12 @@
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
10
12
  and/or version bumps of transitive dependencies.
11
-
12
- ## [0.3.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.3.0) (2021-11-17)
13
-
14
- #### 🚀 Features
15
-
16
- - Using workspaces for local tools ([bf7a404](https://github.com/thi-ng/umbrella/commit/bf7a404))
17
- Improving the overall build ergonomics
18
- - introduced a tools workspaces
19
- - imported it in all needed packages/examples
20
- - inclusive project root
21
-
22
- #### ♻️ Refactoring
23
-
24
- - testrunner to binary ([4ebbbb2](https://github.com/thi-ng/umbrella/commit/4ebbbb2))
25
- this commit reverts (partly) changes made in:
26
- ef346d7a8753590dc9094108a3d861a8dbd5dd2c
27
- overall purpose is better testament ergonomics:
28
- instead of having to pass NODE_OPTIONS with every invocation
29
- having a binary to handle this for us.
30
-
31
- ### [0.2.1](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.2.1) (2021-10-13)
32
-
33
- #### ♻️ Refactoring
34
-
35
- - update imports in all tests/pkgs ([effd591](https://github.com/thi-ng/umbrella/commit/effd591))
36
-
37
- ## [0.2.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.2.0) (2021-10-12)
38
-
39
- #### 🛑 Breaking changes
40
-
41
- - major update of ALL pkgs (export maps, ESM only) ([0d1d6ea](https://github.com/thi-ng/umbrella/commit/0d1d6ea))
42
- - BREAKING CHANGE: discontinue CommonJS & UMD versions
43
- - only ESM modules will be published from now on
44
- - CJS obsolete due to ESM support in recent versions of node:
45
- - i.e. launch NodeJS via:
46
- - `node --experimental-specifier-resolution=node --experimental-repl-await`
47
- - in the node REPL use `await import(...)` instead of `require()`
48
- - UMD obsolete due to widespread browser support for ESM
49
- Also:
50
- - normalize/restructure/reorg all package.json files
51
- - cleanup all build scripts, remove obsolete
52
- - switch from mocha to [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament) for all tests
53
-
54
- #### ♻️ Refactoring
55
-
56
- - update all tests in _all_ pkgs ([8b582bc](https://github.com/thi-ng/umbrella/commit/8b582bc))
57
- - update all to use [@thi.ng/testament](https://github.com/thi-ng/umbrella/tree/main/packages/testament)
58
- - update imports ([26b0298](https://github.com/thi-ng/umbrella/commit/26b0298))
59
- - update deps & imports in various pkgs ([e1cf29e](https://github.com/thi-ng/umbrella/commit/e1cf29e))
60
- - largely related to recent updates/restructuring of these packages:
61
- - api
62
- - defmulti
63
- - errors
64
- - logger
65
-
66
- ### [0.1.23](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.1.23) (2020-09-13)
67
-
68
- #### ♻️ Refactoring
69
-
70
- - update imports ([6066de1](https://github.com/thi-ng/umbrella/commit/6066de1))
71
-
72
- ### [0.1.2](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.1.2) (2020-02-25)
73
-
74
- #### ♻️ Refactoring
75
-
76
- - update imports ([db4dbad](https://github.com/thi-ng/umbrella/commit/db4dbad))
77
-
78
- ## [0.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/dynvar@0.1.0) (2020-01-24)
79
-
80
- #### 🚀 Features
81
-
82
- - re-import & refactor as own pkg (MBP2010) ([0fabb57](https://github.com/thi-ng/umbrella/commit/0fabb57))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/dynvar",
3
- "version": "0.3.88",
3
+ "version": "0.3.90",
4
4
  "description": "Dynamically scoped variable bindings",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -40,14 +40,13 @@
40
40
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
41
41
  },
42
42
  "dependencies": {
43
- "@thi.ng/api": "^8.11.16",
44
- "@thi.ng/errors": "^2.5.22"
43
+ "@thi.ng/api": "^8.11.18",
44
+ "@thi.ng/errors": "^2.5.24"
45
45
  },
46
46
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.48.1",
48
47
  "esbuild": "^0.24.2",
49
48
  "typedoc": "^0.27.6",
50
- "typescript": "^5.7.2"
49
+ "typescript": "^5.7.3"
51
50
  },
52
51
  "keywords": [
53
52
  "clojure",
@@ -81,5 +80,5 @@
81
80
  "year": 2016,
82
81
  "status": "alpha"
83
82
  },
84
- "gitHead": "56c1d57a96565bbcc8c06c73779a619bba0db368\n"
83
+ "gitHead": "b92b48abda9941d608be8a2e1c83447e679a6f79\n"
85
84
  }