From 6dc3acf07383addc2117845165a9f73bd7928478 Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Fri, 21 Nov 2025 09:04:13 +0100 Subject: [PATCH 1/2] chore(deps): build against Asciidoctor 2.0.26 --- .github/workflows/build.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8c5522493..0020cdaa8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,12 +26,12 @@ jobs: strategy: matrix: os: [ubuntu-latest] - asciidoctor-core-version: [v2.0.23, main] + asciidoctor-core-version: [v2.0.26, main] experimental: [false] include: - os: macos-latest experimental: true - asciidoctor-core-version: v2.0.23 + asciidoctor-core-version: v2.0.26 runs-on: ${{ matrix.os }} continue-on-error: ${{ matrix.experimental }} steps: @@ -61,7 +61,7 @@ jobs: runs-on: windows-latest strategy: matrix: - asciidoctor-core-version: [v2.0.23, main] + asciidoctor-core-version: [v2.0.26, main] steps: - uses: actions/checkout@v4 - name: Set up Node diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b5800f12..4869e6e8a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,7 +24,7 @@ jobs: npm ci --prefix packages/core - name: Lint, build and test env: - ASCIIDOCTOR_CORE_VERSION: v2.0.23 + ASCIIDOCTOR_CORE_VERSION: v2.0.26 run: | npm run lint npm run test @@ -51,7 +51,7 @@ jobs: # package and publish - name: Package env: - ASCIIDOCTOR_CORE_VERSION: v2.0.23 + ASCIIDOCTOR_CORE_VERSION: v2.0.26 run: ./scripts/package.sh - name: Publish env: From 20f6e3061f16664158152ecb3ebda2ae7b087b1f Mon Sep 17 00:00:00 2001 From: Guillaume Grossetie Date: Fri, 21 Nov 2025 09:07:11 +0100 Subject: [PATCH 2/2] chore: update changelog --- CHANGELOG.adoc | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.adoc b/CHANGELOG.adoc index 5dc9dfb99..94f6dc395 100644 --- a/CHANGELOG.adoc +++ b/CHANGELOG.adoc @@ -8,6 +8,16 @@ For a detailed view of what has changed, refer to the {uri-repo}/commits/main[co == Unreleased +Improvements:: + +* Upgrade to https://github.com/asciidoctor/asciidoctor/releases/tag/v2.0.26[Asciidoctor 2.0.26] + +Infrastructure:: + +* Add backtick_javascript comments for Opal 2 +* Replace eslint by prettier +* Replace mocha/chai by node test runner +* Implement `Array#pack m0` (alias for `Base64.encode`) == v3.0.4 (2024-02-12) @@ -24,7 +34,7 @@ Infrastructure:: Bug Fixes:: * Fix types exports in `package.json` - thanks @sinedied -* Addd `context` and `node_name` accessor in the type definition - thanks @RayOffiah +* Add `context` and `node_name` accessor in the type definition - thanks @RayOffiah Infrastructure::