@neocompose/cli 0.5.3 → 0.6.0
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 +20 -0
- package/dist/neo.mjs +875 -176
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.6.0] - 2026-07-19
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
|
|
7
|
+
- Member access modifiers. Class and interface members now carry a required
|
|
8
|
+
`accessModifier` (`public` / `protected` / `private`); the source lowering
|
|
9
|
+
and emitter read and write the keyword, defaulting to `private` on classes
|
|
10
|
+
and `public` on interfaces when omitted, mirroring C#. The schema-commit
|
|
11
|
+
path enforces the same access rules as the web app.
|
|
12
|
+
|
|
13
|
+
## [0.5.4] - 2026-07-19
|
|
14
|
+
|
|
15
|
+
### Fixed
|
|
16
|
+
|
|
17
|
+
- Stop reporting phantom member updates when a stored type info spells an
|
|
18
|
+
empty generic-binding map as `typeArguments: {}` or `null` instead of an
|
|
19
|
+
absent key. Convex round trips produce these spellings interchangeably;
|
|
20
|
+
nested type-info binding maps now normalize to absent at every depth
|
|
21
|
+
before semantic comparison.
|
|
22
|
+
|
|
3
23
|
## [0.5.3] - 2026-07-19
|
|
4
24
|
|
|
5
25
|
### Fixed
|