contentful-migration 4.26.0 → 4.26.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 +6 -3
- package/package.json +8 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,9 +1,12 @@
|
|
|
1
|
-
|
|
1
|
+
## [4.26.1](https://github.com/contentful/contentful-migration/compare/v4.26.0...v4.26.1) (2024-11-07)
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
###
|
|
4
|
+
### Bug Fixes
|
|
5
5
|
|
|
6
|
-
*
|
|
6
|
+
* audit fix ([0a279c6](https://github.com/contentful/contentful-migration/commit/0a279c6e2636bb8e3ac05224053d292924fc1f25))
|
|
7
|
+
* bump semantic release ([3c0aaa1](https://github.com/contentful/contentful-migration/commit/3c0aaa1985740762e30e95ed1ad551a2c6e1cdb9))
|
|
8
|
+
* remove unused dep [EXT-5198] ([22fb625](https://github.com/contentful/contentful-migration/commit/22fb6252ba087e72fd897e5fb169439e3e6c1fb0))
|
|
9
|
+
* support beta releases ([0eeadea](https://github.com/contentful/contentful-migration/commit/0eeadea99d6cb048876583d84ece86715dc3dd45))
|
|
7
10
|
|
|
8
11
|
# Change Log
|
|
9
12
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "contentful-migration",
|
|
3
|
-
"version": "4.26.
|
|
3
|
+
"version": "4.26.1",
|
|
4
4
|
"description": "Migration tooling for contentful",
|
|
5
5
|
"author": "Contentful GmbH",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,7 +36,6 @@
|
|
|
36
36
|
"lint": "eslint 'examples/**/*.js' 'test/**/*.js' 'src/**/*.js' && tslint --project tsconfig-dev.json --config tslint.json -e '**/*.js'",
|
|
37
37
|
"lint:fix": "prettier --write 'src/**/*.{ts,tsx,js,jsx}' 'test/**/*.{ts,tsx,js,jsx}' && eslint --fix 'examples/**/*.js' 'test/**/*.js' 'src/**/*.js' && tslint --fix --project tsconfig-dev.json --config tslint.json -e '**/*.js'",
|
|
38
38
|
"semantic-release": "semantic-release",
|
|
39
|
-
"travis-deploy-once": "travis-deploy-once",
|
|
40
39
|
"test:unit:debug": "NODE_ENV=test mocha debug --require test/setup-unit.js --recursive 'test/unit/**/**/*.spec.{js,ts}'",
|
|
41
40
|
"test:integration:debug": "NODE_ENV=test mocha debug --require test/integration/setup.js 'test/integration/**/*.spec.js'",
|
|
42
41
|
"test:e2e:debug": "NODE_ENV=test mocha debug 'test/end-to-end/**/*.spec.js'",
|
|
@@ -103,12 +102,11 @@
|
|
|
103
102
|
"prettier": "^3.0.3",
|
|
104
103
|
"rewire": "^5.0.0",
|
|
105
104
|
"rimraf": "^5.0.1",
|
|
106
|
-
"semantic-release": "^
|
|
105
|
+
"semantic-release": "^22.0.12",
|
|
107
106
|
"sinon": "^18.0.0",
|
|
108
107
|
"sinon-chai": "^3.5.0",
|
|
109
108
|
"source-map-support": "^0.5.16",
|
|
110
109
|
"strip-ansi": "^6.0.0",
|
|
111
|
-
"travis-deploy-once": "^5.0.11",
|
|
112
110
|
"ts-node": "^10.0.0",
|
|
113
111
|
"tslint": "^6.1.1",
|
|
114
112
|
"tslint-config-prettier": "^1.18.0",
|
|
@@ -124,7 +122,12 @@
|
|
|
124
122
|
},
|
|
125
123
|
"release": {
|
|
126
124
|
"branches": [
|
|
127
|
-
"main"
|
|
125
|
+
"main",
|
|
126
|
+
{
|
|
127
|
+
"name": "beta",
|
|
128
|
+
"channel": "beta",
|
|
129
|
+
"prerelease": true
|
|
130
|
+
}
|
|
128
131
|
],
|
|
129
132
|
"plugins": [
|
|
130
133
|
[
|