diff --git a/.all-contributorsrc b/.all-contributorsrc
index 0b713a1d7..2c6ae4b8a 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -817,6 +817,38 @@
"contributions": [
"doc"
]
+ },
+ {
+ "login": "Zweer",
+ "name": "NiccolΓ² Olivieri Achille",
+ "avatar_url": "https://avatars.githubusercontent.com/u/825906?v=4",
+ "profile": "https://github.com/Zweer",
+ "contributions": [
+ "test",
+ "code"
+ ]
+ },
+ {
+ "login": "jackw",
+ "name": "Jack Westbrook",
+ "avatar_url": "https://avatars.githubusercontent.com/u/73201?v=4",
+ "profile": "https://www.heywesty.com/",
+ "contributions": [
+ "doc",
+ "test",
+ "code"
+ ]
+ },
+ {
+ "login": "jazmon",
+ "name": "Atte Huhtakangas",
+ "avatar_url": "https://avatars.githubusercontent.com/u/3680110?v=4",
+ "profile": "https://github.com/jazmon",
+ "contributions": [
+ "doc",
+ "test",
+ "code"
+ ]
}
],
"commitConvention": "none"
diff --git a/CHANGELOG.md b/CHANGELOG.md
index dd72e721f..aaf565259 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,57 @@
+# v11.0.7 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- `@auto-it/npm`
+ - fix(npm): mark releases as latest with lerna [#2414](https://github.com/intuit/auto/pull/2414) ([@jazmon](https://github.com/jazmon))
+
+#### Authors: 1
+
+- Atte Huhtakangas ([@jazmon](https://github.com/jazmon))
+
+---
+
+# v11.0.6 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- `@auto-it/npm`
+ - NPM: Fix lerna version erroring with unknown registry arg [#2421](https://github.com/intuit/auto/pull/2421) ([@jackw](https://github.com/jackw))
+
+#### Authors: 1
+
+- Jack Westbrook ([@jackw](https://github.com/jackw))
+
+---
+
+# v11.0.5 (Thu Feb 22 2024)
+
+:tada: This release contains work from new contributors! :tada:
+
+Thanks for all your work!
+
+:heart: NiccolΓ² Olivieri Achille ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+:heart: NiccolΓ² Olivieri Achille ([@Zweer](https://github.com/Zweer))
+
+#### π Bug Fix
+
+- `@auto-it/core`
+ - Fixing git `2.43.0` max number issue #2425 [#2426](https://github.com/intuit/auto/pull/2426) ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+#### π© Dependency Updates
+
+- `@auto-it/sbt`
+ - Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 3
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+- NiccolΓ² Olivieri Achille ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+---
+
# v11.0.4 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/Formula/auto.rb b/Formula/auto.rb
index acee14ad3..2301b14f6 100644
--- a/Formula/auto.rb
+++ b/Formula/auto.rb
@@ -1,9 +1,9 @@
class Auto < Formula
desc "Generate releases based on semantic version labels on pull requests."
homepage "https://intuit.github.io/auto"
- url "https://github.com/intuit/auto/releases/download/v11.0.4/auto-macos.gz"
- version "v11.0.4"
- sha256 "044fabfb95c1b6960f389fa18c0c1fa8ce8df147ec46ae0015f93e20437148e3"
+ url "https://github.com/intuit/auto/releases/download/v11.0.7/auto-macos.gz"
+ version "v11.0.7"
+ sha256 "fabb52bd40161181a92fd7902d863a581d94b8046af694201694a0dd0a0f4e59"
def install
libexec.install Dir["*"]
diff --git a/README.md b/README.md
index a7e880928..b49f69ee5 100644
--- a/README.md
+++ b/README.md
@@ -315,6 +315,9 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
Satish Pokala π |
+ NiccolΓ² Olivieri Achille β οΈ π» |
+ Jack Westbrook π β οΈ π» |
+ Atte Huhtakangas π β οΈ π» |
diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx
index a677c5d2f..85f45b22a 100644
--- a/docs/pages/docs/configuration/non-npm.mdx
+++ b/docs/pages/docs/configuration/non-npm.mdx
@@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex
```bash
# Download a platform specific version of auto
-curl -vkL -o - https://github.com/intuit/auto/releases/download/v11.0.4/auto-linux.gz | gunzip > ~/auto
+curl -vkL -o - https://github.com/intuit/auto/releases/download/v11.0.7/auto-linux.gz | gunzip > ~/auto
# Make auto executable
chmod a+x ~/auto
```
diff --git a/lerna.json b/lerna.json
index fd65553c4..22470b996 100644
--- a/lerna.json
+++ b/lerna.json
@@ -1,5 +1,5 @@
{
- "version": "11.0.4",
+ "version": "11.0.7",
"npmClient": "yarn",
"packages": [
"packages/*",
diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json
index d54ab4995..66c3db6d6 100644
--- a/packages/bot-list/package.json
+++ b/packages/bot-list/package.json
@@ -2,7 +2,7 @@
"name": "@auto-it/bot-list",
"main": "dist/index.js",
"description": "A list of bots for auto plugins to ignore",
- "version": "11.0.4",
+ "version": "11.0.7",
"license": "MIT",
"author": {
"name": "Andrew Lisowski",
diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md
index ac24542a4..4d25084f3 100644
--- a/packages/cli/CHANGELOG.md
+++ b/packages/cli/CHANGELOG.md
@@ -1,3 +1,40 @@
+# v11.0.7 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- fix(npm): mark releases as latest with lerna [#2414](https://github.com/intuit/auto/pull/2414) ([@jazmon](https://github.com/jazmon))
+
+#### Authors: 1
+
+- Atte Huhtakangas ([@jazmon](https://github.com/jazmon))
+
+---
+
+# v11.0.6 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- NPM: Fix lerna version erroring with unknown registry arg [#2421](https://github.com/intuit/auto/pull/2421) ([@jackw](https://github.com/jackw))
+
+#### Authors: 1
+
+- Jack Westbrook ([@jackw](https://github.com/jackw))
+
+---
+
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/packages/cli/package.json b/packages/cli/package.json
index 52ea83822..24d050551 100644
--- a/packages/cli/package.json
+++ b/packages/cli/package.json
@@ -4,7 +4,7 @@
"main": "dist/bin/index.js",
"types": "dist/index.d.ts",
"description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels",
- "version": "11.0.4",
+ "version": "11.0.7",
"license": "MIT",
"author": {
"name": "Andrew Lisowski",
diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md
index cbf7c5b66..6cee6677c 100644
--- a/packages/core/CHANGELOG.md
+++ b/packages/core/CHANGELOG.md
@@ -1,3 +1,31 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+:tada: This release contains work from new contributors! :tada:
+
+Thanks for all your work!
+
+:heart: NiccolΓ² Olivieri Achille ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+:heart: NiccolΓ² Olivieri Achille ([@Zweer](https://github.com/Zweer))
+
+#### π Bug Fix
+
+- Fixing git `2.43.0` max number issue #2425 [#2426](https://github.com/intuit/auto/pull/2426) ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+- More timeout for the changelog test ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+- Fixing git `2.43.0` max number issue #2425 ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 3
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+- NiccolΓ² Olivieri Achille ([@NiccoloOlivieriAchille](https://github.com/NiccoloOlivieriAchille))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/packages/core/package.json b/packages/core/package.json
index 6230bd484..f5b53cf4d 100644
--- a/packages/core/package.json
+++ b/packages/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/core",
- "version": "11.0.4",
+ "version": "11.0.7",
"description": "Node API for using auto.",
"main": "dist/auto.js",
"license": "MIT",
diff --git a/packages/core/src/__tests__/auto-make-changelog.test.ts b/packages/core/src/__tests__/auto-make-changelog.test.ts
index 4511b552d..51ceccd47 100644
--- a/packages/core/src/__tests__/auto-make-changelog.test.ts
+++ b/packages/core/src/__tests__/auto-make-changelog.test.ts
@@ -80,5 +80,5 @@ describe("Auto", () => {
await auto.changelog({ from: "v1.0.0" });
expect(addToChangelog).toHaveBeenCalled();
- });
+ }, 10000);
});
diff --git a/packages/core/src/git.ts b/packages/core/src/git.ts
index 730443a59..09dccc6e2 100644
--- a/packages/core/src/git.ts
+++ b/packages/core/src/git.ts
@@ -367,9 +367,10 @@ export default class Git {
? await execPromise("git", ["rev-parse", start])
: "";
+ const maxNumber = 2147483647;
const log = await gitlog({
repo: process.cwd(),
- number: Number.MAX_SAFE_INTEGER,
+ number: maxNumber,
fields: ["hash", "authorName", "authorEmail", "rawBody"],
// If start === firstCommit then we want to include that commit in the changelog
// Otherwise it was that last release and should not be included in the release.
diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json
index 54beb973d..97fd5d374 100644
--- a/packages/package-json-utils/package.json
+++ b/packages/package-json-utils/package.json
@@ -3,7 +3,7 @@
"main": "dist/index.js",
"types": "dist/index.d.ts",
"description": "Shared utilities for parsing information from a package.json",
- "version": "11.0.4",
+ "version": "11.0.7",
"license": "MIT",
"author": {
"name": "Andrew Lisowski",
diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md
index 8c153e906..390d4e283 100644
--- a/plugins/all-contributors/CHANGELOG.md
+++ b/plugins/all-contributors/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json
index 330a2e082..56d0d2155 100644
--- a/plugins/all-contributors/package.json
+++ b/plugins/all-contributors/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/all-contributors",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Automatically add contributors as changelogs are produced.",
"license": "MIT",
diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md
index eefcd8c44..61faa2775 100644
--- a/plugins/brew/CHANGELOG.md
+++ b/plugins/brew/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/brew/package.json b/plugins/brew/package.json
index 19b60e7c2..4d0171d0d 100644
--- a/plugins/brew/package.json
+++ b/plugins/brew/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/brew",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Automate the creation of Homebrew formulae.",
"license": "MIT",
diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md
index b7f3843cb..54ffa41a4 100644
--- a/plugins/chrome/CHANGELOG.md
+++ b/plugins/chrome/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json
index 5bb7d104f..abb46f287 100644
--- a/plugins/chrome/package.json
+++ b/plugins/chrome/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/chrome",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Chrome publishing plugin for auto",
"license": "MIT",
diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md
index bd583568e..d98cd18aa 100644
--- a/plugins/cocoapods/CHANGELOG.md
+++ b/plugins/cocoapods/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json
index 1dc133953..b5bd2447f 100644
--- a/plugins/cocoapods/package.json
+++ b/plugins/cocoapods/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/cocoapods",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Use auto to version your cocoapod",
"license": "MIT",
diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md
index 02d73a27c..ac0fed031 100644
--- a/plugins/conventional-commits/CHANGELOG.md
+++ b/plugins/conventional-commits/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json
index 827c2b4dd..7b9bbc2b6 100644
--- a/plugins/conventional-commits/package.json
+++ b/plugins/conventional-commits/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/conventional-commits",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Conventional commit plugin for auto",
"license": "MIT",
diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md
index de0f82a97..2e9085e5c 100644
--- a/plugins/crates/CHANGELOG.md
+++ b/plugins/crates/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/crates/package.json b/plugins/crates/package.json
index 06094b8d7..cb48088aa 100644
--- a/plugins/crates/package.json
+++ b/plugins/crates/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/crates",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Deploy Rust crates to crates.io",
"license": "MIT",
diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md
index a64ced52a..624a488dc 100644
--- a/plugins/docker/CHANGELOG.md
+++ b/plugins/docker/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/docker/package.json b/plugins/docker/package.json
index f5ec90631..c6dab1eb3 100644
--- a/plugins/docker/package.json
+++ b/plugins/docker/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/docker",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Facilitates publishing built images to a Docker Registry.",
"license": "MIT",
diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md
index 2879dd052..90206afbf 100644
--- a/plugins/exec/CHANGELOG.md
+++ b/plugins/exec/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/exec/package.json b/plugins/exec/package.json
index a7ce0055d..3137f3803 100644
--- a/plugins/exec/package.json
+++ b/plugins/exec/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/exec",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Tap into select hooks and run a command on the terminal",
"license": "MIT",
diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md
index 04f307069..631dffe03 100644
--- a/plugins/first-time-contributor/CHANGELOG.md
+++ b/plugins/first-time-contributor/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json
index 6b990daae..97836cb82 100644
--- a/plugins/first-time-contributor/package.json
+++ b/plugins/first-time-contributor/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/first-time-contributor",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Thank first time contributors for their work right in your release notes.",
"license": "MIT",
diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md
index 10022ad3c..ac863ec4e 100644
--- a/plugins/gem/CHANGELOG.md
+++ b/plugins/gem/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/gem/package.json b/plugins/gem/package.json
index 8a0fc8ff8..e26d290a5 100644
--- a/plugins/gem/package.json
+++ b/plugins/gem/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/gem",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "",
"license": "MIT",
diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md
index 98a568fbb..a5ac22546 100644
--- a/plugins/gh-pages/CHANGELOG.md
+++ b/plugins/gh-pages/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json
index 8bcb66bb9..52cac1241 100644
--- a/plugins/gh-pages/package.json
+++ b/plugins/gh-pages/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/gh-pages",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Automate publishing to your gh-pages documentation website",
"license": "MIT",
diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md
index 0e8968539..094cf09af 100644
--- a/plugins/git-tag/CHANGELOG.md
+++ b/plugins/git-tag/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json
index 60917ed19..d258c79db 100644
--- a/plugins/git-tag/package.json
+++ b/plugins/git-tag/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/git-tag",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Manage your projects version through just a git tag",
"license": "MIT",
diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md
index 9bd6a09fd..40c79b847 100644
--- a/plugins/gradle/CHANGELOG.md
+++ b/plugins/gradle/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json
index e4e6fb5f9..c3a0c5964 100644
--- a/plugins/gradle/package.json
+++ b/plugins/gradle/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/gradle",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "A plugin that calls gradle-release-plugin with versioning information.",
"license": "MIT",
diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md
index a6f445392..a060f0c73 100644
--- a/plugins/jira/CHANGELOG.md
+++ b/plugins/jira/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/jira/package.json b/plugins/jira/package.json
index e30aed69b..68ff3aa99 100644
--- a/plugins/jira/package.json
+++ b/plugins/jira/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/jira",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Jira plugin for auto",
"license": "MIT",
diff --git a/plugins/magic-zero/CHANGELOG.md b/plugins/magic-zero/CHANGELOG.md
index 6586aa0a2..ea2a96065 100644
--- a/plugins/magic-zero/CHANGELOG.md
+++ b/plugins/magic-zero/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json
index 9cdc3c310..2dd3463e5 100644
--- a/plugins/magic-zero/package.json
+++ b/plugins/magic-zero/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/magic-zero",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases",
"license": "MIT",
diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md
index a2889287b..5735b8d57 100644
--- a/plugins/maven/CHANGELOG.md
+++ b/plugins/maven/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/maven/package.json b/plugins/maven/package.json
index 3390c8e5b..a9a825fa0 100644
--- a/plugins/maven/package.json
+++ b/plugins/maven/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/maven",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Maven publishing plugin for auto",
"license": "MIT",
diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md
index 38f0c811c..562a111a6 100644
--- a/plugins/microsoft-teams/CHANGELOG.md
+++ b/plugins/microsoft-teams/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json
index 83f8a8165..889d6465e 100644
--- a/plugins/microsoft-teams/package.json
+++ b/plugins/microsoft-teams/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/microsoft-teams",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Microsoft Teams plugin for auto",
"license": "MIT",
diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md
index 901aeff3b..6b7955b3a 100644
--- a/plugins/npm/CHANGELOG.md
+++ b/plugins/npm/CHANGELOG.md
@@ -1,3 +1,47 @@
+# v11.0.7 (Thu Feb 22 2024)
+
+:tada: This release contains work from a new contributor! :tada:
+
+Thank you, Atte Huhtakangas ([@jazmon](https://github.com/jazmon)), for all your work!
+
+#### π Bug Fix
+
+- fix(npm): mark releases as latest with lerna [#2414](https://github.com/intuit/auto/pull/2414) ([@jazmon](https://github.com/jazmon))
+- fix(npm): don't mark release as latest if in old version branch ([@jazmon](https://github.com/jazmon))
+- fix(npm): mark releases as latest with lerna ([@jazmon](https://github.com/jazmon))
+
+#### Authors: 1
+
+- Atte Huhtakangas ([@jazmon](https://github.com/jazmon))
+
+---
+
+# v11.0.6 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- NPM: Fix lerna version erroring with unknown registry arg [#2421](https://github.com/intuit/auto/pull/2421) ([@jackw](https://github.com/jackw))
+- fix(npm): prevent lerna version erroring with unknown registry arg ([@jackw](https://github.com/jackw))
+
+#### Authors: 1
+
+- Jack Westbrook ([@jackw](https://github.com/jackw))
+
+---
+
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/npm/__tests__/npm.test.ts b/plugins/npm/__tests__/npm.test.ts
index 266417a7a..162eee718 100644
--- a/plugins/npm/__tests__/npm.test.ts
+++ b/plugins/npm/__tests__/npm.test.ts
@@ -50,8 +50,16 @@ const monorepoPackagesWithPrereleaseResult = [
{ path: "packages/c", name: "@packages/c", package: { version: "0.1.2" } },
{ path: "packages/d", name: "@packages/d", package: { version: "0.1.1" } },
// This can happen if a new module is published with a breaking version
- { path: "packages/e", name: "@packages/e", package: { version: "1.0.0-next.0" } },
- { path: "packages/f", name: "@packages/f", package: { version: "1.0.0-next.0" } },
+ {
+ path: "packages/e",
+ name: "@packages/e",
+ package: { version: "1.0.0-next.0" },
+ },
+ {
+ path: "packages/f",
+ name: "@packages/f",
+ package: { version: "1.0.0-next.0" },
+ },
];
const packageTemplate = ({
@@ -406,7 +414,7 @@ describe("getPreviousVersion", () => {
});
test("should ignore greatest published monorepo package in maintenance mode", async () => {
- execPromise.mockClear()
+ execPromise.mockClear();
mockFs({
"lerna.json": `
{
@@ -424,11 +432,10 @@ describe("getPreviousVersion", () => {
// published version of test package
execPromise.mockReturnValueOnce("2.1.0");
- jest.spyOn(Auto, 'getCurrentBranch').mockReturnValueOnce('major-2')
-
+ jest.spyOn(Auto, "getCurrentBranch").mockReturnValueOnce("major-2");
plugin.apply({
- config: { prereleaseBranches: ["next"], versionBranches: 'major-' },
+ config: { prereleaseBranches: ["next"], versionBranches: "major-" },
hooks,
remote: "origin",
baseBranch: "main",
@@ -436,9 +443,8 @@ describe("getPreviousVersion", () => {
prefixRelease: (str) => str,
} as Auto.Auto);
-
expect(await hooks.getPreviousVersion.promise()).toBe("1.5.0");
- expect(execPromise).not.toHaveBeenCalled()
+ expect(execPromise).not.toHaveBeenCalled();
});
});
@@ -681,7 +687,7 @@ describe("publish", () => {
"--yes",
"from-package",
"--exact",
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -704,7 +710,7 @@ describe("publish", () => {
"--yes",
"from-package",
false,
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -730,7 +736,7 @@ describe("publish", () => {
false,
"--legacy-auth",
"abcd",
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -755,7 +761,7 @@ describe("publish", () => {
false,
"--contents",
"dist/publish-folder",
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -1258,7 +1264,7 @@ describe("canary", () => {
"--no-git-reset",
"--no-git-tag-version",
"--exact",
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -1429,7 +1435,7 @@ describe("canary", () => {
"--no-git-reset",
"--no-git-tag-version",
"--exact",
- "--no-verify-access"
+ "--no-verify-access",
]);
});
@@ -1650,6 +1656,7 @@ describe("makeRelease", () => {
logger: dummyLog(),
prefixRelease: (str) => str,
git: { publish } as any,
+ inOldVersionBranch: (bool: boolean) => bool,
release: {
makeChangelog: () => ({
generateReleaseNotes: (commits: IExtendedCommit[]) =>
@@ -1661,6 +1668,7 @@ describe("makeRelease", () => {
await hooks.makeRelease.promise({
newVersion: "0.1.2",
from: "",
+ to: "",
isPrerelease: false,
fullReleaseNotes: "",
commits: [
@@ -1684,12 +1692,16 @@ describe("makeRelease", () => {
expect(publish).toHaveBeenCalledWith(
"update package 1",
"@packages/a",
- false
+ false,
+ undefined,
+ true
);
expect(publish).toHaveBeenCalledWith(
"update package 2",
"@packages/b",
- false
+ false,
+ undefined,
+ true
);
});
});
diff --git a/plugins/npm/package.json b/plugins/npm/package.json
index e3e61b63d..06a129ad6 100644
--- a/plugins/npm/package.json
+++ b/plugins/npm/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/npm",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "NPM publishing plugin for auto",
"license": "MIT",
diff --git a/plugins/npm/src/index.ts b/plugins/npm/src/index.ts
index e56dfe3d5..8c7a95d26 100644
--- a/plugins/npm/src/index.ts
+++ b/plugins/npm/src/index.ts
@@ -980,7 +980,6 @@ export default class NPMPlugin implements IPlugin {
"lerna",
"version",
useVersion || bump,
- ...(await getRegistryArgs()),
...getLegacyAuthArgs(this.legacyAuth, { isMonorepo: true }),
"--yes",
"--no-push",
@@ -1131,7 +1130,6 @@ export default class NPMPlugin implements IPlugin {
"lerna",
"version",
canaryVersion,
- ...(await getRegistryArgs()),
...getLegacyAuthArgs(this.legacyAuth, { isMonorepo: true }),
"--yes",
"--no-push",
@@ -1579,8 +1577,17 @@ export default class NPMPlugin implements IPlugin {
auto.logger.log.info(`Using release notes:\n${releaseNotes}`);
+ const isLatestRelease =
+ !options.isPrerelease || !auto.inOldVersionBranch();
+
// 2. make a release for just that package
- return auto.git?.publish(releaseNotes, tag, options.isPrerelease);
+ return auto.git?.publish(
+ releaseNotes,
+ tag,
+ options.isPrerelease,
+ undefined,
+ isLatestRelease
+ );
})
);
@@ -1604,8 +1611,10 @@ export default class NPMPlugin implements IPlugin {
await execPromise("npm", ["root"]);
} catch (error) {
if (
- // eslint-disable-next-line no-template-curly-in-string
- error.message?.includes("Failed to replace env in config: ${NPM_TOKEN}")
+ (error as Error).message?.includes(
+ // eslint-disable-next-line no-template-curly-in-string
+ "Failed to replace env in config: ${NPM_TOKEN}"
+ )
) {
auto.logger.log.error(endent`
Uh oh! It looks like you don\'t have a NPM_TOKEN available in your environment.
diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md
index eab9fce02..61e56266b 100644
--- a/plugins/omit-commits/CHANGELOG.md
+++ b/plugins/omit-commits/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json
index be0d2e684..3b4722ed6 100644
--- a/plugins/omit-commits/package.json
+++ b/plugins/omit-commits/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/omit-commits",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Omit commits plugin for auto",
"license": "MIT",
diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md
index d1dd46b32..cd4b8190f 100644
--- a/plugins/omit-release-notes/CHANGELOG.md
+++ b/plugins/omit-release-notes/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json
index 575586f7f..aa639553f 100644
--- a/plugins/omit-release-notes/package.json
+++ b/plugins/omit-release-notes/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/omit-release-notes",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Omit release notes plugin for auto",
"license": "MIT",
diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md
index f24bf024a..1d311a00f 100644
--- a/plugins/pr-body-labels/CHANGELOG.md
+++ b/plugins/pr-body-labels/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.4 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json
index e4481a1eb..5019264d3 100644
--- a/plugins/pr-body-labels/package.json
+++ b/plugins/pr-body-labels/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/pr-body-labels",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request",
"license": "MIT",
diff --git a/plugins/protected-branch/CHANGELOG.md b/plugins/protected-branch/CHANGELOG.md
index 2198ccdd7..812c187b0 100644
--- a/plugins/protected-branch/CHANGELOG.md
+++ b/plugins/protected-branch/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/protected-branch/package.json b/plugins/protected-branch/package.json
index 9915e56ea..cf7667be4 100644
--- a/plugins/protected-branch/package.json
+++ b/plugins/protected-branch/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/protected-branch",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Handle Github branch protections",
"license": "MIT",
diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md
index c14c67426..afe985b67 100644
--- a/plugins/released/CHANGELOG.md
+++ b/plugins/released/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/released/package.json b/plugins/released/package.json
index 22ca3b441..f879fe2a2 100644
--- a/plugins/released/package.json
+++ b/plugins/released/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/released",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Released plugin for auto. Comments with version + extra",
"license": "MIT",
diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md
index cab6af8f6..bccd0642e 100644
--- a/plugins/s3/CHANGELOG.md
+++ b/plugins/s3/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/s3/package.json b/plugins/s3/package.json
index 5e9bb6c95..d7de51228 100644
--- a/plugins/s3/package.json
+++ b/plugins/s3/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/s3",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Post your built artifacts to s3",
"license": "MIT",
diff --git a/plugins/sbt/CHANGELOG.md b/plugins/sbt/CHANGELOG.md
index 43c331b6b..6fa563822 100644
--- a/plugins/sbt/CHANGELOG.md
+++ b/plugins/sbt/CHANGELOG.md
@@ -1,3 +1,20 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π Bug Fix
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 ([@dependabot[bot]](https://github.com/dependabot[bot]))
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/sbt/package.json b/plugins/sbt/package.json
index 8b23b2538..05323ede6 100644
--- a/plugins/sbt/package.json
+++ b/plugins/sbt/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/sbt",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Publish Scala projects with sbt",
"license": "MIT",
@@ -42,7 +42,7 @@
"fp-ts": "^2.5.3",
"io-ts": "^2.1.2",
"semver": "^7.0.0",
- "strip-ansi": "^6.0.0",
+ "strip-ansi": "^7.0.1",
"tslib": "1.10.0"
}
}
diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md
index 37be74308..9f028d728 100644
--- a/plugins/slack/CHANGELOG.md
+++ b/plugins/slack/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/slack/package.json b/plugins/slack/package.json
index 48873416d..5d7a0a312 100644
--- a/plugins/slack/package.json
+++ b/plugins/slack/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/slack",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Slack plugin for auto",
"license": "MIT",
diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md
index 4f465f81a..255ea3b40 100644
--- a/plugins/twitter/CHANGELOG.md
+++ b/plugins/twitter/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json
index a380f5020..60a705a4c 100644
--- a/plugins/twitter/package.json
+++ b/plugins/twitter/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/twitter",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Twitter plugin for auto",
"license": "MIT",
diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md
index 2cd7cdcdc..36fa83481 100644
--- a/plugins/upload-assets/CHANGELOG.md
+++ b/plugins/upload-assets/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json
index 70d968ee7..a5f65214c 100644
--- a/plugins/upload-assets/package.json
+++ b/plugins/upload-assets/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/upload-assets",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Upload assets plugin for auto",
"license": "MIT",
diff --git a/plugins/version-file/CHANGELOG.md b/plugins/version-file/CHANGELOG.md
index 03433add1..5622faa81 100644
--- a/plugins/version-file/CHANGELOG.md
+++ b/plugins/version-file/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/version-file/package.json b/plugins/version-file/package.json
index d9f8b22cb..eb14febf9 100644
--- a/plugins/version-file/package.json
+++ b/plugins/version-file/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/version-file",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "",
"license": "MIT",
diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md
index 86476f23e..93587aebc 100644
--- a/plugins/vscode/CHANGELOG.md
+++ b/plugins/vscode/CHANGELOG.md
@@ -1,3 +1,16 @@
+# v11.0.5 (Thu Feb 22 2024)
+
+#### π© Dependency Updates
+
+- Bump strip-ansi from 6.0.0 to 7.0.1 [#2307](https://github.com/intuit/auto/pull/2307) ([@dependabot[bot]](https://github.com/dependabot[bot]) [@hipstersmoothie](https://github.com/hipstersmoothie))
+
+#### Authors: 2
+
+- [@dependabot[bot]](https://github.com/dependabot[bot])
+- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie))
+
+---
+
# v11.0.3 (Sun Sep 10 2023)
#### π Bug Fix
diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json
index 093a7e572..ed7e92b21 100644
--- a/plugins/vscode/package.json
+++ b/plugins/vscode/package.json
@@ -1,6 +1,6 @@
{
"name": "@auto-it/vscode",
- "version": "11.0.4",
+ "version": "11.0.7",
"main": "dist/index.js",
"description": "Publish an vscode extension",
"license": "MIT",
diff --git a/yarn.lock b/yarn.lock
index 8b90968d2..590716c12 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -13,10 +13,10 @@
integrity sha512-K1kQv1BZVtMXQqdpNZt9Pgh85KwamsWX9gYyq1xG4cpyb+EacfMiNfumrju16piFXanCUrCR0P1DowPjV2qV/A==
"@auto-it/bot-list@link:packages/bot-list":
- version "10.46.0"
+ version "11.0.1"
"@auto-it/core@link:packages/core":
- version "10.46.0"
+ version "11.0.1"
dependencies:
"@auto-it/bot-list" "link:packages/bot-list"
"@endemolshinegroup/cosmiconfig-typescript-loader" "^3.0.2"
@@ -60,7 +60,7 @@
url-join "^4.0.0"
"@auto-it/npm@link:plugins/npm":
- version "10.46.0"
+ version "11.0.1"
dependencies:
"@auto-it/core" "link:packages/core"
"@auto-it/package-json-utils" "link:packages/package-json-utils"
@@ -78,13 +78,13 @@
user-home "^2.0.0"
"@auto-it/package-json-utils@link:packages/package-json-utils":
- version "10.46.0"
+ version "11.0.1"
dependencies:
parse-author "^2.0.0"
parse-github-url "1.0.2"
"@auto-it/released@link:plugins/released":
- version "10.46.0"
+ version "11.0.1"
dependencies:
"@auto-it/bot-list" "link:packages/bot-list"
"@auto-it/core" "link:packages/core"
@@ -94,7 +94,7 @@
tslib "2.1.0"
"@auto-it/version-file@link:plugins/version-file":
- version "10.46.0"
+ version "11.0.1"
dependencies:
"@auto-it/core" "link:packages/core"
fp-ts "^2.5.3"
@@ -14139,9 +14139,9 @@ strip-ansi@^4.0.0:
ansi-regex "^3.0.0"
strip-ansi@^7.0.1:
- version "7.1.0"
- resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45"
- integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+ version "7.0.1"
+ resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.0.1.tgz#61740a08ce36b61e50e65653f07060d000975fb2"
+ integrity sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==
dependencies:
ansi-regex "^6.0.1"