yini-cli 1.5.0 → 1.5.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/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2024 Gothenburg, Marko K. S. (Sweden via Finland).
189
+ Copyright 2026 Marko K. Seppänen
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
package/docs/CHANGELOG.md CHANGED
@@ -1,9 +1,18 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## 1.5.1 - 2026 June
4
+ - Bumped dependency `yini-parser` to `^1.6.1` with the following changes:
5
+ * **Fixed:** Aligned parser behavior with the external `yini-test-suite` conformance suite for shebang comments, misplaced `@yini` directives, and triple-quoted string line endings.
6
+ * **Fixed:** `#!` lines after `@yini` are now treated as comments; misplaced `@yini` directives now produce syntax errors in both modes.
7
+ * **Fixed:** Triple-quoted raw and Classic strings now normalize `CRLF`/`CR` line endings to `LF` for stable cross-platform output.
8
+ * **Fixed:** Diagnostic line numbers now stay correct after shebang lines and strict-mode trailing-comma errors.
9
+ * **Fixed:** Removed the outdated strict-mode implementation warning; strict mode now targets the latest YINI Specification RC 6.
10
+ * **Improved:** Parse errors now use concise `YiniParseError` messages, including clearer strict-mode `/END` diagnostics.
11
+
3
12
  ## 1.5.0 - 2026 June
4
- - Bumped dependency `yini-parser` to `^1.6.0` with YINI Specification RC 6 parser support, which brings:
13
+ - Bumped dependency `yini-parser` to `^1.6.0` with **YINI Specification RC 6** parser support, which brings:
5
14
  - Improved parser diagnostics and structured issue reporting.
6
- - Support for the latest **RC 6** mode-declaration behavior.
15
+ - Support for the latest RC 6 mode-declaration behavior.
7
16
  - Improved handling of duplicate sections and duplicate keys.
8
17
  - Improved section marker parsing, including marker separators.
9
18
  - Improved string concatenation validation.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yini-cli",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Official command-line tool for validating and converting YINI files — YINI is an INI-inspired, human-readable configuration format with explicit structure and predictable parsing.",
5
5
  "keywords": [
6
6
  "yini",
@@ -73,7 +73,7 @@
73
73
  "commander": "^14.0.1",
74
74
  "xmlbuilder2": "^4.0.3",
75
75
  "yaml": "^2.8.2",
76
- "yini-parser": "^1.6.0"
76
+ "yini-parser": "^1.6.1"
77
77
  },
78
78
  "devDependencies": {
79
79
  "@eslint/js": "^9.31.0",