Releases: repobuddy/semantic-release-bamboo
Release list
v1.0.0
Major Changes
-
b4ed720: Drop CommonJS: the package is now ESM-only.
semantic-releasehas loaded plugins with dynamicimport()since v20
(lib/plugins/utils.js),
so an ESM-only plugin works on every semantic-release version that is still
supported. The previous CJS build was in fact already unusable: both runtime
dependencies (@semantic-release/errorv4 andenv-civ11) are ESM-only, so a
require()of the olddist-es5/index.jsfailed regardless.What changed
"type": "module", andmain/typingsare replaced by anexportsmap with
norequirecondition.- The build output moved from
dist-es5/todist/, and the compile target
moved fromes2015toes2023withmodule/moduleResolutionset to
nodenext. tsconfig.es5.jsonwas renamed totsconfig.build.json.
Migration
- Consumers on
semantic-releasev20 or later need no change; keep listing
semantic-release-bambooinverifyConditionsas before. - Consumers on
semantic-releasev19 or earlier must upgradesemantic-release.
v19 resolves plugins withrequire()and cannot load this package. - Anyone importing the module directly must use
import, notrequire, and must
drop any deep import ofsemantic-release-bamboo/dist-es5/...; only the package
root and./package.jsonare exported.
Patch Changes
-
2b610aa: Declare a supported Node range:
^20.19.0 || ^22.13.0 || >=24.Every version in that range has unflagged
require(esm), so a CommonJS consumer's
require()of this now-ESM-only package resolves rather than throwingERR_REQUIRE_ESM.
Node 18 (EOL April 2025) and Node 20.0–20.18 are excluded becauserequire()hard-fails there.
v0.1.4
Patch Changes
-
a077078: Upgrade
@changesets/clito v3 and update.changeset/config.jsonto the v4 config schema.The release workflow uses
changesets/action@v2.1.0, which bundles the v3-era changesets
libraries and does not work against@changesets/cliv2. This realigns the CLI with the action.
v0.1.3
Patch Changes
-
ae087f2: Point
repository,homepageandbugsatcyberuni/semantic-release-bamboo.repositoryis read when generating provenance attestations, so it has to be correct at
publish time — not merely correct in the repo.The emitted output also moves from ES5 to ES2015. That is not a choice: TypeScript 7
removedtarget: ES5outright, and this repo was already pinned to TypeScript 7. The
dist-es5path is kept as-is so no consumer's deep import breaks.