@lionweb/utilities 0.6.12-beta.3 → 0.6.12
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.
- package/CHANGELOG.md +14 -8
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.6.12
|
|
3
|
+
## 0.6.12
|
|
4
|
+
|
|
5
|
+
Dependencies: `@lionweb/core` version 0.6.12
|
|
4
6
|
|
|
5
|
-
* (Depend on `@lionweb/core` version 0.6.12.)
|
|
6
7
|
* Fix typo in code generated by `tsTypesForLanguage`.
|
|
7
8
|
|
|
8
9
|
|
|
9
10
|
## 0.6.11
|
|
10
11
|
|
|
12
|
+
Dependencies: `@lionweb/core` version 0.6.11
|
|
13
|
+
|
|
11
14
|
* Upgrade to `littoral-templates` version 0.3.0.
|
|
12
|
-
* (Depend on `@lionweb/core` version 0.6.11.)
|
|
13
15
|
* Move the reference util functions (`referenceValues`, `incomingReferences`, `referencesToOutOfScopeNodes`) and type (class `ReferenceValue`) from the `utilities` package to `core`.
|
|
14
16
|
Aliases (as re-exports) are left in its place to avoid code breaking.
|
|
15
17
|
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`).
|
|
@@ -20,35 +22,39 @@
|
|
|
20
22
|
|
|
21
23
|
### 0.6.10
|
|
22
24
|
|
|
23
|
-
|
|
25
|
+
Dependencies: `@lionweb/core` version 0.6.10
|
|
26
|
+
|
|
27
|
+
(no changes)
|
|
24
28
|
|
|
25
29
|
|
|
26
30
|
## 0.6.9
|
|
27
31
|
|
|
32
|
+
Dependencies: `@lionweb/core` version 0.6.9
|
|
33
|
+
|
|
28
34
|
* Make `withoutAnnotations` _not_ modify the original serialization chunk.
|
|
29
35
|
* (Use the `littoral-templates` package for textualization — of M2s, so far. This is a technical change, not a functional one, except for maybe some extra whitespace.)
|
|
30
36
|
* Add reference utilities that all return `ReferenceValue` objects:
|
|
31
37
|
* `referenceValues(<source node>, <extraction facade>)`: all references within the given scope.
|
|
32
38
|
* `incomingReferences(<target node(s)>, <search scope>, <extraction facade>)`: all (unique) references coming into the given target node(s) from the search scope.
|
|
33
39
|
* `referencesToOutOfScopeNodes(<scope>, <extraction facade>)` all reference targets that are not in the given scope.
|
|
34
|
-
* (Depend on `@lionweb/core` version 0.6.9.)
|
|
35
40
|
|
|
36
41
|
|
|
37
42
|
## 0.6.8
|
|
38
43
|
|
|
44
|
+
Dependencies: `@lionweb/core` version 0.6.8
|
|
45
|
+
|
|
39
46
|
* Add a `withoutAnnotations` function that removes all annotations, and all their descendants, from a serialization chunk.
|
|
40
47
|
* The `inferLanguagesFromSerializationChunk` function now detects whether a property is optional from `null` values in the serialization.
|
|
41
|
-
* (Depend on `@lionweb/core` version 0.6.8.)
|
|
42
48
|
|
|
43
49
|
|
|
44
50
|
## 0.6.7
|
|
45
51
|
|
|
46
|
-
|
|
52
|
+
Dependencies: `@lionweb/core` version 0.6.7
|
|
47
53
|
|
|
48
54
|
|
|
49
55
|
## 0.6.6
|
|
50
56
|
|
|
51
|
-
|
|
57
|
+
Dependencies: `@lionweb/core` version 0.6.6
|
|
52
58
|
|
|
53
59
|
|
|
54
60
|
## 0.6.5
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lionweb/utilities",
|
|
3
|
-
"version": "0.6.12
|
|
3
|
+
"version": "0.6.12",
|
|
4
4
|
"description": "LionWeb utilities",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"url": "https://github.com/LionWeb-io/lionweb-typescript/issues"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@lionweb/core": "0.6.12
|
|
18
|
+
"@lionweb/core": "0.6.12",
|
|
19
19
|
"littoral-templates": "0.3.0",
|
|
20
20
|
"nanoid": "5.0.9"
|
|
21
21
|
},
|