@adobe/helix-markdown-support 7.1.14 → 7.1.15

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.
@@ -11,10 +11,10 @@ jobs:
11
11
  runs-on: ubuntu-latest
12
12
  steps:
13
13
  - uses: actions/checkout@v5
14
- - name: Use Node.js 20.x
15
- uses: actions/setup-node@v5
14
+ - name: Use Node.js 24.x
15
+ uses: actions/setup-node@v6
16
16
  with:
17
- node-version: '22.x'
17
+ node-version: '24.x'
18
18
  - run: npm ci
19
19
  - run: npm run lint
20
20
  - run: npm test
@@ -32,12 +32,17 @@ jobs:
32
32
  runs-on: ubuntu-latest
33
33
  needs: test
34
34
  if: github.ref == 'refs/heads/main'
35
+ permissions:
36
+ contents: write
37
+ issues: write
38
+ pull-requests: write
39
+ id-token: write # needed for npm trusted publishers with OIDC
35
40
  steps:
36
41
  - uses: actions/checkout@v5
37
- - name: Use Node.js 20.x
38
- uses: actions/setup-node@v5
42
+ - name: Use Node.js 24.x
43
+ uses: actions/setup-node@v6
39
44
  with:
40
- node-version: '22.x'
45
+ node-version: '24.x'
41
46
  - run: npm ci
42
47
  - run: npm run semantic-release
43
48
  env:
package/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ ## [7.1.15](https://github.com/adobe/helix-markdown-support/compare/v7.1.14...v7.1.15) (2025-11-20)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * trigger release ([944704a](https://github.com/adobe/helix-markdown-support/commit/944704adfb608d92352266e627f898fdd42e8766))
7
+
1
8
  ## [7.1.14](https://github.com/adobe/helix-markdown-support/compare/v7.1.13...v7.1.14) (2025-10-15)
2
9
 
3
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-markdown-support",
3
- "version": "7.1.14",
3
+ "version": "7.1.15",
4
4
  "description": "Helix Markdown Support",
5
5
  "type": "module",
6
6
  "scripts": {
@@ -12,7 +12,7 @@
12
12
  },
13
13
  "repository": {
14
14
  "type": "git",
15
- "url": "https://github.com/adobe/helix-markdown-support"
15
+ "url": "https://github.com/adobe/helix-markdown-support.git"
16
16
  },
17
17
  "author": "",
18
18
  "license": "Apache-2.0",
@@ -59,18 +59,18 @@
59
59
  "node": ">=14"
60
60
  },
61
61
  "devDependencies": {
62
- "@adobe/eslint-config-helix": "3.0.11",
62
+ "@adobe/eslint-config-helix": "3.0.14",
63
63
  "@adobe/remark-gridtables": "3.0.15",
64
- "@eslint/config-helpers": "0.4.0",
64
+ "@eslint/config-helpers": "0.4.2",
65
65
  "@semantic-release/changelog": "6.0.3",
66
66
  "@semantic-release/git": "10.0.1",
67
67
  "c8": "10.1.3",
68
68
  "eslint": "9.4.0",
69
69
  "husky": "9.1.7",
70
70
  "junit-report-builder": "5.1.1",
71
- "lint-staged": "16.2.3",
71
+ "lint-staged": "16.2.6",
72
72
  "mdast-builder": "1.1.1",
73
- "mocha": "11.7.2",
73
+ "mocha": "11.7.4",
74
74
  "mocha-multi-reporters": "1.5.1",
75
75
  "rehype-format": "5.0.1",
76
76
  "rehype-stringify": "10.0.1",
@@ -78,7 +78,7 @@
78
78
  "remark-parse": "11.0.0",
79
79
  "remark-rehype": "11.1.2",
80
80
  "remark-stringify": "11.0.0",
81
- "semantic-release": "24.2.9",
81
+ "semantic-release": "25.0.1",
82
82
  "unified": "11.0.5",
83
83
  "unist-util-inspect": "8.1.0"
84
84
  },
@@ -27,8 +27,8 @@ function isSnug(type) {
27
27
 
28
28
  const FLOW_SORT_ORDER = [
29
29
  'delete',
30
- 'strong',
31
30
  'emphasis',
31
+ 'strong',
32
32
  'link',
33
33
  'underline',
34
34
  'subscript',