From 1e1dc0403d60166a1efe910efedc9ef1fc9c6f49 Mon Sep 17 00:00:00 2001 From: kleinfreund <5774638+kleinfreund@users.noreply.github.com> Date: Sun, 20 Oct 2024 11:39:56 +0200 Subject: [PATCH] ci: override conventional-changelog-conventionalcommits to >=v8 Override the `conventional-changelog-conventionalcommits` dependency to be at least version 8 to work around https://github.com/semantic-release/release-notes-generator/issues/655 and https://github.com/semantic-release/release-notes-generator/issues/657. This workaround will be necessary until https://github.com/conventional-changelog/commitlint/pull/4063 is resolved. --- package-lock.json | 8 ++++---- package.json | 3 +++ 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 788628d..d3fea65 100644 --- a/package-lock.json +++ b/package-lock.json @@ -3450,16 +3450,16 @@ } }, "node_modules/conventional-changelog-conventionalcommits": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-7.0.2.tgz", - "integrity": "sha512-NKXYmMR/Hr1DevQegFB4MwfM5Vv0m4UIxKZTTYuD98lpTknaZlSRrDOG4X7wIXpGkfsYxZTghUN+Qq+T0YQI7w==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-8.0.0.tgz", + "integrity": "sha512-eOvlTO6OcySPyyyk8pKz2dP4jjElYunj9hn9/s0OB+gapTO8zwS9UQWrZ1pmF2hFs3vw1xhonOLGcGjy/zgsuA==", "dev": true, "license": "ISC", "dependencies": { "compare-func": "^2.0.0" }, "engines": { - "node": ">=16" + "node": ">=18" } }, "node_modules/conventional-changelog-writer": { diff --git a/package.json b/package.json index c1c9745..af35826 100644 --- a/package.json +++ b/package.json @@ -90,5 +90,8 @@ "typescript-eslint": "^8.10.0", "vite": "^5.4.9", "vitest": "^2.1.3" + }, + "overrides": { + "conventional-changelog-conventionalcommits": ">= 8.0.0" } }