File tree Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Expand file tree Collapse file tree 3 files changed +32
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
All notable changes will be documented in this file.
4
4
5
+ ## 7.0.0 - 2021-08-13
6
+
7
+ Welcome to version 7.
8
+ This a major release and therefore contains breaking changes.
9
+
10
+ ### Breaking changes
11
+
12
+ * [ ` 01b11fe ` ] ( https://github.com/remarkjs/react-markdown/commit/01b11fe )
13
+ [ ` c613efd ` ] ( https://github.com/remarkjs/react-markdown/commit/c613efd )
14
+ [ ` a1e1c3f ` ] ( https://github.com/remarkjs/react-markdown/commit/a1e1c3f )
15
+ [ ` aeee9ac ` ] ( https://github.com/remarkjs/react-markdown/commit/aeee9ac )
16
+ Use ESM
17
+ (please [ read this] ( https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c ) )
18
+ * [ ` 3dffd6a ` ] ( https://github.com/remarkjs/react-markdown/commit/3dffd6a )
19
+ Update dependencies
20
+ (upgrade all your plugins and this should go fine)
21
+
22
+ ### Internals
23
+
24
+ * [ ` 8b5481c ` ] ( https://github.com/remarkjs/react-markdown/commit/8b5481c )
25
+ [ ` fb1b512 ` ] ( https://github.com/remarkjs/react-markdown/commit/fb1b512 )
26
+ [ ` 144af79 ` ] ( https://github.com/remarkjs/react-markdown/commit/144af79 )
27
+ Replace ` jest ` with ` uvu `
28
+ * [ ` 8c572df ` ] ( https://github.com/remarkjs/react-markdown/commit/8c572df )
29
+ Replace ` rollup ` with ` esbuild `
30
+ * [ ` 8737eac ` ] ( https://github.com/remarkjs/react-markdown/commit/8737eac )
31
+ [ ` 28d4c75 ` ] ( https://github.com/remarkjs/react-markdown/commit/28d4c75 )
32
+ [ ` b2dd046 ` ] ( https://github.com/remarkjs/react-markdown/commit/b2dd046 )
33
+ Refactor code-style
34
+
5
35
## 6.0.3 - 2021-07-30
6
36
7
37
* [ ` 13367ed ` ] ( https://github.com/remarkjs/react-markdown/commit/13367ed )
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ export function ReactMarkdown(options) {
83
83
84
84
const processor = unified ( )
85
85
. use ( remarkParse )
86
- // TODO: deprecate `plugins` in v7 .0.0.
86
+ // TODO: deprecate `plugins` in v8 .0.0.
87
87
. use ( options . remarkPlugins || options . plugins || [ ] )
88
88
. use ( remarkRehype , { allowDangerousHtml : true } )
89
89
. use ( options . rehypePlugins || [ ] )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " react-markdown" ,
3
- "version" : " 6 .0.3 " ,
3
+ "version" : " 7 .0.0 " ,
4
4
"description" : " Render Markdown as React components" ,
5
5
"license" : " MIT" ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments