ic-mops 2.5.0 → 2.5.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.
- package/CHANGELOG.md +15 -0
- package/api/network.ts +1 -1
- package/bun.lock +1082 -78
- package/bundle/cli.tgz +0 -0
- package/commands/add.ts +4 -1
- package/commands/build.ts +7 -12
- package/commands/install/install-dep.ts +5 -3
- package/commands/publish.ts +8 -8
- package/commands/remove.ts +5 -2
- package/commands/sources.ts +3 -2
- package/commands/sync.ts +13 -16
- package/commands/test/test.ts +3 -3
- package/commands/update.ts +13 -7
- package/commands/watch/error-checker.ts +3 -8
- package/commands/watch/warning-checker.ts +3 -8
- package/dist/api/network.js +1 -1
- package/dist/commands/add.js +4 -1
- package/dist/commands/build.js +5 -10
- package/dist/commands/install/install-dep.js +3 -3
- package/dist/commands/publish.js +8 -8
- package/dist/commands/remove.js +5 -2
- package/dist/commands/sources.js +3 -2
- package/dist/commands/sync.js +9 -14
- package/dist/commands/test/test.js +3 -3
- package/dist/commands/update.js +9 -4
- package/dist/commands/watch/error-checker.js +3 -8
- package/dist/commands/watch/warning-checker.js +3 -8
- package/dist/helpers/find-changelog-entry.js +1 -1
- package/dist/integrity.js +9 -3
- package/dist/mops.js +3 -0
- package/dist/package.json +3 -5
- package/dist/resolve-packages.js +4 -4
- package/dist/tests/build.test.js +1 -1
- package/dist/tests/helpers.js +8 -1
- package/dist/vessel.d.ts +1 -1
- package/dist/vessel.js +3 -2
- package/helpers/find-changelog-entry.ts +3 -1
- package/integrity.ts +12 -3
- package/mops.ts +7 -0
- package/package.json +3 -5
- package/resolve-packages.ts +6 -4
- package/tests/build.test.ts +1 -1
- package/tests/helpers.ts +9 -1
- package/vessel.ts +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,21 @@
|
|
|
2
2
|
|
|
3
3
|
## Next
|
|
4
4
|
|
|
5
|
+
## 2.5.1
|
|
6
|
+
- Fix `mops test` and `mops watch` breaking when dependency paths contain spaces
|
|
7
|
+
- Fix `mops sync` incorrectly reporting version-pinned dependencies as missing/unused
|
|
8
|
+
- Fix `mops update --lock ignore` not respecting the lock option during intermediate installs
|
|
9
|
+
- Fix `mops update` crashing with unhandled error when GitHub API is unavailable
|
|
10
|
+
- Fix `mops add` writing dependency to config even when GitHub download fails
|
|
11
|
+
- Fix GitHub dependency install crashing the entire process instead of reporting the error
|
|
12
|
+
- Fix version comparison treating short version strings (e.g. `1.0`) as equal to longer ones (e.g. `1.0.5`)
|
|
13
|
+
- Fix `mops remove` not cleaning up transitive dependencies of GitHub packages
|
|
14
|
+
- Fix corrupted `mops.lock` file causing an unhandled crash instead of a helpful error message
|
|
15
|
+
- Fix `mops sources` resolving package config from wrong directory in some contexts
|
|
16
|
+
- Harden lock file integrity check against package ID prefix collisions
|
|
17
|
+
- `mops build` now reports invalid canister names instead of silently ignoring them
|
|
18
|
+
- Document `baseDir`, `readme`, and `dfx` fields in `[package]` config
|
|
19
|
+
|
|
5
20
|
## 2.5.0
|
|
6
21
|
- Add support for `MOPS_REGISTRY_HOST` and `MOPS_REGISTRY_CANISTER_ID` environment variables for custom registry endpoints
|
|
7
22
|
- Fix `mops build` crashing with `__wbindgen_malloc` error in bundled CLI distribution
|
package/api/network.ts
CHANGED