Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
4874cb4
Allow closing fence to be followed by tabs.
jgm Jun 3, 2022
3ea1589
Updaet spec.txt.
jgm Aug 13, 2022
4082a18
Omit alt attribute if it would be empty.
jgm Aug 13, 2022
6645949
Revert "Omit alt attribute if it would be empty."
jgm Aug 23, 2022
347590b
Revert "Updaet spec.txt."
jgm Aug 23, 2022
c0f56ac
Fix a pathological performance case in link titles.
jgm Aug 27, 2022
5ff18af
Update spec.txt.
jgm Sep 8, 2022
28c82d8
Fix HTML comment regex to conform to commonmark/commonmark-spec#713.
jgm Sep 8, 2022
5346db4
Fix HTML comment regex.
jgm Sep 8, 2022
46538e5
Allow `<!doctype` to be case-insensitive.
jgm Sep 21, 2022
9a16ff4
Declarations do not need a space, per the spec.
jgm Nov 3, 2022
20b52e5
Fix "CommomMark" typo (#270)
mgeisler Jun 7, 2023
df3ea1e
Fix list tightness.
taku0 Feb 9, 2023
97da298
Track underscore bottom separately mod 3, like asterisk
notriddle Oct 26, 2023
9f548fe
Fix pathological regex for HTML comments.
jgm Nov 14, 2023
c7aef33
Html renderer: don't add `language-` to code block class...
jgm Jan 22, 2024
0f94755
Do not process `&`-entities that don't end in `;`
notriddle Jan 27, 2024
d9a5ca8
Update spec.txt to 0.31.1.
jgm Jan 28, 2024
aef681b
Treat unicode symbols like punctuation for purposes of flankingness.
jgm Jan 28, 2024
52546e9
Update to 0.31.2 spec.txt.
jgm Jan 28, 2024
cc7febb
Bump to 0.31.0, update changelog.
jgm Jan 28, 2024
f6c04d8
Remove obsolete things from release checklist.
jgm Jan 28, 2024
2df33d5
Remove source, add search to list of recognized block tags.
jgm Jan 29, 2024
ba128a8
Remove string.prototype.repeat polyfill
styfle Jan 29, 2024
3ef341b
Fix title-related backtracking with empty string
notriddle Feb 2, 2024
a4d859c
Accept lowercase inline HTML declarations
notriddle Mar 1, 2024
6f94a99
Fix HTML comment parsing with `-` before closing `-->` (#286)
robinst Mar 6, 2024
16ff08a
Bump to 0.31.1, update changelog
jgm Jul 28, 2024
cb7e2e3
Require minimist >= 1.2.8.
jgm Sep 19, 2024
cb2c230
Bump to 0.31.2, update changelog.
jgm Sep 19, 2024
f3145e8
Don't trim non-ASCII whitespace
tats-u Sep 1, 2024
38d2938
Avoid use of slow regex in `trim()` (#295)
tats-u Dec 14, 2024
e489bf5
Recognize non-BMP punctuation & symbols (#297)
tats-u Dec 18, 2024
aaacbb8
merge commonmark/master
lieut-data Mar 25, 2025
da97efb
fix tests, versions
lieut-data Mar 25, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,41 @@
0.31.2]

* Require minimist >= 1.2.8 (#290), see CVE-2021-44906.

[0.31.1]

* Fix HTML comment parsing with `-` before closing `-->`
(#285, Robin Stocker).
* Accept lowercase inline HTML declarations (Michael Howell).
* Fix title-related backtracking with empty string (#281,
Michael Howell).
* Remove `string.prototype.repeat` polyfill (Steven).
* Remove `source`, add `search` to list of recognized block tags.
(a spec 0.31 change we forgot in last release).

[0.31.0]

* Update to 0.31 spec.txt.
* Treat unicode symbols like punctuation for purposes of flankingness.
This updates the library to conform to the 0.31 spec.
* Do not process `&`-entities that don't end in `;` (#278, Michael Howell).
* Html renderer: don't add `language-` to code block class
if the info string already starts with `language-` (#277).
* Fix pathological regex for HTML comments (#273).
* Track underscore bottom separately mod 3, like asterisk (Michael Howell).
* Fix list tightness (taku0).
* Fix "CommomMark" typo (#270, Martin Geisler).
* Declarations do not need a space, per the spec (commonmark/cmark#456).
* Allow `<!doctype` to be case-insensitive.
* Fix HTML comment regex.
* Fix HTML comment regex to conform to commonmark/commonmark-spec#713.
* Fix a pathological performance case in link titles.
Thanks to Stefan Dobre for reporting.
* Allow closing fence to be followed by tabs (#258).
* Replace deprecated String.prototype.substr() (#254, CommanderRoot).
* Fix bug with reference link normalization. We were only collapsing the
first group of consecutive whitespace, not following ones.

[0.30.0]

* Update tests to 0.30 spec.txt.
Expand Down
Loading