Skip to content

Commit 7d06364

Browse files
committed
chore: Enable automatic changelog maintenance [skip ci]
1 parent 4415f5d commit 7d06364

File tree

2 files changed

+40
-0
lines changed

2 files changed

+40
-0
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
## [3.0.1](https://github.com/prantlf/gulp-jsonlint/compare/v3.0.0...v3.0.1) (2023-04-27)
2+
3+
### Bug Fixes
4+
5+
* Upgrade dependencies ([4415f5d](https://github.com/prantlf/gulp-jsonlint/commit/4415f5d2245e7caaa15a8853d3d67dae9e288f93))
6+
7+
# [3.0.0](https://github.com/prantlf/gulp-jsonlint/compare/v2.4.1...v3.0.0) (2023-03-05)
8+
9+
### Features
10+
11+
* Upgrade jsonlint to get better JSON Schema support ([b64dc26](https://github.com/prantlf/gulp-jsonlint/commit/b64dc26729f0d707065cd1f8dc8e5b88e6373dab))
12+
13+
### BREAKING CHANGES
14+
15+
* Dropped support for Node.js 12 . The minimum supported version is Node.js 14.
16+
* The default environment recognises only JSON Schema drafts 06 and 07 automatically. Not 04 any more. The environment for JSON Schema drafts 04 has to be selected explicitly. Also, JSON Schema drafts 06 and 07 are handled by AJV@8 instead of AJV@6. It shouldn't make any difference, but the implementation is new and could perform a stricter validation.
17+
18+
## [2.4.1](https://github.com/prantlf/gulp-jsonlint/compare/v2.4.0...v2.4.1) (2022-05-04)
19+
20+
### Bug Fixes
21+
22+
* Upgrade dependnecies ([1f8ee43](https://github.com/prantlf/gulp-jsonlint/commit/1f8ee433ee4bf7f1cddb1565f652376ad0c93794))
23+
124
# [2.4.0](https://github.com/prantlf/gulp-jsonlint/compare/v2.3.2...v2.4.0) (2019-12-28)
225

326
### Features

package.json

+17
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,21 @@
4242
"text"
4343
]
4444
},
45+
"release": {
46+
"plugins": [
47+
"@semantic-release/commit-analyzer",
48+
"@semantic-release/release-notes-generator",
49+
"@semantic-release/changelog",
50+
"@semantic-release/npm",
51+
[
52+
"@semantic-release/github",
53+
{
54+
"failComment": false
55+
}
56+
],
57+
"@semantic-release/git"
58+
]
59+
},
4560
"dependencies": {
4661
"@prantlf/jsonlint": "14.0.3",
4762
"ansi-colors": "4.1.3",
@@ -51,6 +66,8 @@
5166
"through2": "4.0.2"
5267
},
5368
"devDependencies": {
69+
"@semantic-release/changelog": "6.0.3",
70+
"@semantic-release/git": "10.0.1",
5471
"c8": "7.13.0",
5572
"eslint": "8.39.0",
5673
"eslint-config-standard": "17.0.0",

0 commit comments

Comments
 (0)