@markuplint/erb-parser 5.0.0-rc.0 → 5.0.0-rc.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/package.json +9 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,21 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [5.0.0-rc.2](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.1...v5.0.0-rc.2) (2026-04-15)
7
+
8
+ **Note:** Version bump only for package @markuplint/erb-parser
9
+
10
+ # [5.0.0-rc.1](https://github.com/markuplint/markuplint/compare/v5.0.0-rc.0...v5.0.0-rc.1) (2026-03-27)
11
+
12
+ - feat!: adapt framework parsers to UUID-based node references ([6d543b8](https://github.com/markuplint/markuplint/commit/6d543b8c11506fe113d0ceeae3526f552f4ee26d))
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ - Parser output no longer contains parentNode/pairNode
17
+ object references. Use parentNodeUuid/pairNodeUuid string fields instead.
18
+
19
+ Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
20
+
6
21
  # [5.0.0-rc.0](https://github.com/markuplint/markuplint/compare/v5.0.0-alpha.3...v5.0.0-rc.0) (2026-03-12)
7
22
 
8
23
  **Note:** Version bump only for package @markuplint/erb-parser
package/package.json CHANGED
@@ -1,8 +1,12 @@
1
1
  {
2
2
  "name": "@markuplint/erb-parser",
3
- "version": "5.0.0-rc.0",
3
+ "version": "5.0.0-rc.2",
4
4
  "description": "eRuby template parser for markuplint",
5
- "repository": "git@github.com:markuplint/markuplint.git",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/markuplint/markuplint.git",
8
+ "directory": "packages/@markuplint/erb-parser"
9
+ },
6
10
  "author": "Yusuke Hirao <yusukehirao@me.com>",
7
11
  "license": "MIT",
8
12
  "engines": {
@@ -24,10 +28,10 @@
24
28
  "clean": "tsc --build --clean tsconfig.build.json"
25
29
  },
26
30
  "dependencies": {
27
- "@markuplint/html-parser": "5.0.0-rc.0"
31
+ "@markuplint/html-parser": "5.0.0-rc.2"
28
32
  },
29
33
  "devDependencies": {
30
- "@markuplint/parser-utils": "5.0.0-rc.0"
34
+ "@markuplint/parser-utils": "5.0.0-rc.2"
31
35
  },
32
- "gitHead": "ebf4d7cfca0c259aead3b292c6b8a202db4cd802"
36
+ "gitHead": "e43763858d9234c417053becc73dbd088c1e7ea6"
33
37
  }