@adobe/remark-gridtables 2.0.1 → 3.0.0
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/CHANGELOG.md +21 -0
- package/README.md +1 -2
- package/package.json +13 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
# [3.0.0](https://github.com/adobe/remark-gridtables/compare/v2.0.2...v3.0.0) (2024-01-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update external major ([#80](https://github.com/adobe/remark-gridtables/issues/80)) ([1c478b7](https://github.com/adobe/remark-gridtables/commit/1c478b7353731068ec2c4c4a5658c9ce7b0ce9eb))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### BREAKING CHANGES
|
|
10
|
+
|
|
11
|
+
* **deps:** wide code blocks inside cells are line wrapped by inserting a "no-break-here" (U+0083) character.
|
|
12
|
+
|
|
13
|
+
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
|
|
14
|
+
|
|
15
|
+
## [2.0.2](https://github.com/adobe/remark-gridtables/compare/v2.0.1...v2.0.2) (2023-10-14)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** update external fixes ([#65](https://github.com/adobe/remark-gridtables/issues/65)) ([e6d5c5e](https://github.com/adobe/remark-gridtables/commit/e6d5c5e4050a4efbe44485ca136aa9b6dda4b995))
|
|
21
|
+
|
|
1
22
|
## [2.0.1](https://github.com/adobe/remark-gridtables/compare/v2.0.0...v2.0.1) (2023-09-26)
|
|
2
23
|
|
|
3
24
|
|
package/README.md
CHANGED
|
@@ -4,10 +4,9 @@
|
|
|
4
4
|
|
|
5
5
|
## Status
|
|
6
6
|
[](https://codecov.io/gh/adobe/remark-gridtables)
|
|
7
|
-
|
|
7
|
+

|
|
8
8
|
[](https://github.com/adobe/remark-gridtables/blob/master/LICENSE.txt)
|
|
9
9
|
[](https://github.com/adobe/remark-gridtables/issues)
|
|
10
|
-
[](https://lgtm.com/projects/g/adobe/remark-gridtables)
|
|
11
10
|
[](https://github.com/semantic-release/semantic-release)
|
|
12
11
|
|
|
13
12
|
## What is this?
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adobe/remark-gridtables",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"description": "Remark Gridtables",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"remark",
|
|
@@ -15,6 +15,7 @@
|
|
|
15
15
|
"test": "c8 mocha",
|
|
16
16
|
"lint": "eslint .",
|
|
17
17
|
"semantic-release": "semantic-release",
|
|
18
|
+
"semantic-release-dry": "semantic-release --dry-run --branches $CI_BRANCH",
|
|
18
19
|
"prepare": "husky install"
|
|
19
20
|
},
|
|
20
21
|
"repository": {
|
|
@@ -32,21 +33,21 @@
|
|
|
32
33
|
"reporter-options": "configFile=.mocha-multi.json"
|
|
33
34
|
},
|
|
34
35
|
"dependencies": {
|
|
35
|
-
"@adobe/mdast-util-gridtables": "
|
|
36
|
+
"@adobe/mdast-util-gridtables": "4.0.0",
|
|
36
37
|
"@adobe/micromark-extension-gridtables": "2.0.0"
|
|
37
38
|
},
|
|
38
39
|
"devDependencies": {
|
|
39
40
|
"@semantic-release/changelog": "6.0.3",
|
|
40
41
|
"@semantic-release/git": "10.0.1",
|
|
41
|
-
"@semantic-release/npm": "11.0.
|
|
42
|
-
"c8": "
|
|
43
|
-
"eslint": "8.
|
|
42
|
+
"@semantic-release/npm": "11.0.2",
|
|
43
|
+
"c8": "9.1.0",
|
|
44
|
+
"eslint": "8.56.0",
|
|
44
45
|
"eslint-config-airbnb-base": "15.0.0",
|
|
45
46
|
"eslint-plugin-header": "3.1.1",
|
|
46
|
-
"eslint-plugin-import": "2.
|
|
47
|
-
"husky": "
|
|
48
|
-
"junit-report-builder": "3.0
|
|
49
|
-
"lint-staged": "
|
|
47
|
+
"eslint-plugin-import": "2.29.1",
|
|
48
|
+
"husky": "9.0.7",
|
|
49
|
+
"junit-report-builder": "3.1.0",
|
|
50
|
+
"lint-staged": "15.2.0",
|
|
50
51
|
"mdast-builder": "1.1.1",
|
|
51
52
|
"mocha": "10.2.0",
|
|
52
53
|
"mocha-multi-reporters": "1.5.1",
|
|
@@ -54,10 +55,10 @@
|
|
|
54
55
|
"rehype-stringify": "10.0.0",
|
|
55
56
|
"remark-gfm": "4.0.0",
|
|
56
57
|
"remark-parse": "11.0.0",
|
|
57
|
-
"remark-rehype": "11.
|
|
58
|
+
"remark-rehype": "11.1.0",
|
|
58
59
|
"remark-stringify": "11.0.0",
|
|
59
|
-
"semantic-release": "
|
|
60
|
-
"unified": "11.0.
|
|
60
|
+
"semantic-release": "23.0.0",
|
|
61
|
+
"unified": "11.0.4",
|
|
61
62
|
"unist-util-visit": "5.0.0"
|
|
62
63
|
},
|
|
63
64
|
"lint-staged": {
|