@lionweb/utilities 0.6.11-beta.0 → 0.6.11-beta.1

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 +9 -2
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,12 +1,19 @@
1
1
  # Changelog
2
2
 
3
- ## 0.6.10 - not officially released yet
3
+ ## 0.6.11 - not officially released yet
4
4
 
5
5
  * Upgrade to `littoral-templates` version 0.3.0.
6
- * (Depend on `@lionweb/core` version 0.6.10.)
6
+ * (Depend on `@lionweb/core` version 0.6.11.)
7
7
  * Move the reference util functions (`referenceValues`, `incomingReferences`, `referencesToOutOfScopeNodes`) and type (class `ReferenceValue`) from the `utilities` package to `core`.
8
8
  Aliases (as re-exports) are left in its place to avoid code breaking.
9
9
  The move is necessary because not all clients of `@lionweb/utilities` can install the Node.js-specific dependencies of the dependencies that package (such as `crypto`).
10
+ * Upgraded version of `nanoid` dependency to a recent one, which doesn't have a reported security vulnerability.
11
+ * Separate CHANGELOG from README.
12
+
13
+
14
+ ### 0.6.10
15
+
16
+ * (Depend on `@lionweb/core` version 0.6.10.)
10
17
 
11
18
 
12
19
  ## 0.6.9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lionweb/utilities",
3
- "version": "0.6.11-beta.0",
3
+ "version": "0.6.11-beta.1",
4
4
  "description": "LionWeb utilities",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -15,9 +15,9 @@
15
15
  "url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
16
16
  },
17
17
  "dependencies": {
18
- "@lionweb/core": "0.6.11-beta.0",
18
+ "@lionweb/core": "0.6.11-beta.1",
19
19
  "littoral-templates": "0.3.0",
20
- "nanoid": "4.0.2"
20
+ "nanoid": "5.0.9"
21
21
  },
22
22
  "scripts": {
23
23
  "clean": "rm -rf dist/ lionweb-utilities-*.tgz",