zx-bulk-release 3.1.5 → 3.1.6
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
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
## [3.1.6](https://github.com/semrel-extra/zx-bulk-release/compare/v3.1.5...v3.1.6) (2026-04-13)
|
|
2
|
+
|
|
3
|
+
### Fixes & improvements
|
|
4
|
+
* fix: pack uses channel list from context instead of re-evaluating ([0fecefa](https://github.com/semrel-extra/zx-bulk-release/commit/0fecefab3549da98e24d42a2e1b4c7bb1b24b4c9))
|
|
5
|
+
|
|
1
6
|
## [3.1.5](https://github.com/semrel-extra/zx-bulk-release/compare/v3.1.4...v3.1.5) (2026-04-13)
|
|
2
7
|
|
|
3
8
|
### Fixes & improvements
|
package/package.json
CHANGED
|
@@ -10,7 +10,8 @@ import {packTar, hashFile} from '../../tar.js'
|
|
|
10
10
|
export const pack = memoizeBy(async (pkg, ctx = pkg.ctx) => {
|
|
11
11
|
const {channels: channelNames = [], flags} = ctx
|
|
12
12
|
const snapshot = !!flags.snapshot
|
|
13
|
-
|
|
13
|
+
// In split pipeline, receive already decided which channels are active
|
|
14
|
+
const active = pkg.contextChannels || getActiveChannels(pkg, channelNames, snapshot)
|
|
14
15
|
|
|
15
16
|
await prepare(active, pkg)
|
|
16
17
|
await api.npm.npmPersist(pkg)
|
|
@@ -54,6 +54,7 @@ export const runPack = async ({cwd, env, flags}, ctx) => {
|
|
|
54
54
|
pkg.version = ctxPkg.version
|
|
55
55
|
pkg.tag = ctxPkg.tag
|
|
56
56
|
pkg.manifest.version = ctxPkg.version
|
|
57
|
+
pkg.contextChannels = ctxPkg.channels
|
|
57
58
|
if (!pkg.releaseType) pkg.releaseType = 'patch'
|
|
58
59
|
} else {
|
|
59
60
|
// Standalone: own analysis decides
|