@prmichaelsen/remember-mcp 3.16.0 → 3.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/publish.yml +55 -0
- package/CHANGELOG.md +15 -0
- package/dist/server-factory.js +486 -20
- package/dist/server.js +486 -20
- package/jest.config.js +1 -0
- package/package.json +2 -2
- package/src/core-services.ts +13 -2
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
name: Publish to npm
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [mainline]
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
publish:
|
|
9
|
+
runs-on: ubuntu-latest
|
|
10
|
+
permissions:
|
|
11
|
+
contents: read
|
|
12
|
+
steps:
|
|
13
|
+
- uses: actions/checkout@v4
|
|
14
|
+
with:
|
|
15
|
+
fetch-depth: 2
|
|
16
|
+
|
|
17
|
+
- uses: actions/setup-node@v4
|
|
18
|
+
with:
|
|
19
|
+
node-version: 20
|
|
20
|
+
registry-url: https://registry.npmjs.org
|
|
21
|
+
|
|
22
|
+
- name: Install dependencies
|
|
23
|
+
run: npm ci
|
|
24
|
+
|
|
25
|
+
- name: Build
|
|
26
|
+
run: npm run build
|
|
27
|
+
|
|
28
|
+
- name: Test
|
|
29
|
+
run: node --max-old-space-size=4096 ./node_modules/.bin/jest --runInBand
|
|
30
|
+
|
|
31
|
+
- name: Check if version changed
|
|
32
|
+
id: version
|
|
33
|
+
run: |
|
|
34
|
+
CURRENT=$(node -p "require('./package.json').version")
|
|
35
|
+
PREVIOUS=$(git show HEAD~1:package.json 2>/dev/null | node -p "JSON.parse(require('fs').readFileSync('/dev/stdin','utf8')).version" 2>/dev/null || echo "")
|
|
36
|
+
if [ "$CURRENT" != "$PREVIOUS" ]; then
|
|
37
|
+
echo "changed=true" >> "$GITHUB_OUTPUT"
|
|
38
|
+
echo "version=$CURRENT" >> "$GITHUB_OUTPUT"
|
|
39
|
+
else
|
|
40
|
+
echo "changed=false" >> "$GITHUB_OUTPUT"
|
|
41
|
+
fi
|
|
42
|
+
|
|
43
|
+
- name: Publish
|
|
44
|
+
if: steps.version.outputs.changed == 'true'
|
|
45
|
+
run: npm publish --access public
|
|
46
|
+
env:
|
|
47
|
+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
48
|
+
|
|
49
|
+
- name: Summary
|
|
50
|
+
if: steps.version.outputs.changed == 'true'
|
|
51
|
+
run: echo "Published @prmichaelsen/remember-mcp@${{ steps.version.outputs.version }} to npm"
|
|
52
|
+
|
|
53
|
+
- name: Skip
|
|
54
|
+
if: steps.version.outputs.changed != 'true'
|
|
55
|
+
run: echo "Version unchanged, skipping publish"
|
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [3.17.0] - 2026-03-09
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Webhook event bus integration — `SpaceService` now emits `memory.published_to_group`, `memory.published_to_space`, `comment.published_to_group`, and `comment.published_to_space` events via `BatchedWebhookService`
|
|
13
|
+
- `REMEMBER_WEBHOOK_URL` and `REMEMBER_WEBHOOK_SECRET` env vars configure outbound webhook delivery
|
|
14
|
+
|
|
15
|
+
### Changed
|
|
16
|
+
|
|
17
|
+
- Bump `@prmichaelsen/remember-core` to 0.54.0 (fan-out webhooks, comment events, publish dedupe)
|
|
18
|
+
|
|
19
|
+
### Fixed
|
|
20
|
+
|
|
21
|
+
- CI OOM crash in `server-factory.spec.ts` — add `maxWorkers: '50%'` to jest config
|
|
22
|
+
|
|
8
23
|
## [3.16.0] - 2026-03-08
|
|
9
24
|
|
|
10
25
|
### Added
|