@skaile/workspace-bridge-vue 0.16.0 → 0.17.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 +29 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.17.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#39](https://github.com/skaile-ai/workspaces/pull/39) [`31b3037`](https://github.com/skaile-ai/workspaces/commit/31b30374e17043d099a30aac8e3ac08fca6c94e0) Thanks [@peteralbert](https://github.com/peteralbert)! - fix(release): rewrite `workspace:*` ranges before `changeset publish`
|
|
8
|
+
|
|
9
|
+
`@changesets/cli` leaves `workspace:*` in `package.json` and relies on the
|
|
10
|
+
underlying publisher to rewrite it. `npm publish` (which `changeset publish`
|
|
11
|
+
shells out to) does not, so `workspace:*` was leaking into the tarballs of
|
|
12
|
+
`skaile-cli`, `@skaile/workspace-bridge-react`, and
|
|
13
|
+
`@skaile/workspace-bridge-vue` published at `0.16.0`. Installing them failed
|
|
14
|
+
with `EUNSUPPORTEDPROTOCOL Unsupported URL Type "workspace:"`.
|
|
15
|
+
|
|
16
|
+
The new `scripts/release.mjs` wrapper resolves each `workspace:` range to a
|
|
17
|
+
concrete semver range before invoking `changeset publish`, then restores the
|
|
18
|
+
originals afterward. This patch republishes the three affected packages with
|
|
19
|
+
the correct deps; `@skaile/workspaces` itself was unaffected but bumps in
|
|
20
|
+
lockstep with the fixed group.
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [[`31b3037`](https://github.com/skaile-ai/workspaces/commit/31b30374e17043d099a30aac8e3ac08fca6c94e0), [`a820dfa`](https://github.com/skaile-ai/workspaces/commit/a820dfaf15fda0b38315f30bf24f34d1e81832b2)]:
|
|
23
|
+
- @skaile/workspaces@0.17.1
|
|
24
|
+
|
|
25
|
+
## 0.17.0
|
|
26
|
+
|
|
27
|
+
### Patch Changes
|
|
28
|
+
|
|
29
|
+
- Updated dependencies [[`ff8f026`](https://github.com/skaile-ai/workspaces/commit/ff8f0262b142420bb2601225e99b059c8ab2edaf)]:
|
|
30
|
+
- @skaile/workspaces@0.17.0
|
|
31
|
+
|
|
3
32
|
## 0.16.0
|
|
4
33
|
|
|
5
34
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skaile/workspace-bridge-vue",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.17.1",
|
|
4
4
|
"description": "Vue 3.3+ bindings for @skaile/workspaces (useAgentStore, useResourceClient, useSubscribableStore)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"node": ">=20"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@skaile/workspaces": "
|
|
25
|
+
"@skaile/workspaces": "^0.17.1"
|
|
26
26
|
},
|
|
27
27
|
"peerDependencies": {
|
|
28
28
|
"vue": ">=3.3"
|