Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .chachalog/.version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.1.0
6 changes: 0 additions & 6 deletions .chachalog/4zm5Wmui.md

This file was deleted.

8 changes: 0 additions & 8 deletions .chachalog/B5LNULyZ.md

This file was deleted.

6 changes: 0 additions & 6 deletions .chachalog/BcOA3_X-.md

This file was deleted.

10 changes: 0 additions & 10 deletions .chachalog/Hv3Qm8Lp.md

This file was deleted.

6 changes: 0 additions & 6 deletions .chachalog/KYA_2pVz.md

This file was deleted.

5 changes: 0 additions & 5 deletions .chachalog/RFsycdD5.md

This file was deleted.

23 changes: 23 additions & 0 deletions .chachalog/config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
/// @ts-check
/// <reference types="@chachalog/types" />
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;
},
},
}));
6 changes: 0 additions & 6 deletions .chachalog/oFKFbxW6.md

This file was deleted.

27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 `<Activity>` component and `useEffectEvent` hook, added in React 19.2.0. (#668)

* Bump devalue from 5.6.4 to 5.8.1 (#664)