@adobe/remark-gridtables 2.0.2 → 3.0.1
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 +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## [3.0.1](https://github.com/adobe/remark-gridtables/compare/v3.0.0...v3.0.1) (2024-02-28)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** update dependency @adobe/mdast-util-gridtables to v4.0.1 ([#86](https://github.com/adobe/remark-gridtables/issues/86)) ([b50b203](https://github.com/adobe/remark-gridtables/commit/b50b203c2ca79b0f6404b5705646b7ea81668837))
|
|
7
|
+
|
|
8
|
+
# [3.0.0](https://github.com/adobe/remark-gridtables/compare/v2.0.2...v3.0.0) (2024-01-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** update external major ([#80](https://github.com/adobe/remark-gridtables/issues/80)) ([1c478b7](https://github.com/adobe/remark-gridtables/commit/1c478b7353731068ec2c4c4a5658c9ce7b0ce9eb))
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
### BREAKING CHANGES
|
|
17
|
+
|
|
18
|
+
* **deps:** wide code blocks inside cells are line wrapped by inserting a "no-break-here" (U+0083) character.
|
|
19
|
+
|
|
20
|
+
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
|
|
21
|
+
|
|
1
22
|
## [2.0.2](https://github.com/adobe/remark-gridtables/compare/v2.0.1...v2.0.2) (2023-10-14)
|
|
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.1",
|
|
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,32 +33,32 @@
|
|
|
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.1",
|
|
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.57.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.1
|
|
49
|
-
"lint-staged": "
|
|
47
|
+
"eslint-plugin-import": "2.29.1",
|
|
48
|
+
"husky": "9.0.11",
|
|
49
|
+
"junit-report-builder": "3.2.1",
|
|
50
|
+
"lint-staged": "15.2.2",
|
|
50
51
|
"mdast-builder": "1.1.1",
|
|
51
|
-
"mocha": "10.
|
|
52
|
+
"mocha": "10.3.0",
|
|
52
53
|
"mocha-multi-reporters": "1.5.1",
|
|
53
54
|
"rehype-format": "5.0.0",
|
|
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.2",
|
|
61
|
+
"unified": "11.0.4",
|
|
61
62
|
"unist-util-visit": "5.0.0"
|
|
62
63
|
},
|
|
63
64
|
"lint-staged": {
|