agentic-rss-parser 1.0.2 → 1.0.5

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.0.4
4
+
5
+ - Bugs fixes and enhancements.
6
+
7
+ ## 1.0.5
8
+
9
+ - Bugs fixes and enhancements.
10
+
11
+ ## 1.0.3
12
+
13
+ - Bugs fixes and enhancements.
14
+
3
15
  ## 1.0.2
4
16
 
5
17
  ### Changed
package/README.md CHANGED
@@ -22,6 +22,14 @@ Why Node.js 22.5.0 or newer:
22
22
  - `node:sqlite` was added in Node.js 22.5.0
23
23
  - Node.js 20 does not support the current codebase
24
24
 
25
+ The CI workflow validates the package on Node.js 22.x and 24.x.
26
+
27
+ Release and validation workflow:
28
+
29
+ - CI runs the supported Node.js matrix and validates install, tests, audit, and packaging
30
+ - `npm run release:npm` and `pnpm run release:pnpm` are the documented release entry points
31
+ - the release checks are aligned with [`SUPPORT.md`](./SUPPORT.md) and [`PUBLISHING.md`](./PUBLISHING.md)
32
+
25
33
  ## Design Goals
26
34
 
27
35
  - compatible migration path for `rss-parser`-style code
package/SUPPORT.md CHANGED
@@ -17,6 +17,8 @@ Recommended CI matrix:
17
17
  - Node.js 22.x
18
18
  - Node.js 24.x
19
19
 
20
+ These are the versions validated by the repository CI workflow.
21
+
20
22
  Recommended local setup:
21
23
 
22
24
  - use `npm install`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
- {
2
- "name": "agentic-rss-parser",
3
- "version": "1.0.2",
1
+ {
2
+ "name": "agentic-rss-parser",
3
+ "version": "1.0.5",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=22.5.0"
@@ -22,7 +22,7 @@
22
22
  "access": "public"
23
23
  },
24
24
  "main": "./src/index.js",
25
- "types": "./src/index.d.ts",
25
+ "types": "./src/index.d.ts",
26
26
  "repository": {
27
27
  "type": "git",
28
28
  "url": "git+https://github.com/bluecarbons/agentic-rss-parser.git"
@@ -32,17 +32,26 @@
32
32
  "url": "https://github.com/bluecarbons/agentic-rss-parser/issues"
33
33
  },
34
34
  "bin": {
35
- "agentic-rss-parser": "./agentic-rss-parser",
35
+ "agentic-rss": "./agentic-rss-parser",
36
36
  "agentic-rss-mcp": "./agentic-rss-mcp"
37
37
  },
38
- "exports": {
39
- ".": {
40
- "types": "./src/index.d.ts",
41
- "default": "./src/index.js"
42
- },
43
- "./cli": "./src/cli.js",
44
- "./mcp": "./src/mcp/server.js"
38
+ "exports": {
39
+ ".": {
40
+ "types": "./src/index.d.ts",
41
+ "default": "./src/index.js"
42
+ },
43
+ "./cli": "./src/cli.js",
44
+ "./mcp": "./src/mcp/server.js"
45
+ },
46
+ "scripts": {
47
+ "start": "node ./src/cli.js",
48
+ "mcp": "node ./src/mcp/server.js",
49
+ "test": "node --test",
50
+ "lint": "node --check ./src/cli.js",
51
+ "release:npm": "npm publish --access public",
52
+ "release:pnpm": "corepack pnpm publish --access public --no-git-checks"
45
53
  },
54
+ "packageManager": "pnpm@9.15.4",
46
55
  "files": [
47
56
  "agentic-rss-parser",
48
57
  "agentic-rss-mcp",
@@ -56,18 +65,12 @@
56
65
  "LICENSE",
57
66
  "CONTRIBUTING.md"
58
67
  ],
59
- "dependencies": {
60
- "@ai-sdk/anthropic": "3.0.85",
61
- "@ai-sdk/openai": "3.0.73",
62
- "@modelcontextprotocol/sdk": "^1.29.0",
63
- "ai": "6.0.208",
64
- "fast-xml-parser": "5.9.3",
65
- "zod": "4.4.3"
66
- },
67
- "scripts": {
68
- "start": "node ./src/cli.js",
69
- "mcp": "node ./src/mcp/server.js",
70
- "test": "node --test",
71
- "lint": "node --check ./src/cli.js"
72
- }
73
- }
68
+ "dependencies": {
69
+ "@ai-sdk/anthropic": "3.0.85",
70
+ "@ai-sdk/openai": "3.0.73",
71
+ "@modelcontextprotocol/sdk": "^1.29.0",
72
+ "ai": "6.0.208",
73
+ "fast-xml-parser": "5.9.3",
74
+ "zod": "4.4.3"
75
+ }
76
+ }