semantic-release 24.2.2 → 24.2.4

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/README.md CHANGED
@@ -53,7 +53,7 @@ This removes the immediate connection between human emotions and version numbers
53
53
  **semantic-release** uses the commit messages to determine the consumer impact of changes in the codebase.
54
54
  Following formalized conventions for commit messages, **semantic-release** automatically determines the next [semantic version](https://semver.org) number, generates a changelog and publishes the release.
55
55
 
56
- By default, **semantic-release** uses [Angular Commit Message Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#-commit-message-format).
56
+ By default, **semantic-release** uses [Angular Commit Message Conventions](https://github.com/angular/angular/blob/main/contributing-docs/commit-message-guidelines.md).
57
57
  The commit message format can be changed with the [`preset` or `config` options](docs/usage/configuration.md#options) of the [@semantic-release/commit-analyzer](https://github.com/semantic-release/commit-analyzer#options) and [@semantic-release/release-notes-generator](https://github.com/semantic-release/release-notes-generator#options) plugins.
58
58
 
59
59
  Tools such as [commitizen](https://github.com/commitizen/cz-cli) or [commitlint](https://github.com/conventional-changelog/commitlint) can be used to help contributors and enforce valid commit messages.
@@ -158,10 +158,6 @@
158
158
  - `fail`: Publish a fail message to certain telegram chats
159
159
  - [semantic-release-npm-deprecate](https://github.com/jpoehnelt/semantic-release-npm-deprecate)
160
160
  - `publish`: Automatically mark old versions as deprecated.
161
- - [@eshepelyuk/semantic-release-helm-oci](https://github.com/eshepelyuk/semantic-release-helm-oci)
162
- - `verifyConditions`: Verify plugin configuration and login to Helm registry
163
- - `prepare`: Package Helm chart to local folder
164
- - `publish`: Publish Helm chart to OCI registry
165
161
  - [semantic-release-mirror-version](https://github.com/GarthDB/semantic-release-mirror-version)
166
162
  - `prepare`: Update the version number in any file that matches the defined [file glob](https://github.com/isaacs/node-glob).
167
163
  - [semantic-release-space](https://github.com/123FLO321/semantic-release-space)
package/index.d.ts CHANGED
@@ -41,6 +41,11 @@ declare module "semantic-release" {
41
41
  * Has error, log, warn and success methods.
42
42
  */
43
43
  logger: Signale<"error" | "log" | "success" | "warn">;
44
+
45
+ /**
46
+ * Semantic release configuration
47
+ */
48
+ options: Options;
44
49
  }
45
50
 
46
51
  /**
@@ -668,6 +673,11 @@ declare module "semantic-release" {
668
673
  */
669
674
  ci?: boolean | undefined;
670
675
 
676
+ /**
677
+ * Set to true when the `ci` option is set to false.
678
+ */
679
+ noCi?: true;
680
+
671
681
  /**
672
682
  * Any other options supported by plugins.
673
683
  */
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "semantic-release",
3
3
  "description": "Automated semver compliant package publishing",
4
- "version": "24.2.2",
4
+ "version": "24.2.4",
5
5
  "type": "module",
6
6
  "author": "Stephan Bönnemann <stephan@boennemann.me> (http://boennemann.me)",
7
7
  "ava": {
@@ -45,7 +45,7 @@
45
45
  "hosted-git-info": "^8.0.0",
46
46
  "import-from-esm": "^2.0.0",
47
47
  "lodash-es": "^4.17.21",
48
- "marked": "^12.0.0",
48
+ "marked": "^15.0.0",
49
49
  "marked-terminal": "^7.0.0",
50
50
  "micromatch": "^4.0.2",
51
51
  "p-each-series": "^3.0.0",
@@ -58,24 +58,26 @@
58
58
  "yargs": "^17.5.1"
59
59
  },
60
60
  "devDependencies": {
61
- "ava": "6.2.0",
61
+ "@types/node": "22.15.18",
62
+ "@types/signale": "1.4.7",
63
+ "ava": "6.3.0",
62
64
  "c8": "10.1.3",
63
65
  "clear-module": "4.1.2",
64
66
  "cz-conventional-changelog": "3.3.0",
65
- "dockerode": "4.0.4",
67
+ "dockerode": "4.0.6",
66
68
  "file-url": "4.0.0",
67
69
  "fs-extra": "11.3.0",
68
- "got": "14.4.5",
70
+ "got": "14.4.7",
69
71
  "js-yaml": "4.1.0",
70
- "lockfile-lint": "4.14.0",
72
+ "lockfile-lint": "4.14.1",
71
73
  "ls-engines": "0.9.3",
72
74
  "mockserver-client": "5.15.0",
73
- "nock": "14.0.1",
74
- "npm-run-all2": "7.0.2",
75
+ "nock": "14.0.4",
76
+ "npm-run-all2": "8.0.2",
75
77
  "p-retry": "6.2.1",
76
- "prettier": "3.4.2",
77
- "publint": "0.3.4",
78
- "sinon": "19.0.2",
78
+ "prettier": "3.5.3",
79
+ "publint": "0.3.12",
80
+ "sinon": "20.0.0",
79
81
  "stream-buffers": "3.0.3",
80
82
  "tempy": "3.1.0",
81
83
  "testdouble": "3.20.2"
@@ -161,5 +163,5 @@
161
163
  "github>semantic-release/.github:renovate-config"
162
164
  ]
163
165
  },
164
- "packageManager": "npm@11.1.0"
166
+ "packageManager": "npm@11.4.0"
165
167
  }