slackblock 1.0.0 → 1.0.1
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 +7 -0
- package/package.json +22 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 1.0.1
|
|
4
|
+
- Upgrade `@slack/web-api` to 7.14.1 (resolves CVE-2026-25639 via axios upgrade)
|
|
5
|
+
- Bump `rollup` to 4.59.0 (resolves CVE-2026-27606)
|
|
6
|
+
- Bump `minimatch` to 10.2.3+ (resolves CVE-2026-27904, CVE-2026-27903, CVE-2026-26996)
|
|
7
|
+
- Resolve CVE-2025-69873 via ajv 6.14.0 (already latest in range)
|
|
8
|
+
- Resolve CVE-2026-25547 via minimatch 10.2.3+ (replaces @isaacs/brace-expansion)
|
|
9
|
+
|
|
3
10
|
### 1.0.0
|
|
4
11
|
- Modernize tooling (Node 24, pnpm, tsup, Vitest, XO, Husky + lint-staged)
|
|
5
12
|
- Stabilize parser/transformer routing and align output types to serialized JSON
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slackblock",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "JSX-based Slack message renderer",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=24"
|
|
7
7
|
},
|
|
8
|
+
"packageManager": "pnpm@9.12.0",
|
|
8
9
|
"main": "dist/index.cjs",
|
|
9
10
|
"module": "dist/index.mjs",
|
|
10
11
|
"types": "dist/index.d.ts",
|
|
@@ -38,6 +39,17 @@
|
|
|
38
39
|
"LICENSE",
|
|
39
40
|
"CHANGELOG.md"
|
|
40
41
|
],
|
|
42
|
+
"scripts": {
|
|
43
|
+
"prepare": "husky install",
|
|
44
|
+
"test": "pnpm run test:tsc && pnpm run test:lint && pnpm run test:unit",
|
|
45
|
+
"test:tsc": "tsc -p ./src -p ./test --noEmit",
|
|
46
|
+
"test:lint": "xo",
|
|
47
|
+
"test:unit": "vitest run",
|
|
48
|
+
"prebuild": "pnpm run clean",
|
|
49
|
+
"clean": "rimraf ./dist",
|
|
50
|
+
"build": "tsup",
|
|
51
|
+
"prepublish": "pnpm run test && pnpm run build"
|
|
52
|
+
},
|
|
41
53
|
"repository": {
|
|
42
54
|
"type": "git",
|
|
43
55
|
"url": "git+https://github.com/kolyaventuri/block.git"
|
|
@@ -79,21 +91,18 @@
|
|
|
79
91
|
},
|
|
80
92
|
"dependencies": {
|
|
81
93
|
"@slack/types": "^2.19.0",
|
|
82
|
-
"@slack/web-api": "^7.
|
|
94
|
+
"@slack/web-api": "^7.14.1"
|
|
95
|
+
},
|
|
96
|
+
"pnpm": {
|
|
97
|
+
"overrides": {
|
|
98
|
+
"@eslint/plugin-kit": "^0.3.4",
|
|
99
|
+
"minimatch": "^10.2.3",
|
|
100
|
+
"rollup": "^4.59.0"
|
|
101
|
+
}
|
|
83
102
|
},
|
|
84
103
|
"lint-staged": {
|
|
85
104
|
"*.{ts,tsx}": [
|
|
86
105
|
"xo"
|
|
87
106
|
]
|
|
88
|
-
},
|
|
89
|
-
"scripts": {
|
|
90
|
-
"test": "pnpm run test:tsc && pnpm run test:lint && pnpm run test:unit",
|
|
91
|
-
"test:tsc": "tsc -p ./src -p ./test --noEmit",
|
|
92
|
-
"test:lint": "xo",
|
|
93
|
-
"test:unit": "vitest run",
|
|
94
|
-
"prebuild": "pnpm run clean",
|
|
95
|
-
"clean": "rimraf ./dist",
|
|
96
|
-
"build": "tsup",
|
|
97
|
-
"prepublish": "pnpm run test && pnpm run build"
|
|
98
107
|
}
|
|
99
|
-
}
|
|
108
|
+
}
|