diff --git a/.chachalog/.version b/.chachalog/.version new file mode 100644 index 00000000..6c6aa7cb --- /dev/null +++ b/.chachalog/.version @@ -0,0 +1 @@ +0.1.0 \ No newline at end of file diff --git a/.chachalog/4zm5Wmui.md b/.chachalog/4zm5Wmui.md deleted file mode 100644 index ae8db313..00000000 --- a/.chachalog/4zm5Wmui.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -Updated `devalue` to [v5.6.4](https://github.com/sveltejs/devalue/releases/tag/v5.6.4). (#658) diff --git a/.chachalog/B5LNULyZ.md b/.chachalog/B5LNULyZ.md deleted file mode 100644 index fb0600a8..00000000 --- a/.chachalog/B5LNULyZ.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -We have migrated our build pipelines and test suites to Vite 8 and Rolldown to ensure JS Modules work with the latest versions of this stack. (#668) - -This is not a breaking change, we support all Vite versions from 6 to 8. diff --git a/.chachalog/BcOA3_X-.md b/.chachalog/BcOA3_X-.md deleted file mode 100644 index fb95c46f..00000000 --- a/.chachalog/BcOA3_X-.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -Make sure graphql subrequests are handled correctly (#681) diff --git a/.chachalog/Hv3Qm8Lp.md b/.chachalog/Hv3Qm8Lp.md deleted file mode 100644 index 1d3a1427..00000000 --- a/.chachalog/Hv3Qm8Lp.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -`npm init @jahia/module` can now scaffold a project without a single prompt, which makes it usable from scripts, CI pipelines and coding agents: (#715) - -```bash -npm init @jahia/module@latest my-module -- --template hello-world --yes -``` diff --git a/.chachalog/KYA_2pVz.md b/.chachalog/KYA_2pVz.md deleted file mode 100644 index c7c4b8c1..00000000 --- a/.chachalog/KYA_2pVz.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -Exposed React's new `` component and `useEffectEvent` hook, added in React 19.2.0. (#668) diff --git a/.chachalog/RFsycdD5.md b/.chachalog/RFsycdD5.md deleted file mode 100644 index 8c59fc98..00000000 --- a/.chachalog/RFsycdD5.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -javascript-modules: minor ---- - -Fixed absolute areas with readOnly="children" so they can be edited on their owning page. (#679) \ No newline at end of file diff --git a/.chachalog/config.mjs b/.chachalog/config.mjs new file mode 100644 index 00000000..b9aa9bb4 --- /dev/null +++ b/.chachalog/config.mjs @@ -0,0 +1,23 @@ +/// @ts-check +/// +import fs from "node:fs"; +import { defineConfig } from "chachalog"; +import github from "chachalog/github"; + +export default defineConfig(() => ({ + allowedBumps: ["patch", "minor", "major"], + platform: github({ + base: "main" + }), + managers: { + packages: { + name: "javascript-modules", + path: process.cwd(), + version: fs.readFileSync(".chachalog/.version", "utf-8").trim(), + }, + setVersion(_pkg, version) { + fs.writeFileSync(".chachalog/.version", version); + return true; + }, + }, +})); diff --git a/.chachalog/oFKFbxW6.md b/.chachalog/oFKFbxW6.md deleted file mode 100644 index 13b967ad..00000000 --- a/.chachalog/oFKFbxW6.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -# Allowed version bumps: patch, minor, major -javascript-modules: patch ---- - -Bump devalue from 5.6.4 to 5.8.1 (#664) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..0295221b --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,27 @@ +# javascript-modules Changelog + +## 0.1.0 + +### New Features + +* Fixed absolute areas with readOnly="children" so they can be edited on their owning page. (#679) + +### Bug Fixes + +* Updated `devalue` to [v5.6.4](https://github.com/sveltejs/devalue/releases/tag/v5.6.4). (#658) + +* We have migrated our build pipelines and test suites to Vite 8 and Rolldown to ensure JS Modules work with the latest versions of this stack. (#668) + + This is not a breaking change, we support all Vite versions from 6 to 8. + +* Make sure graphql subrequests are handled correctly (#681) + +* `npm init @jahia/module` can now scaffold a project without a single prompt, which makes it usable from scripts, CI pipelines and coding agents: (#715) + + ```bash + npm init @jahia/module@latest my-module -- --template hello-world --yes + ``` + +* Exposed React's new `` component and `useEffectEvent` hook, added in React 19.2.0. (#668) + +* Bump devalue from 5.6.4 to 5.8.1 (#664)