semantic-release-lerna 2.18.4 → 3.0.0

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +4 -4
package/dist/index.js CHANGED
@@ -3138,7 +3138,7 @@ var require_hosts = __commonJS({
3138
3138
  treepath: "tree",
3139
3139
  blobpath: "tree",
3140
3140
  editpath: "-/edit",
3141
- tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/repository/archive.tar.gz?ref=${maybeEncode(committish || "HEAD")}`,
3141
+ tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/api/v4/projects/${maybeEncode(user + "/" + project)}/repository/archive.tar.gz?sha=${maybeEncode(committish || "HEAD")}`,
3142
3142
  extract: (url) => {
3143
3143
  const path26 = url.pathname.slice(1);
3144
3144
  if (path26.includes("/-/") || path26.includes("/archive.tar.gz")) {
@@ -3201,7 +3201,7 @@ var require_hosts = __commonJS({
3201
3201
  treepath: "tree",
3202
3202
  blobpath: "tree",
3203
3203
  filetemplate: ({ domain, user, project, committish, path: path26 }) => `https://${domain}/${user}/${project}/blob/${maybeEncode(committish) || "HEAD"}/${path26}`,
3204
- httpstemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}.git${maybeJoin("#", committish)}`,
3204
+ httpstemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}${maybeJoin("#", committish)}`,
3205
3205
  tarballtemplate: ({ domain, user, project, committish }) => `https://${domain}/${user}/${project}/archive/${maybeEncode(committish) || "HEAD"}.tar.gz`,
3206
3206
  bugstemplate: () => null,
3207
3207
  extract: (url) => {
@@ -28980,7 +28980,7 @@ var npmRunPathEnv2 = ({ env = process12.env, ...options } = {}) => {
28980
28980
  return env;
28981
28981
  };
28982
28982
 
28983
- // node_modules/mimic-fn/index.js
28983
+ // node_modules/env-ci/node_modules/mimic-fn/index.js
28984
28984
  var copyProperty = (to, from, property, ignoreNonConfigurable) => {
28985
28985
  if (property === "length" || property === "prototype") {
28986
28986
  return;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semantic-release-lerna",
3
- "version": "2.18.4",
3
+ "version": "3.0.0",
4
4
  "description": "semantic-release plugin to publish lerna monorepo packages to npm",
5
5
  "keywords": [
6
6
  "npm",
@@ -46,11 +46,11 @@
46
46
  "registry-auth-token": "^5.1.1"
47
47
  },
48
48
  "peerDependencies": {
49
- "lerna": "^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
50
- "semantic-release": "^22.0.0 || ^23.0.0 || ^24.0.0 || ^25.0.0"
49
+ "lerna": "^8.0.0 || ^9.0.0",
50
+ "semantic-release": "^24.0.0 || ^25.0.0"
51
51
  },
52
52
  "engines": {
53
- "node": "^20.17 || >= 22.16"
53
+ "node": ">= 22.16"
54
54
  },
55
55
  "publishConfig": {
56
56
  "access": "public",