File: CHANGELOG.md

package info (click to toggle)
cockpit 355-1
  • links: PTS, VCS
  • area: main
  • in suites: forky
  • size: 311,568 kB
  • sloc: javascript: 774,787; python: 40,655; ansic: 35,157; cpp: 11,141; sh: 3,512; makefile: 580; xml: 261
file content (161 lines) | stat: -rw-r--r-- 4,620 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
2.0.1 / 2020-05-25
------------------

- decode entities in browser properly (#386)

2.0.0 / 2019-08-07
------------------

- bundle umd with rollup (#346)
- remove bower support (#347)
- decouple linkify in separate plugin (#351)
- convert code to esm and distribute as cjs and esm bundles (#352)
- upgrade autolinker (#356)
- provide smaller browser version of entities (#359)
- use named exports for public api (#354)

1.7.4 / 2019-07-30
------------------

- upgrade argparse (https://github.com/jonschlinkert/remarkable/pull/349)
- prevent a ReDoS vulnerability (#335)
- disallow ascii control characters in URLs (#334)

1.7.0 / 2016-09-27
------------------

- Special thanks to [lemoinem](https://github.com/lemoinem) for adding much needed, and well-written [documentation](docs/)!
- Footnotes are now enabled by default
- Adds support for "passthrough classes", thanks to [matthewmueller](https://github.com/matthewmueller)
- Outlaws data: URLs by default, thanks to [spicyj](https://github.com/spicyj)
- Improves whitespace trimming performance, thanks to [dpkirchner](https://github.com/dpkirchner)
- Image alts are now properly unescaped, thanks to [adam187](https://github.com/adam187)

1.6.2 / 2016-02-04
------------------

- Add support for specifying link target
- StateBlock.getLines should only read from the current line
- Fix missing space after shortcut links
- Fix "Manage rules" sample code in README.md
- Fix encoding of non-ASCII text (fixes #141)
- Option to not alter links provided for href
- Add Node.js v0.12 and v4 to Travis config
- Define bin script for npm
- Fix "Manage rules" sample code in README.md
- Fix typo in github proj url in Makefile
- Fix build by ignoring the demo directory in eslint

1.6.1 / 2015-11-19
------------------

- npm now installs a script so you can access remarkable from the command
line.

1.5.0 / 2014-12-12
------------------

- Added Demo sync scroll, to show how lines mapping can be used.
- Improved IE8 support. Now you need only es5-shim, without es5-sham.
- Fixed errors on refs/attrs/footnoted with special names like `__proto__`.
- Renamed Ruler() private properties, to show those should not be accessed
  directly.
- Fixed Makefile OSX compatibility.


1.4.2 / 2014-11-29
------------------

- Added footnotes support.
- Added definitions lists support.
- Added `fence_custom` renderer extension to easy override
  named fenced blocks (useful for diagrams and so on).
- Exposed `./common/utils` to simplify custom renderers.


1.4.1 / 2014-11-13
------------------

- Moved links decode/encode from renderer to parser.
- Added missed validator call for scoped urls in links.
- Handle exceptions in `decoreURI` (regression).


1.4.0 / 2014-11-09
------------------

- Added `core` chain, to better organize code and improve pluggability.
- Added `renderInline()` and `parseInline()` methods.
- Added abbreviations support.
- Fixed problem with tables, having single column.
- Fixed rendered rules rewrite for inline tags.
- Changed internal api (ruler, inline, block classes).
- Removed typographer chain (rules moved to `core`).
- Removed all typographer options. Quote chars defs moved to `options.quotes`.


1.3.0 / 2014-10-29
------------------

- Fixed problem with minified & mangled browser version.
- Changed ruler API.


1.2.2 / 2014-10-29
------------------

- Fixed regression from 1.2.1 for data without tailing `\n`.
- Fixed blockquote line ranges.
- Added subscript/superscript support.
- Updated CommonMark spec and updated implementation.
- Other minor changes.


1.2.1 / 2014-10-28
------------------

- Fixed speed degradation when linkifier enabled.
- Added coverage reports.
- Added debug view to demo (show internal representation)
- Other minor optimizations and cleanup.


1.2.0 / 2014-10-26
------------------

- Added `<ins>` rule.
- Added `<mark>` rule.
- Added presets support (default, commonmark, full).
- Exposed `.configure()` method to load rules & options config with one command.
- Moved html escaping to renderer.


1.1.2 / 2014-10-23
------------------

- Fixed speed regression.
- Use base64 encoding for permalinks (workaround for github).
- Improved default link validator.
- Updated cache storage logic for inline parser.


1.1.1 / 2014-10-22
------------------

- Fixed `Ruler.after()` method.
- Fixed linkification.
- Simplified loose/tight rendering.
- Refactored inline parser. No close coupled code in rules anymore.


1.1.0 / 2014-10-20
------------------

- Code refactoring, bugfixes, API update.
- Added source lines info to block nodes.


1.0.0 / 2014-10-16
------------------

- First release.