Skip to content

Commit 4f112a0

Browse files
committed
docs: add v1.1.0 release notes
- Add v1.1.0 section at top of RELEASE_NOTES.md - Document new features (strikethrough, unicode, position tracking) - Highlight security improvements (XSS prevention) - List CLI enhancements (extended HTML/Markdown, working converters) - Confirm 100% backward compatibility - Show upgrade path (no code changes needed) Fixes P2-1: RELEASE_NOTES.md now complete for v1.1.0
1 parent 276d03a commit 4f112a0

File tree

1 file changed

+59
-2
lines changed

1 file changed

+59
-2
lines changed

β€ŽRELEASE_NOTES.mdβ€Ž

Lines changed: 59 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,63 @@
1-
# OmniScript Format v1.0 - Release Notes
1+
# OmniScript Format - Release Notes
2+
3+
## v1.1.0 - Enhanced Features & Security (January 16, 2025)
4+
5+
**Status**: βœ… Production Ready
6+
**Packages**: omniscript-parser@1.1.0, omniscript-cli@1.1.0,
7+
omniscript-converters@1.1.0
8+
9+
### 🎯 Highlights
10+
11+
This release brings **enhanced formatting capabilities**, **security
12+
improvements**, and **better developer experience** while maintaining **100%
13+
backward compatibility** with v1.0.
14+
15+
### ✨ New Features
16+
17+
#### Text Formatting
18+
19+
- βœ… **Strikethrough** - `~~text~~` syntax for strikethrough formatting
20+
- βœ… **Unicode Escapes** - `\uXXXX` and `\xXX` support in strings
21+
- βœ… Round-trip support for all unicode characters
22+
23+
#### Developer Experience
24+
25+
- βœ… **Position Tracking** - Errors now show precise line:column (e.g., "Error
26+
at 5:12")
27+
- βœ… **String Validation** - Detect unterminated strings with clear messages
28+
- βœ… **Better Debugging** - Enhanced error context for faster problem resolution
29+
30+
#### CLI Enhancements
31+
32+
- βœ… **Extended HTML** - Ordered lists, blockquotes, code blocks, images, links
33+
- βœ… **Enhanced Markdown** - Full formatting preservation in exports
34+
- βœ… **Working Converters** - PDF/DOCX/PPTX/XLSX rendering fully functional
35+
36+
### πŸ”’ Security Improvements
37+
38+
- βœ… **XSS Prevention** - All HTML output properly escaped
39+
- βœ… **Input Validation** - Enhanced parser safety checks
40+
41+
### πŸ“Š Quality Metrics
42+
43+
- **88 tests** passing (31 new tests for v1.1 features)
44+
- **100% backward compatible** with v1.0
45+
- **Zero breaking changes**
46+
47+
### πŸ”„ Upgrade Path
48+
49+
```bash
50+
npm install omniscript-parser@1.1.0
51+
npm install omniscript-cli@1.1.0
52+
npm install omniscript-converters@1.1.0
53+
```
54+
55+
No code changes needed - drop-in replacement for v1.0!
56+
57+
---
58+
59+
## v1.0.0 - Production Release (October 15, 2025)
260

3-
**Release Date**: October 15, 2025
461
**Status**: βœ… Production Ready
562
**Packages**: omniscript-parser@1.0.0, omniscript-converters@1.0.0,
663
omniscript-cli@1.0.0

0 commit comments

Comments
Β (0)