Skip to content
Merged
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
33 changes: 18 additions & 15 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,26 +1,29 @@
name: Publish package to NPM
name: Publish to NPM

on:
release:
types: [published]
workflow_dispatch:
#release:
# types: [published]

permissions:
id-token: write
contents: read

jobs:
build:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write

steps:
- uses: actions/checkout@v4

# Setup .npmrc file to publish to NPM
- uses: actions/setup-node@v4
- name: Use Node.js 24.x
uses: actions/setup-node@v4
with:
node-version: "20.x"
registry-url: "https://registry.npmjs.org"
node-version: 24.x
registry-url: https://registry.npmjs.org

- run: npm test
- name: Install dependencies
run: npm ci

- run: npm publish --tag latest --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Publish
run: npm publish --provenance --access public
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
node-version: [20.x, 22.x, 24.x]
node-version: [22.x, 24.x]
adapter: ["Redis"]
fail-fast: false
steps:
Expand Down
17 changes: 17 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
<a name="v0.1.3"></a>

# v0.1.3 (2026-03-28)

## Breaking changes
- **Minimum Node.js version changed from 20 to 22.**

## Changes
- Updated Moleculer peer dependency to include released `^0.15.0`.
- Updated `moleculer-repl` to `^0.8.0` and `moleculer-web` to `^0.11.0`.
- Upgraded ESLint to v10 and TypeScript to v6.
- Removed unused `eslint-plugin-promise` and `eslint-plugin-node`.
- Updated all other dependencies to their latest versions.
- Fixed TypeScript 6 build configuration (`rootDir`, `ignoreDeprecations`).
- CI: Dropped Node.js 20 from test matrix.

---
<a name="v0.1.2"></a>

# v0.1.2 (2025-08-09)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,6 @@ await ctx.wf.sleep("5m"); // Wait for 5 minutes
The project is available under the [MIT license](https://tldrlegal.com/license/mit-license).

## Contact
Copyright (c) 2025 MoleculerJS
Copyright (c) 2025-2026 MoleculerJS

[![@MoleculerJS](https://img.shields.io/badge/github-moleculerjs-green.svg)](https://github.com/moleculerjs) [![@MoleculerJS](https://img.shields.io/badge/twitter-MoleculerJS-blue.svg)](https://twitter.com/MoleculerJS)
Loading
Loading