@smartive/datocms-utils 2.1.2 → 2.1.3

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.
@@ -18,7 +18,11 @@ jobs:
18
18
  - run: npm ci
19
19
  - run: npm run build
20
20
  - name: semantic release
21
- uses: cycjimmy/semantic-release-action@v3
21
+ uses: cycjimmy/semantic-release-action@v4
22
+ with:
23
+ semantic_version: 19
24
+ extra_plugins: |
25
+ @semantic-release/changelog@6
22
26
  env:
23
27
  GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
24
28
  NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
- ## [2.1.2](https://github.com/smartive/datocms-utils/compare/v2.1.1...v2.1.2) (2025-11-13)
1
+ ## [2.1.3](https://github.com/smartive/datocms-utils/compare/v2.1.2...v2.1.3) (2025-11-13)
2
2
 
3
3
 
4
4
  ### Bug Fixes
5
5
 
6
- * actions failing due to eslint upgrade ([7400017](https://github.com/smartive/datocms-utils/commit/74000172ebaadc2297ef4f7eb50d26b8ae68c5ab))
6
+ * semantic release not working anymore ([a9fc543](https://github.com/smartive/datocms-utils/commit/a9fc543a9c75493a21f9016b0c0fa4327634dc1c))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@smartive/datocms-utils",
3
- "version": "2.1.2",
3
+ "version": "2.1.3",
4
4
  "description": "A set of utilities and helpers to work with DatoCMS in a Next.js project.",
5
5
  "source": "src/index.ts",
6
6
  "main": "dist/index.js",
@@ -20,11 +20,6 @@
20
20
  "author": "smartive AG",
21
21
  "license": "MIT",
22
22
  "devDependencies": {
23
- "@semantic-release/changelog": "^6.0.3",
24
- "@semantic-release/commit-analyzer": "^13.0.1",
25
- "@semantic-release/gitlab": "^13.2.1",
26
- "@semantic-release/npm": "^13.1.1",
27
- "@semantic-release/release-notes-generator": "^14.1.0",
28
23
  "@smartive/eslint-config": "^7.0.0",
29
24
  "@smartive/prettier-config": "^3.1.2",
30
25
  "@types/node": "^24.0.0",
package/renovate.json CHANGED
@@ -1,4 +1,9 @@
1
1
  {
2
2
  "$schema": "https://docs.renovatebot.com/renovate-schema.json",
3
- "extends": ["local>smartive/renovate-config"]
3
+ "extends": [
4
+ "local>smartive/renovate-config",
5
+ ":automergeRequireAllStatusChecks",
6
+ ":automergeDisabled",
7
+ ":automergeStableNonMajor"
8
+ ]
4
9
  }