Skip to content

Commit 02868b9

Browse files
authored
Merge branch 'main' into update-semantic-release-node24
2 parents 0ddb2ea + c5fba05 commit 02868b9

File tree

7 files changed

+214
-65
lines changed

7 files changed

+214
-65
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## [1.2.6](https://github.com/adobe/helix-md2jcr/compare/v1.2.5...v1.2.6) (2025-12-02)
2+
3+
4+
### Bug Fixes
5+
6+
* **deps:** update adobe fixes ([#176](https://github.com/adobe/helix-md2jcr/issues/176)) ([248f02c](https://github.com/adobe/helix-md2jcr/commit/248f02cc0e73632bab8d724774956b02ced54ca9))
7+
8+
## [1.2.5](https://github.com/adobe/helix-md2jcr/compare/v1.2.4...v1.2.5) (2025-11-20)
9+
10+
11+
### Bug Fixes
12+
13+
* **deps:** update dependency @adobe/helix-markdown-support to v7.1.15 ([#173](https://github.com/adobe/helix-md2jcr/issues/173)) ([c0936fa](https://github.com/adobe/helix-md2jcr/commit/c0936fada30cdea2aecb2a986b83a0b40f30cd18))
14+
115
## [1.2.4](https://github.com/adobe/helix-md2jcr/compare/v1.2.3...v1.2.4) (2025-10-15)
216

317

package-lock.json

Lines changed: 59 additions & 58 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@adobe/helix-md2jcr",
3-
"version": "1.2.4",
3+
"version": "1.2.6",
44
"description": "Helix Service that converts markdown to JCR content structure",
55
"main": "src/index.js",
66
"type": "module",
@@ -32,7 +32,7 @@
3232
"homepage": "https://github.com/adobe/helix-md2jcr#readme",
3333
"dependencies": {
3434
"@adobe/fetch": "4.2.3",
35-
"@adobe/helix-markdown-support": "7.1.14",
35+
"@adobe/helix-markdown-support": "7.1.16",
3636
"@adobe/helix-shared-process-queue": "3.1.3",
3737
"@adobe/remark-gridtables": "3.0.15",
3838
"entities": "^6.0.0",
@@ -57,24 +57,24 @@
5757
"xml-formatter": "^3.6.3"
5858
},
5959
"devDependencies": {
60-
"@adobe/eslint-config-helix": "3.0.11",
61-
"@adobe/helix-mediahandler": "2.9.2",
60+
"@adobe/eslint-config-helix": "3.0.15",
61+
"@adobe/helix-mediahandler": "2.9.5",
6262
"@commitlint/cli": "^19.6.1",
6363
"@commitlint/config-conventional": "^19.6.0",
6464
"@semantic-release/changelog": "6.0.3",
6565
"@semantic-release/exec": "7.1.0",
6666
"@semantic-release/git": "10.0.1",
6767
"c8": "10.1.3",
6868
"chai": "^6.0.0",
69-
"dotenv": "17.2.2",
69+
"dotenv": "17.2.3",
7070
"eslint": "^9.0.0",
7171
"eslint-import-resolver-exports": "1.0.0-beta.5",
7272
"eslint-plugin-header": "3.1.1",
7373
"eslint-plugin-import": "2.32.0",
7474
"husky": "^9.1.7",
7575
"junit-report-builder": "5.1.1",
76-
"lint-staged": "16.2.3",
77-
"mocha": "11.7.2",
76+
"lint-staged": "16.2.6",
77+
"mocha": "11.7.5",
7878
"mocha-multi-reporters": "1.5.1",
7979
"nock": "13.5.6",
8080
"semantic-release": "25.0.0",

test/block.test.js

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -287,6 +287,23 @@ describe('block tests', () => {
287287
});
288288
});
289289

290+
/**
291+
* The suite of non grid table markdown block unit tests.
292+
*/
293+
describe('plain-md', () => {
294+
/**
295+
* This test verifies that non grid table markdown blocks are correctly
296+
* converted to JCR XML.
297+
*/
298+
const folder = 'blocks/plain-md';
299+
it('cards', async () => {
300+
await testBlock('cards', `${folder}/cards`);
301+
});
302+
});
303+
304+
/**
305+
* The suite of error handling block unit tests.
306+
*/
290307
describe('error handling', () => {
291308
const folder = 'blocks/error-handling';
292309

0 commit comments

Comments
 (0)