From d1d28accba13826a0f87e293f4153436628cea99 Mon Sep 17 00:00:00 2001 From: Joost van der Waal Date: Thu, 15 Aug 2024 21:29:20 +0200 Subject: [PATCH] feat: Renamed gitversion to gitbump --- .eslintignore | 9 - .eslintrc.js | 18 - .github/workflows/publish-packages.yml | 12 +- .gitignore | 2 +- .gitversion.cjs | 8 +- CHANGELOG.md | 256 +-- CONTRIBUTION.md | 26 +- README.md | 36 +- docs/.vitepress/config.mts | 4 +- docs/index.md | 2 +- docs/reference/configuration.md | 16 +- docs/sidebar.mjs | 2 +- docs/tutorials/getting-started.md | 16 +- eslint.config.js | 27 + package.json | 14 +- .../gitbump-plugin-s3publish/CHANGELOG.md | 83 + .../gitbump-plugin-s3publish/README.md | 1 + .../package.json | 8 +- .../src/index.ts | 0 .../src/s3publish._test_.ts | 0 .../src/s3publish.ts | 8 +- .../tsconfig.json | 0 workspaces/packages/gitbump/CHANGELOG.md | 549 +++++++ .../packages/{gitversion => gitbump}/LICENSE | 0 .../{gitversion => gitbump}/README.md | 36 +- .../assets/pipeline.png | Bin .../{gitversion => gitbump}/assets/reset.png | Bin .../assets/restore.png | Bin .../bin/index-typescript.js | 0 .../{gitversion => gitbump}/bin/index.js | 0 .../{gitversion => gitbump}/package.json | 8 +- .../{gitversion => gitbump}/src/bin.ts | 0 .../src/commands/bump.ts | 0 .../src/commands/check.ts | 0 .../src/commands/context.ts | 0 .../src/commands/pack.ts | 2 +- .../src/commands/publish.ts | 0 .../src/commands/reset.ts | 0 .../src/commands/restore.ts | 0 .../src/core/application._test_.ts | 0 .../src/core/application.ts | 0 .../src/core/bump-manifest.ts | 0 .../src/core/bump-utils._test_.ts | 0 .../src/core/bump-utils.ts | 2 +- .../src/core/changelog._test_.ts | 0 .../src/core/changelog.ts | 0 .../src/core/configuration.ts | 8 +- .../src/core/constants.ts | 0 .../core/conventional-commmit-utils._test_.ts | 0 .../src/core/conventional-commmit-utils.ts | 0 .../src/core/error-utils.ts | 0 .../src/core/executor.ts | 0 .../src/core/format-utils.ts | 2 +- .../{gitversion => gitbump}/src/core/git.ts | 0 .../src/core/log-reporter-platform.ts | 0 .../src/core/log-reporter.ts | 0 .../src/core/markdown.ts | 0 .../src/core/pack-artifact.ts | 0 .../src/core/plugin-manager.ts | 0 .../src/core/type-utils.ts | 0 .../src/core/version-utils._test_.ts | 0 .../src/core/version-utils.ts | 0 .../src/core/workspace-utils.ts | 0 .../{gitversion => gitbump}/src/index.ts | 0 .../embedded/git/azure-devops._test_.ts | 0 .../src/plugins/embedded/git/azure-devops.ts | 0 .../src/plugins/embedded/git/default.ts | 0 .../src/plugins/embedded/git/github._test_.ts | 2 +- .../src/plugins/embedded/git/github.ts | 2 +- .../src/plugins/embedded/git/index.ts | 0 .../src/plugins/embedded/index.ts | 0 .../src/plugins/embedded/node/index.ts | 0 .../src/plugins/embedded/node/node-project.ts | 0 .../src/plugins/embedded/node/npm.ts | 2 +- .../src/plugins/embedded/node/pnpm.ts | 0 .../src/plugins/embedded/node/yarn.ts | 2 +- .../src/plugins/external/index.ts | 0 .../src/plugins/external/ms-teams-payload.ts | 0 .../src/plugins/external/ms-teams.ts | 0 .../src/plugins/index.ts | 0 .../src/test/version-branch.ts | 0 .../{gitversion => gitbump}/tsconfig.json | 0 .../gitversion-plugin-s3publish/CHANGELOG.md | 83 - .../gitversion-plugin-s3publish/README.md | 1 - workspaces/packages/gitversion/CHANGELOG.md | 549 ------- .../test-package-a-private/package.json | 4 +- .../packages/test-package-a/CHANGELOG.md | 104 +- .../packages/test-package-a/package.json | 4 +- .../packages/test-package-b/CHANGELOG.md | 104 +- .../packages/test-package-b/package.json | 4 +- yarn.config.cjs | 2 +- yarn.lock | 1366 +++++++++++------ 92 files changed, 1948 insertions(+), 1436 deletions(-) delete mode 100644 .eslintignore delete mode 100644 .eslintrc.js create mode 100644 eslint.config.js create mode 100644 workspaces/packages/gitbump-plugin-s3publish/CHANGELOG.md create mode 100644 workspaces/packages/gitbump-plugin-s3publish/README.md rename workspaces/packages/{gitversion-plugin-s3publish => gitbump-plugin-s3publish}/package.json (77%) rename workspaces/packages/{gitversion-plugin-s3publish => gitbump-plugin-s3publish}/src/index.ts (100%) rename workspaces/packages/{gitversion-plugin-s3publish => gitbump-plugin-s3publish}/src/s3publish._test_.ts (100%) rename workspaces/packages/{gitversion-plugin-s3publish => gitbump-plugin-s3publish}/src/s3publish.ts (90%) rename workspaces/packages/{gitversion-plugin-s3publish => gitbump-plugin-s3publish}/tsconfig.json (100%) create mode 100644 workspaces/packages/gitbump/CHANGELOG.md rename workspaces/packages/{gitversion => gitbump}/LICENSE (100%) rename workspaces/packages/{gitversion => gitbump}/README.md (72%) rename workspaces/packages/{gitversion => gitbump}/assets/pipeline.png (100%) rename workspaces/packages/{gitversion => gitbump}/assets/reset.png (100%) rename workspaces/packages/{gitversion => gitbump}/assets/restore.png (100%) rename workspaces/packages/{gitversion => gitbump}/bin/index-typescript.js (100%) rename workspaces/packages/{gitversion => gitbump}/bin/index.js (100%) rename workspaces/packages/{gitversion => gitbump}/package.json (88%) rename workspaces/packages/{gitversion => gitbump}/src/bin.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/bump.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/check.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/context.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/pack.ts (98%) rename workspaces/packages/{gitversion => gitbump}/src/commands/publish.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/reset.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/commands/restore.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/application._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/application.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/bump-manifest.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/bump-utils._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/bump-utils.ts (98%) rename workspaces/packages/{gitversion => gitbump}/src/core/changelog._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/changelog.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/configuration.ts (92%) rename workspaces/packages/{gitversion => gitbump}/src/core/constants.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/conventional-commmit-utils._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/conventional-commmit-utils.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/error-utils.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/executor.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/format-utils.ts (98%) rename workspaces/packages/{gitversion => gitbump}/src/core/git.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/log-reporter-platform.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/log-reporter.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/markdown.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/pack-artifact.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/plugin-manager.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/type-utils.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/version-utils._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/version-utils.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/core/workspace-utils.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/azure-devops._test_.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/azure-devops.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/default.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/github._test_.ts (78%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/github.ts (95%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/git/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/node/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/node/node-project.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/node/npm.ts (99%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/node/pnpm.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/embedded/node/yarn.ts (94%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/external/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/external/ms-teams-payload.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/external/ms-teams.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/plugins/index.ts (100%) rename workspaces/packages/{gitversion => gitbump}/src/test/version-branch.ts (100%) rename workspaces/packages/{gitversion => gitbump}/tsconfig.json (100%) delete mode 100644 workspaces/packages/gitversion-plugin-s3publish/CHANGELOG.md delete mode 100644 workspaces/packages/gitversion-plugin-s3publish/README.md delete mode 100644 workspaces/packages/gitversion/CHANGELOG.md diff --git a/.eslintignore b/.eslintignore deleted file mode 100644 index 0cb70f7..0000000 --- a/.eslintignore +++ /dev/null @@ -1,9 +0,0 @@ -dist -lib -*.d.ts -.yarn -coverage -*.json -*.tsbuildinfo -*.lock -cdk.out \ No newline at end of file diff --git a/.eslintrc.js b/.eslintrc.js deleted file mode 100644 index 1f0f9f6..0000000 --- a/.eslintrc.js +++ /dev/null @@ -1,18 +0,0 @@ -/* eslint-disable @typescript-eslint/naming-convention */ -/** @type {import('eslint').Linter.BaseConfig} */ -module.exports = { - extends: [ - '@cp-utils/eslint-config', - ], - overrides: [{ - files: ['workspaces/utils/eslint-config/**'], - rules: { - '@typescript-eslint/naming-convention': 0, - }, - }, { - files: ['**/package.json'], - rules: { - 'eol-last': [2, 'always'], - }, - }], -}; diff --git a/.github/workflows/publish-packages.yml b/.github/workflows/publish-packages.yml index 6c2afac..5889906 100644 --- a/.github/workflows/publish-packages.yml +++ b/.github/workflows/publish-packages.yml @@ -26,7 +26,7 @@ jobs: run: yarn - name: Bump - run: yarn gitversion bump + run: yarn gitbump bump - name: Build 🔧 run: yarn build:all @@ -38,10 +38,10 @@ jobs: role-session-name: upload-docs aws-region: eu-west-1 - - name: Publish - run: yarn gitversion publish - env: - NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} - YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} + # - name: Publish + # run: yarn gitbump publish + # env: + # NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} + # YARN_NPM_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }} diff --git a/.gitignore b/.gitignore index f328117..04c1264 100644 --- a/.gitignore +++ b/.gitignore @@ -12,7 +12,7 @@ #!.yarn/cache .pnp.* coverage -gitversion.out +gitbump.out lib tsconfig.tsbuildinfo diff --git a/.gitversion.cjs b/.gitversion.cjs index 22ff2f8..97e7fa0 100644 --- a/.gitversion.cjs +++ b/.gitversion.cjs @@ -1,5 +1,5 @@ -const { defineConfig } = require("@cp-utils/gitversion"); -const { S3Publish } = require('@cp-utils/gitversion-s3publish'); +const { defineConfig } = require("gitbump"); +const { S3Publish } = require('gitbump-s3publish'); module.exports = defineConfig({ independentVersioning: false, @@ -9,8 +9,8 @@ module.exports = defineConfig({ bucketName: 'www-cputils-com-website-docspublishbucket31a61f6d-pixklxvi0wye', baseFolder: 'docs', fileNameTemplate: [ - 'gitversion/{version.major}.{version.minor}.x.zip', - 'gitversion/{releaseChannel}.zip', + 'gitbump/{version.major}.{version.minor}.x.zip', + 'gitbump/{releaseChannel}.zip', ], exclude: [ ".vitepress", diff --git a/CHANGELOG.md b/CHANGELOG.md index 3374a1d..1eb2664 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,381 +4,381 @@ All notable changes to this project will be documented in this file -## [0.0.50](https://github.com/cp-utils/gitversion/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) +## [0.0.50](https://github.com/jwpkg/gitbump/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) ### chore -* Incorrect email ([2b3b919](https://github.com/cp-utils/gitversion/commit/2b3b91994683174a89ba82122aaf9216f9001ec0)) +* Incorrect email ([2b3b919](https://github.com/jwpkg/gitbump/commit/2b3b91994683174a89ba82122aaf9216f9001ec0)) ### chroe -* Changed unit tests ([6d05d4c](https://github.com/cp-utils/gitversion/commit/6d05d4c4d4466d2c42b019bde5996bee5d86ad38)) +* Changed unit tests ([6d05d4c](https://github.com/jwpkg/gitbump/commit/6d05d4c4d4466d2c42b019bde5996bee5d86ad38)) ### feat -* Added push changelogs options for features (#39) ([d5e1e7c](https://github.com/cp-utils/gitversion/commit/d5e1e7c0dd3f6a548c2f81f8e1e7f31c8bc33b81)) +* Added push changelogs options for features (#39) ([d5e1e7c](https://github.com/jwpkg/gitbump/commit/d5e1e7c0dd3f6a548c2f81f8e1e7f31c8bc33b81)) -## [0.0.49](https://github.com/cp-utils/gitversion/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) +## [0.0.49](https://github.com/jwpkg/gitbump/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) ### feat -* Added debug logging on errors ([77a6886](https://github.com/cp-utils/gitversion/commit/77a6886f8674eefe3dd55769e2aee78a46c1e80b)) +* Added debug logging on errors ([77a6886](https://github.com/jwpkg/gitbump/commit/77a6886f8674eefe3dd55769e2aee78a46c1e80b)) ### fix -* Cli handling ([a77368c](https://github.com/cp-utils/gitversion/commit/a77368c8019d380b98cb6d9b4a3a2ccacbfdd026)) +* Cli handling ([a77368c](https://github.com/jwpkg/gitbump/commit/a77368c8019d380b98cb6d9b4a3a2ccacbfdd026)) -## [0.0.48](https://github.com/cp-utils/gitversion/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) +## [0.0.48](https://github.com/jwpkg/gitbump/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) ### fix -* **azure** Fixed merge header detection ([e85bdbd](https://github.com/cp-utils/gitversion/commit/e85bdbd6b5e4da4c46325136ccb56d150a077a8f)) +* **azure** Fixed merge header detection ([e85bdbd](https://github.com/jwpkg/gitbump/commit/e85bdbd6b5e4da4c46325136ccb56d150a077a8f)) -## [0.0.47](https://github.com/cp-utils/gitversion/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) +## [0.0.47](https://github.com/jwpkg/gitbump/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) ### fix -* Moved unshallow to restore step ([c08f211](https://github.com/cp-utils/gitversion/commit/c08f211cf66b2603b66c9215090ddeb326764c87)) +* Moved unshallow to restore step ([c08f211](https://github.com/jwpkg/gitbump/commit/c08f211cf66b2603b66c9215090ddeb326764c87)) -## [0.0.46](https://github.com/cp-utils/gitversion/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) +## [0.0.46](https://github.com/jwpkg/gitbump/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) ### fix -* **yarn** Update workspace version before publish ([82834e9](https://github.com/cp-utils/gitversion/commit/82834e9450882f769c458d3f4816349c65bb7873)) +* **yarn** Update workspace version before publish ([82834e9](https://github.com/jwpkg/gitbump/commit/82834e9450882f769c458d3f4816349c65bb7873)) -## [0.0.45](https://github.com/cp-utils/gitversion/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) +## [0.0.45](https://github.com/jwpkg/gitbump/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) ### fix -* Use default access ([c64646c](https://github.com/cp-utils/gitversion/commit/c64646c87b7e665f6c1b24690cd380076520b858)) +* Use default access ([c64646c](https://github.com/jwpkg/gitbump/commit/c64646c87b7e665f6c1b24690cd380076520b858)) -* reverted access change ([95dfa8d](https://github.com/cp-utils/gitversion/commit/95dfa8dc29b57525f8512d8abf7bedb5118f85bf)) +* reverted access change ([95dfa8d](https://github.com/jwpkg/gitbump/commit/95dfa8dc29b57525f8512d8abf7bedb5118f85bf)) -## [0.0.44](https://github.com/cp-utils/gitversion/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) +## [0.0.44](https://github.com/jwpkg/gitbump/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) ### fix -* Added debug info ([5365748](https://github.com/cp-utils/gitversion/commit/5365748280a8ea0a891b61f6c60f7351a713c036)) +* Added debug info ([5365748](https://github.com/jwpkg/gitbump/commit/5365748280a8ea0a891b61f6c60f7351a713c036)) -## [0.0.43](https://github.com/cp-utils/gitversion/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) +## [0.0.43](https://github.com/jwpkg/gitbump/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) ### fix -* **bump** Unshallowing ([13a7461](https://github.com/cp-utils/gitversion/commit/13a746171657b92dded6c410c313e5456682a4cd)) +* **bump** Unshallowing ([13a7461](https://github.com/jwpkg/gitbump/commit/13a746171657b92dded6c410c313e5456682a4cd)) -## [0.0.42](https://github.com/cp-utils/gitversion/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) +## [0.0.42](https://github.com/jwpkg/gitbump/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) ### fix -* **azuredevops** Current branch from environment ([d220a00](https://github.com/cp-utils/gitversion/commit/d220a00d9ea2f72bfed0035720b31a4d92cdeb14)) +* **azuredevops** Current branch from environment ([d220a00](https://github.com/jwpkg/gitbump/commit/d220a00d9ea2f72bfed0035720b31a4d92cdeb14)) -## [0.0.41](https://github.com/cp-utils/gitversion/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) +## [0.0.41](https://github.com/jwpkg/gitbump/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) ### feat -* **config** Added git flags ([dce7bc8](https://github.com/cp-utils/gitversion/commit/dce7bc8a695d3fa103805de6fdf1ac4a92abaf55)) +* **config** Added git flags ([dce7bc8](https://github.com/jwpkg/gitbump/commit/dce7bc8a695d3fa103805de6fdf1ac4a92abaf55)) ### fix -* Default values ([f4e8646](https://github.com/cp-utils/gitversion/commit/f4e864670c72afe3761921609be9687fd3392987)) +* Default values ([f4e8646](https://github.com/jwpkg/gitbump/commit/f4e864670c72afe3761921609be9687fd3392987)) -* Tests ([1e17c1d](https://github.com/cp-utils/gitversion/commit/1e17c1decb1c87f7b4ff7616e7576cbceb6bacbd)) +* Tests ([1e17c1d](https://github.com/jwpkg/gitbump/commit/1e17c1decb1c87f7b4ff7616e7576cbceb6bacbd)) -## [0.0.40](https://github.com/cp-utils/gitversion/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) +## [0.0.40](https://github.com/jwpkg/gitbump/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) ### fix -* Don't reset after pack for now ([2c9d27a](https://github.com/cp-utils/gitversion/commit/2c9d27ae19a3bde1eb45bc2f1965c5217a03902d)) +* Don't reset after pack for now ([2c9d27a](https://github.com/jwpkg/gitbump/commit/2c9d27ae19a3bde1eb45bc2f1965c5217a03902d)) -## [0.0.39](https://github.com/cp-utils/gitversion/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) +## [0.0.39](https://github.com/jwpkg/gitbump/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) ### fix -* Don't crash on non-existent node manifest ([00c4a01](https://github.com/cp-utils/gitversion/commit/00c4a011a60c6f3fecf1e813689147488a3887c9)) +* Don't crash on non-existent node manifest ([00c4a01](https://github.com/jwpkg/gitbump/commit/00c4a011a60c6f3fecf1e813689147488a3887c9)) -* Changed back dry run ([f17be45](https://github.com/cp-utils/gitversion/commit/f17be4534b1939a4d68d959a8750aefa0328be60)) +* Changed back dry run ([f17be45](https://github.com/jwpkg/gitbump/commit/f17be4534b1939a4d68d959a8750aefa0328be60)) -* Added error reporting details ([337764e](https://github.com/cp-utils/gitversion/commit/337764e48e68c2727c15aa6e3926e9dc35f33c54)) +* Added error reporting details ([337764e](https://github.com/jwpkg/gitbump/commit/337764e48e68c2727c15aa6e3926e9dc35f33c54)) ### docs -* Updated docs with configuration ([ffdd7b4](https://github.com/cp-utils/gitversion/commit/ffdd7b48f8ff1892874393330c37121f258f7c64)) +* Updated docs with configuration ([ffdd7b4](https://github.com/jwpkg/gitbump/commit/ffdd7b48f8ff1892874393330c37121f258f7c64)) ### feat -* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/cp-utils/gitversion/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) +* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/jwpkg/gitbump/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) -## [0.0.38](https://github.com/cp-utils/gitversion/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) +## [0.0.38](https://github.com/jwpkg/gitbump/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) ### feat -* Added release channel support for S3 plugin ([c890b0d](https://github.com/cp-utils/gitversion/commit/c890b0dc53c37e639e615771350d0d369dd1c8d1)) +* Added release channel support for S3 plugin ([c890b0d](https://github.com/jwpkg/gitbump/commit/c890b0dc53c37e639e615771350d0d369dd1c8d1)) -* Added exclusion ([4992c46](https://github.com/cp-utils/gitversion/commit/4992c46f518924aabc565b18904fab688d1e70b5)) +* Added exclusion ([4992c46](https://github.com/jwpkg/gitbump/commit/4992c46f518924aabc565b18904fab688d1e70b5)) -* Added sidebar to docs ([51316aa](https://github.com/cp-utils/gitversion/commit/51316aa9258a8fad5bf04fd4847641152cac13c4)) +* Added sidebar to docs ([51316aa](https://github.com/jwpkg/gitbump/commit/51316aa9258a8fad5bf04fd4847641152cac13c4)) -## [0.0.37](https://github.com/cp-utils/gitversion/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) +## [0.0.37](https://github.com/jwpkg/gitbump/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) ### feat -* Latest docs ([c8d8a14](https://github.com/cp-utils/gitversion/commit/c8d8a14879c34350abfa8a408dc038eba3cbd569)) +* Latest docs ([c8d8a14](https://github.com/jwpkg/gitbump/commit/c8d8a14879c34350abfa8a408dc038eba3cbd569)) -## [0.0.36](https://github.com/cp-utils/gitversion/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) +## [0.0.36](https://github.com/jwpkg/gitbump/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) ### feat -* Added S3 publish plugin ([5c28685](https://github.com/cp-utils/gitversion/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) +* Added S3 publish plugin ([5c28685](https://github.com/jwpkg/gitbump/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) ### chore -* Fixed pipeline ([d1101b7](https://github.com/cp-utils/gitversion/commit/d1101b7966250ac7199042abea50a22f7ba1f2ac)) +* Fixed pipeline ([d1101b7](https://github.com/jwpkg/gitbump/commit/d1101b7966250ac7199042abea50a22f7ba1f2ac)) -## [0.0.35](https://github.com/cp-utils/gitversion/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) +## [0.0.35](https://github.com/jwpkg/gitbump/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) ### docs -* Added branch explanations ([a663bfa](https://github.com/cp-utils/gitversion/commit/a663bfa503d6294196603f6f4579ddf3bc202c75)) +* Added branch explanations ([a663bfa](https://github.com/jwpkg/gitbump/commit/a663bfa503d6294196603f6f4579ddf3bc202c75)) ### chore -* Removed [bot] from push back git name ([ed48e5a](https://github.com/cp-utils/gitversion/commit/ed48e5a85a6e5493c4753bad08ef9475dc67908a)) +* Removed [bot] from push back git name ([ed48e5a](https://github.com/jwpkg/gitbump/commit/ed48e5a85a6e5493c4753bad08ef9475dc67908a)) ### feat -* Added additional branch detection patterns ([2ceba48](https://github.com/cp-utils/gitversion/commit/2ceba48b43367d931f99e0e4737b845392058508)) +* Added additional branch detection patterns ([2ceba48](https://github.com/jwpkg/gitbump/commit/2ceba48b43367d931f99e0e4737b845392058508)) -## [0.0.34](https://github.com/cp-utils/gitversion/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) +## [0.0.34](https://github.com/jwpkg/gitbump/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) ### docs -* Add contribution docs ([96ae793](https://github.com/cp-utils/gitversion/commit/96ae79301f0a245ab67344554eef55a3a71f302a)) +* Add contribution docs ([96ae793](https://github.com/jwpkg/gitbump/commit/96ae79301f0a245ab67344554eef55a3a71f302a)) ### fix -* user email ([994db2a](https://github.com/cp-utils/gitversion/commit/994db2a7b3429249357d0bfdf1ba5da5ca1324a5)) +* user email ([994db2a](https://github.com/jwpkg/gitbump/commit/994db2a7b3429249357d0bfdf1ba5da5ca1324a5)) -## [0.0.33](https://github.com/cp-utils/gitversion/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) +## [0.0.33](https://github.com/jwpkg/gitbump/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) ### feat -* Added git credentials ([a2d548c](https://github.com/cp-utils/gitversion/commit/a2d548c4d0740cdb5f18009cca5d14ee16512ac3)) +* Added git credentials ([a2d548c](https://github.com/jwpkg/gitbump/commit/a2d548c4d0740cdb5f18009cca5d14ee16512ac3)) -## [0.0.32](https://github.com/cp-utils/gitversion/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) +## [0.0.32](https://github.com/jwpkg/gitbump/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) ### feat -* testing with push back from detached head ([a69435d](https://github.com/cp-utils/gitversion/commit/a69435d38f0bd0c328f178b105f6bab62f5117c9)) +* testing with push back from detached head ([a69435d](https://github.com/jwpkg/gitbump/commit/a69435d38f0bd0c328f178b105f6bab62f5117c9)) -## [0.0.31](https://github.com/cp-utils/gitversion/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) +## [0.0.31](https://github.com/jwpkg/gitbump/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) ### feat -* Multiple main branch patterns accepted to make it more autodetect ([16a7b23](https://github.com/cp-utils/gitversion/commit/16a7b2323ab06aad34be979665563ffe7916b137)) +* Multiple main branch patterns accepted to make it more autodetect ([16a7b23](https://github.com/jwpkg/gitbump/commit/16a7b2323ab06aad34be979665563ffe7916b137)) ### fix -* unit test ([37f7a6e](https://github.com/cp-utils/gitversion/commit/37f7a6ecd8e127fc071284a06d067bbf02c9fcf4)) +* unit test ([37f7a6e](https://github.com/jwpkg/gitbump/commit/37f7a6ecd8e127fc071284a06d067bbf02c9fcf4)) -## [0.0.30](https://github.com/cp-utils/gitversion/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) +## [0.0.30](https://github.com/jwpkg/gitbump/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) ### feat -* Max concurrent pack commands ([1c699a2](https://github.com/cp-utils/gitversion/commit/1c699a245dc2a9e7fa04d0cb00a50628246c174f)) +* Max concurrent pack commands ([1c699a2](https://github.com/jwpkg/gitbump/commit/1c699a245dc2a9e7fa04d0cb00a50628246c174f)) -## [0.0.29](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) +## [0.0.29](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) ### feat -* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/cp-utils/gitversion/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) +* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/jwpkg/gitbump/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) -## [0.0.29-gh-35.0](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) +## [0.0.29-gh-35.0](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) -## [0.0.28](https://github.com/cp-utils/gitversion/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) +## [0.0.28](https://github.com/jwpkg/gitbump/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) ### fix -* branch lookup ([b44f6cc](https://github.com/cp-utils/gitversion/commit/b44f6ccc893bdb20ca465280220ba3c6e2ab5795)) +* branch lookup ([b44f6cc](https://github.com/jwpkg/gitbump/commit/b44f6ccc893bdb20ca465280220ba3c6e2ab5795)) ### docs -* Added basic docs ([2320c8f](https://github.com/cp-utils/gitversion/commit/2320c8f4500f0c3f4598a406465df448d4610dcb)) +* Added basic docs ([2320c8f](https://github.com/jwpkg/gitbump/commit/2320c8f4500f0c3f4598a406465df448d4610dcb)) -## [0.0.27](https://github.com/cp-utils/gitversion/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) +## [0.0.27](https://github.com/jwpkg/gitbump/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) ### fix -* **pnpm** Package manager result parsing ([381c4b8](https://github.com/cp-utils/gitversion/commit/381c4b8be8940a14a54d31255554d0b223b24831)) +* **pnpm** Package manager result parsing ([381c4b8](https://github.com/jwpkg/gitbump/commit/381c4b8be8940a14a54d31255554d0b223b24831)) -## [0.0.26](https://github.com/cp-utils/gitversion/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) +## [0.0.26](https://github.com/jwpkg/gitbump/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) ### feat -* Multiple pack managers simultanious + pnpm ([4e792d2](https://github.com/cp-utils/gitversion/commit/4e792d2ffc314b3981e6a38ed8a1d269d3a233f8)) +* Multiple pack managers simultanious + pnpm ([4e792d2](https://github.com/jwpkg/gitbump/commit/4e792d2ffc314b3981e6a38ed8a1d269d3a233f8)) ### fix -* Pack locations ([541887a](https://github.com/cp-utils/gitversion/commit/541887aa3eb030f6fd421c64ebaae46ddaed0c56)) +* Pack locations ([541887a](https://github.com/jwpkg/gitbump/commit/541887aa3eb030f6fd421c64ebaae46ddaed0c56)) -## [0.0.25](https://github.com/cp-utils/gitversion/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) +## [0.0.25](https://github.com/jwpkg/gitbump/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) ### fix -* Removed duplicate changelog updates ([c4c2141](https://github.com/cp-utils/gitversion/commit/c4c2141cae7e8d1f9c09f401959d58fb96f4400e)) +* Removed duplicate changelog updates ([c4c2141](https://github.com/jwpkg/gitbump/commit/c4c2141cae7e8d1f9c09f401959d58fb96f4400e)) -## [0.0.24](https://github.com/cp-utils/gitversion/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) +## [0.0.24](https://github.com/jwpkg/gitbump/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) ### fix -* Missing await ([aa57130](https://github.com/cp-utils/gitversion/commit/aa57130e1b49755e5483e04be252eb1a279879b5)) +* Missing await ([aa57130](https://github.com/jwpkg/gitbump/commit/aa57130e1b49755e5483e04be252eb1a279879b5)) -* Restucture logging ([c29983a](https://github.com/cp-utils/gitversion/commit/c29983ab3779b001f98326193d614b14d02b7c43)) +* Restucture logging ([c29983a](https://github.com/jwpkg/gitbump/commit/c29983ab3779b001f98326193d614b14d02b7c43)) -## [0.0.22](https://github.com/cp-utils/gitversion/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) +## [0.0.22](https://github.com/jwpkg/gitbump/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) ### fix -* Npm and invalid origin reset ([8264003](https://github.com/cp-utils/gitversion/commit/826400353f725a902ac5577f9ac45b1697390165)) +* Npm and invalid origin reset ([8264003](https://github.com/jwpkg/gitbump/commit/826400353f725a902ac5577f9ac45b1697390165)) -## [0.0.21](https://github.com/cp-utils/gitversion/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) +## [0.0.21](https://github.com/jwpkg/gitbump/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) ### fix -* Follow existing eol at end of file ([d6333fa](https://github.com/cp-utils/gitversion/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) +* Follow existing eol at end of file ([d6333fa](https://github.com/jwpkg/gitbump/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) -## [0.0.20](https://github.com/cp-utils/gitversion/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) +## [0.0.20](https://github.com/jwpkg/gitbump/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) ### refactor -* Dryrun inside persisting actions ([0de0782](https://github.com/cp-utils/gitversion/commit/0de0782b2b254295062e8d7d1043631a114846ac)) +* Dryrun inside persisting actions ([0de0782](https://github.com/jwpkg/gitbump/commit/0de0782b2b254295062e8d7d1043631a114846ac)) -* Used the context a bit better ([0a0f586](https://github.com/cp-utils/gitversion/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) +* Used the context a bit better ([0a0f586](https://github.com/jwpkg/gitbump/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) -* Removed global logger ([064d4cc](https://github.com/cp-utils/gitversion/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) +* Removed global logger ([064d4cc](https://github.com/jwpkg/gitbump/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) -* cleanup some logger refs ([c964081](https://github.com/cp-utils/gitversion/commit/c9640819fe49127ab560e4ea1526d6690b331299)) +* cleanup some logger refs ([c964081](https://github.com/jwpkg/gitbump/commit/c9640819fe49127ab560e4ea1526d6690b331299)) ### chore -* changelog test and parameter simplification ([a814c61](https://github.com/cp-utils/gitversion/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) +* changelog test and parameter simplification ([a814c61](https://github.com/jwpkg/gitbump/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) ### feat -* NPM Plugin ([2d0f6f9](https://github.com/cp-utils/gitversion/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) +* NPM Plugin ([2d0f6f9](https://github.com/jwpkg/gitbump/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) ### fix -* Fixes after param changes ([c9db1cb](https://github.com/cp-utils/gitversion/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) +* Fixes after param changes ([c9db1cb](https://github.com/jwpkg/gitbump/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) -* TSC Errors ([b049b9e](https://github.com/cp-utils/gitversion/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) +* TSC Errors ([b049b9e](https://github.com/jwpkg/gitbump/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) -* Linting ([56c98e3](https://github.com/cp-utils/gitversion/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) +* Linting ([56c98e3](https://github.com/jwpkg/gitbump/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) -## [0.0.19](https://github.com/cp-utils/gitversion/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) +## [0.0.19](https://github.com/jwpkg/gitbump/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) ### docs -* Updated docs to show the first line in npm ([5a9014e](https://github.com/cp-utils/gitversion/commit/5a9014ee4d7a0bb3d4d92a741195262ba0920a0b)) +* Updated docs to show the first line in npm ([5a9014e](https://github.com/jwpkg/gitbump/commit/5a9014ee4d7a0bb3d4d92a741195262ba0920a0b)) ### feat -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) -## [0.0.18](https://github.com/cp-utils/gitversion/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) +## [0.0.18](https://github.com/jwpkg/gitbump/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) ### refactor -* Refactored configuration and project initialization ([9f14c46](https://github.com/cp-utils/gitversion/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) +* Refactored configuration and project initialization ([9f14c46](https://github.com/jwpkg/gitbump/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) -* Default locations of properties ([cc30097](https://github.com/cp-utils/gitversion/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) +* Default locations of properties ([cc30097](https://github.com/jwpkg/gitbump/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) -* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/cp-utils/gitversion/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) +* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/jwpkg/gitbump/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) -* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/cp-utils/gitversion/commit/10870460fa1968c67e72308d1113269693190d23)) +* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/jwpkg/gitbump/commit/10870460fa1968c67e72308d1113269693190d23)) ### fix -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) -## [0.0.17](https://github.com/cp-utils/gitversion/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) +## [0.0.17](https://github.com/jwpkg/gitbump/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) ### fix -* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/cp-utils/gitversion/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) +* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/jwpkg/gitbump/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) -## [0.0.15](https://github.com/cp-utils/gitversion/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) +## [0.0.15](https://github.com/jwpkg/gitbump/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) ### fix -* Changelog generation and parsing ([0816061](https://github.com/cp-utils/gitversion/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) +* Changelog generation and parsing ([0816061](https://github.com/jwpkg/gitbump/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) -## [0.0.14](https://github.com/cp-utils/gitversion/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) +## [0.0.14](https://github.com/jwpkg/gitbump/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) ### fix -* Add changelog to file list of package ([f7955f9](https://github.com/cp-utils/gitversion/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) +* Add changelog to file list of package ([f7955f9](https://github.com/jwpkg/gitbump/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) -## [0.0.13](https://github.com/cp-utils/gitversion/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) +## [0.0.13](https://github.com/jwpkg/gitbump/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) ### feat -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) ### fix -* Check for shallow repository ([372027f](https://github.com/cp-utils/gitversion/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) +* Check for shallow repository ([372027f](https://github.com/jwpkg/gitbump/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) -## [0.0.12](https://github.com/cp-utils/gitversion/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) +## [0.0.12](https://github.com/jwpkg/gitbump/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) ### fix -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) -## [0.0.11](https://github.com/cp-utils/gitversion/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) +## [0.0.11](https://github.com/jwpkg/gitbump/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) ### fix -* License field ([83d3912](https://github.com/cp-utils/gitversion/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) +* License field ([83d3912](https://github.com/jwpkg/gitbump/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) -## [0.0.10](https://github.com/cp-utils/gitversion/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) +## [0.0.10](https://github.com/jwpkg/gitbump/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) ### fix -* **release** Always publish license ([52529e4](https://github.com/cp-utils/gitversion/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) +* **release** Always publish license ([52529e4](https://github.com/jwpkg/gitbump/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) -## [0.0.9](https://github.com/cp-utils/gitversion/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) +## [0.0.9](https://github.com/jwpkg/gitbump/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) ### feat -* Plugin management ([28fae48](https://github.com/cp-utils/gitversion/commit/28fae48dc211a2197a7120e6081ab479647a9762)) +* Plugin management ([28fae48](https://github.com/jwpkg/gitbump/commit/28fae48dc211a2197a7120e6081ab479647a9762)) -* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/cp-utils/gitversion/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) +* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/jwpkg/gitbump/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) ### docs -* Updated docs ([f538e8e](https://github.com/cp-utils/gitversion/commit/f538e8e746a92cede81d434ac738bdec12c9ce2d)) +* Updated docs ([f538e8e](https://github.com/jwpkg/gitbump/commit/f538e8e746a92cede81d434ac738bdec12c9ce2d)) -* Updated readme ([94ccc14](https://github.com/cp-utils/gitversion/commit/94ccc142813dca74b95baac525f6e8c0e8071242)) +* Updated readme ([94ccc14](https://github.com/jwpkg/gitbump/commit/94ccc142813dca74b95baac525f6e8c0e8071242)) -* Added homepage ([642fe6b](https://github.com/cp-utils/gitversion/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) +* Added homepage ([642fe6b](https://github.com/jwpkg/gitbump/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) ### licence -* Updated licence ([c9f9e50](https://github.com/cp-utils/gitversion/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) +* Updated licence ([c9f9e50](https://github.com/jwpkg/gitbump/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) -## [0.0.8](https://github.com/cp-utils/gitversion/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) +## [0.0.8](https://github.com/jwpkg/gitbump/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) ### fix -* Github compare link ([2150b54](https://github.com/cp-utils/gitversion/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) +* Github compare link ([2150b54](https://github.com/jwpkg/gitbump/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) -## [0.0.7](https://github.com/cp-utils/gitversion/compare/0.0.6...0.0.7) (Fri Jan 26 2024) +## [0.0.7](https://github.com/jwpkg/gitbump/compare/0.0.6...0.0.7) (Fri Jan 26 2024) ### feat -* Allow explicit versions and bump types ([7541f21](https://github.com/cp-utils/gitversion/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) +* Allow explicit versions and bump types ([7541f21](https://github.com/jwpkg/gitbump/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) ## [0.0.5](https://github.com/not_initialized/not_initialized/compare/0.0.4...0.0.5) (Fri Jan 26 2024) @@ -392,17 +392,17 @@ All notable changes to this project will be documented in this file * platform plugins (#27) ([3f15c0d](https://github.com///commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) ### feat -* pltform plugin basics ([0e6c5f6](https://github.com/cp-utils/gitversion/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) +* pltform plugin basics ([0e6c5f6](https://github.com/jwpkg/gitbump/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) ### feat -* pltform plugin basics ([0e6c5f6](https://github.com/cp-utils/gitversion/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) +* pltform plugin basics ([0e6c5f6](https://github.com/jwpkg/gitbump/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) # Changelog diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md index 4351112..683678f 100644 --- a/CONTRIBUTION.md +++ b/CONTRIBUTION.md @@ -1,8 +1,8 @@ -# Contributing to gitversion +# Contributing to gitbump -Nice of you to join te gitversion repository. In order to get started I'd like to explain the basic setups of the repo +Nice of you to join te gitbump repository. In order to get started I'd like to explain the basic setups of the repo -You can read about the way gitversion works at [the documentation site](https://www.cp-utils.com/projects/gitversion/). +You can read about the way gitbump works at [the documentation site](https://www.cp-utils.com/projects/gitversion/). ## Getting started @@ -18,11 +18,11 @@ $ yarn Verify if everything works as expected: ``` sh -$ yarn gitversion check -$ yarn gitversion bump -$ yarn gitversion pack -$ yarn gitversion publish --dry-run -$ yarn gitversion reset +$ yarn gitbump check +$ yarn gitbump bump +$ yarn gitbump pack +$ yarn gitbump publish --dry-run +$ yarn gitbump reset ``` ## Repo setup @@ -31,7 +31,7 @@ The repository setup has the following key elements: - [yarn 4 (berry) package manager](#yarn) - [Typescript only](#typescript) -- [Gitversion release](#gitversion) +- [Gitbump release](#gitbump) - [Jest based unit testing](#jest) - [Eslint linter](#eslint) @@ -46,7 +46,7 @@ We also use yarn [constraints](https://yarnpkg.com/features/constraints) for con All source code in the repo is [typescript](https://www.typescriptlang.org/). The only exception for this are (small) configuration files. -There should never be any need to have any javascript available during development time. The only time we have javascript is during the pack command of the actual production package. You can see this in action in [workspaces/packages/gitversion/package.json](workspaces/packages/gitversion/package.json) where we have basically this: +There should never be any need to have any javascript available during development time. The only time we have javascript is during the pack command of the actual production package. You can see this in action in [workspaces/packages/gitbump/package.json](workspaces/packages/gitbump/package.json) where we have basically this: ```json "scripts": { @@ -54,7 +54,7 @@ There should never be any need to have any javascript available during developme "postpack": "rm -rf lib" // Remove the generated files to cleanup the workspace } ``` -And we use this to be able to use gitversion itself in typescript mode: +And we use this to be able to use gitbump itself in typescript mode: ```json "bin": "bin/index-typescript.js", "main": "src/index.ts", @@ -66,9 +66,9 @@ And we use this to be able to use gitversion itself in typescript mode: }, ``` -### Gitversion +### Gitbump -Of course we use gitversion itself in the repo. We use it in the default mode and execute it with the above helpers in combination with [ts-node](https://www.npmjs.com/package/ts-node) +Of course we use gitbump itself in the repo. We use it in the default mode and execute it with the above helpers in combination with [ts-node](https://www.npmjs.com/package/ts-node) ### Jest diff --git a/README.md b/README.md index 0fa17c1..35f87ac 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ -# Gitversion +# Gitbump -Gitversion is a complete customizable git-based release management system. Primarily focused on package releases. +Gitbump is a complete customizable git-based release management system. Primarily focused on package releases. -![NPM Version](https://img.shields.io/npm/v/%40cp-utils%2Fgitversion) +![NPM Version](https://img.shields.io/npm/v/gitbump) ## Key concepts @@ -17,9 +17,9 @@ Gitversion is a complete customizable git-based release management system. Prima ### Branch based release strategy -The core concept of gitversion evolves around branch detection and branch types. +The core concept of gitbump evolves around branch detection and branch types. -Gitversion defines the following types: +Gitbump defines the following types: - main/master branch (default branch name **'main'**) - release branches (default matches **'release/*'**) - feature branches (default matches **'feature/*'**) @@ -38,48 +38,48 @@ Depending on the detected branch types the system will make different choices: ### Tag based versioning -Like most release systems gitversion will add a tag for each release. This will follow the tag naming with a prefix (default 'v'). I.e. +Like most release systems gitbump will add a tag for each release. This will follow the tag naming with a prefix (default 'v'). I.e. - v1.0.0 - v1.2.3-next.0 -The difference of gitversion is that the tags are the only source of truth. It does not care about versions inside files and will keep them even on the default "0.0.0". +The difference of gitbump is that the tags are the only source of truth. It does not care about versions inside files and will keep them even on the default "0.0.0". There are two main advantages of this strategy: - One source of truth. Easy to see in git history what the current state is - No more merge conflicts due to mismatches of versions. Otherwise this will happen constantly with feature/release strategies -Gitversion has 2 commands to work with this git-only version strategy: +Gitbump has 2 commands to work with this git-only version strategy: #### Restore ```bash -yarn gitversion restore +yarn gitbump restore ``` The output will be something like: -![gitversion restore](./assets/restore.png) +![gitbump restore](./assets/restore.png) As you see with this you wil get all versions back in package.json files. #### Reset ```bash -yarn gitversion reset +yarn gitbump reset ``` The output will be something like: -![gitversion reset](./assets/reset.png) +![gitbump reset](./assets/reset.png) As you see with this you wil reset all versions back to '0.0.0'. ### Conventional commit based bumps -Gitversion works with the concept of a "bump". This is one of the key commands: +Gitbump works with the concept of a "bump". This is one of the key commands: ```bash -yarn gitversion bump +yarn gitbump bump ``` Bump will do the following steps: @@ -89,11 +89,11 @@ Bump will do the following steps: - Define a bump type based on the outcome - Update the workspaces with the new version - Udate the workspaces with the workspace specific changelogs -- Create a bump manifest in the **gitversion.out** folder containing versions and changelogs +- Create a bump manifest in the **gitbump.out** folder containing versions and changelogs ### Native monorepo support -Gitversion is build for monorepos with multiple workspaces. It will detect all (public) workspaces and use them during bump. +Gitbump is build for monorepos with multiple workspaces. It will detect all (public) workspaces and use them during bump. There are 2 main operation modes: - [global versioning](#Global-versioning) @@ -109,8 +109,8 @@ This will use unique versions per workspace in the mono repo. Based on the path ### Split stage publish -Gitversion is buld for usage within CI/CD pipelines. When building packages gitversion can be used in a pipeline like this: +Gitbump is buld for usage within CI/CD pipelines. When building packages gitbump can be used in a pipeline like this: ![Pipeline](./assets/pipeline.png) -This will allow you to run your time consuming steps in parallel with your build step. Only when all checks pass you have a (quick) publish stage. \ No newline at end of file +This will allow you to run your time consuming steps in parallel with your build step. Only when all checks pass you have a (quick) publish stage. diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 862a239..6eb246e 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -4,11 +4,11 @@ const sidebar = await import('../sidebar.mjs'); // https://vitepress.dev/reference/site-config export default defineConfig({ - title: "Testing gitversion docs", + title: "Testing gitbump docs", description: "A VitePress Site", themeConfig: { nav: [ - { text: 'Gitversion', link: '/tutorials/getting-started' }, + { text: 'Gitbump', link: '/tutorials/getting-started' }, ], sidebar: sidebar.sidebar diff --git a/docs/index.md b/docs/index.md index 1901fcd..e1fd482 100644 --- a/docs/index.md +++ b/docs/index.md @@ -94,7 +94,7 @@ Bump will do the following steps: - Define a bump type based on the outcome - Update the workspaces with the new version - Udate the workspaces with the workspace specific changelogs -- Create a bump manifest in the **gitversion.out** folder containing versions and changelogs +- Create a bump manifest in the **gitbump.out** folder containing versions and changelogs ### Native workspace/monorepo support {#monorepo} diff --git a/docs/reference/configuration.md b/docs/reference/configuration.md index 0933fe4..914fbe4 100644 --- a/docs/reference/configuration.md +++ b/docs/reference/configuration.md @@ -18,7 +18,7 @@ Gitversion currently searches for the following file: This has to be a commonjs file with the following basics: ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ // configuration options @@ -52,7 +52,7 @@ Changelogs are always generated on a per workspace base. Therefor independent ve ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ independentVersioning: true @@ -83,7 +83,7 @@ See more about branch types in [working with branches](../how-to/working-with-br ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ featureBumpBehavior: 'always' @@ -110,7 +110,7 @@ See more about branch types in [working with branches](../how-to/working-with-br ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ mainBranchPatterns: [ @@ -140,7 +140,7 @@ See more about branch types in [working with branches](../how-to/working-with-br ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ releaseBranchPatterns: [ @@ -171,7 +171,7 @@ See more about branch types in [working with branches](../how-to/working-with-br ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ featureBranchPatterns: [ @@ -198,7 +198,7 @@ This will be used by all permanent actions to only run the logic without actuall ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ dryRun: true @@ -219,7 +219,7 @@ Every tag in gitversion is prefixed. By default this is 'v' to get 'v1.0.0'. You ::: details Example .gitversion.cjs ```js -const { defineConfig } = require("@cp-utils/gitversion"); +const { defineConfig } = require("gitbump"); module.exports = defineConfig({ versionTagPrefix: 'version-' diff --git a/docs/sidebar.mjs b/docs/sidebar.mjs index 9667b40..ba52cee 100644 --- a/docs/sidebar.mjs +++ b/docs/sidebar.mjs @@ -1,6 +1,6 @@ export const sidebar = [ { - text: 'Gitversion', items: [ + text: 'Gitbump', items: [ { text: 'Introduction', link: '/' }, { text: 'Getting started', link: '/tutorials/getting-started' }, { text: 'Configuration', link: '/reference/configuration' }, diff --git a/docs/tutorials/getting-started.md b/docs/tutorials/getting-started.md index 7094adf..733ccd1 100644 --- a/docs/tutorials/getting-started.md +++ b/docs/tutorials/getting-started.md @@ -23,15 +23,15 @@ Start by adding the the gitversion package to your root workspace: ::: code-group ```sh [yarn] -$ yarn add -D @cp-utils/gitversion +$ yarn add -D gitbump ``` ```sh [npm] -$ npm add -D @cp-utils/gitversion +$ npm add -D gitbump ``` ```sh [pnpm] -$ pnpm add -D @cp-utils/gitversion +$ pnpm add -D gitbump ``` ::: @@ -82,7 +82,7 @@ Bump will do the following: - restore all versions from the current state in git - update all versions in manifest files according to the detected bump type - update CHANGELOG.md files according to commit messages -- generate a bump manifest file in the gitversion.out folder which will be used by the [pack](#Pack) command +- generate a bump manifest file in the gitbump.out folder which will be used by the [pack](#Pack) command ### Pack @@ -101,9 +101,9 @@ $ pnpm gitversion pack ``` ::: -The pack command will generate packages but will not publish them. The packages are generated by the detected package manager. The output of the pack action will be stored inside the gitversion.out action together with a pack manifest. +The pack command will generate packages but will not publish them. The packages are generated by the detected package manager. The output of the pack action will be stored inside the gitbump.out action together with a pack manifest. -The gitversion.out folder can now be stored now in a pipeline artifact so a different stage can publish the results. +The gitbump.out folder can now be stored now in a pipeline artifact so a different stage can publish the results. ::: tip If you do not need to execute anything between [bump](#Bump) and [pack](#Pack) you can skip the bump command. Pack will execute it when there is no bump manifest. @@ -127,7 +127,7 @@ $ pnpm gitversion publish ``` ::: -Publish is the only command that will make permanent changes. Publish will need the workspace in order to update changelog files but will only get its information from the pack information in the gitversion.out folder. +Publish is the only command that will make permanent changes. Publish will need the workspace in order to update changelog files but will only get its information from the pack information in the gitbump.out folder. Publish will execute the following: - use the package manager to publish the packages @@ -137,7 +137,7 @@ Publish will execute the following: - push the changelogs ::: tip -If you do not need to split the [pack](#Pack) and [publish](#Publish) stages you can skip pack. Publish will try to pack the workspace when there is no pack output in the gitversion.out folder. +If you do not need to split the [pack](#Pack) and [publish](#Publish) stages you can skip pack. Publish will try to pack the workspace when there is no pack output in the gitbump.out folder. This means you can use publish as a single command to do bump -> pack -> publish ::: diff --git a/eslint.config.js b/eslint.config.js new file mode 100644 index 0000000..0020491 --- /dev/null +++ b/eslint.config.js @@ -0,0 +1,27 @@ +/* eslint-disable @typescript-eslint/naming-convention */ +const globalConfig = require('@jwpkg/eslint-config'); + +module.exports = [ + { + files: [ + '**/*.ts', + ], + ignores: [ + '**/lib/**', + '*.json', + ], + }, + ...globalConfig, + { + ignores: [ + '**/lib/**', + '*.json', + ], + }, + { + files: ['**/package.json'], + rules: { + 'eol-last': [2, 'always'], + }, + }, +]; diff --git a/package.json b/package.json index 19fee20..2233062 100644 --- a/package.json +++ b/package.json @@ -4,7 +4,7 @@ "main": "index.js", "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", + "url": "https://github.com/jwpkg/gitbump", "directory": "." }, "author": "Joost van der Waal ", @@ -20,20 +20,20 @@ "validate:constraints": "yarn constraints", "validate:lint": "yarn eslint", "validate:tests": "yarn jest", - "eslint": "eslint .", + "eslint": "eslint **/*.ts", "docs:dev": "vitepress dev docs", "docs:build": "vitepress build docs", "docs:preview": "vitepress preview docs" }, "devDependencies": { - "@cp-utils/constraints-config": "^0.0.7", - "@cp-utils/eslint-config": "^0.0.6", - "@cp-utils/gitversion-s3publish": "workspace:^", + "@jwpkg/constraints-config": "^0.0.1", + "@jwpkg/eslint-config": "^0.0.2", + "@jwpkg/gitbump-s3publish": "workspace:^", "@types/eslint": "^8.44.9", "@types/jest": "^29.5.12", "@types/node": "^20.11.19", "@yarnpkg/types": "^4.0.0", - "eslint": "^8.55.0", + "eslint": "^9.9.0", "husky": "^8.0.3", "jest": "^29.7.0", "ts-jest": "^29.1.2", @@ -65,8 +65,8 @@ } }, "dependencies": { - "@cp-utils/gitversion": "workspace:^", "asciinema-player": "^3.6.4", + "gitbump": "workspace:^", "vue": "^3.4.15", "vue3-asciinema-player": "^0.0.3" } diff --git a/workspaces/packages/gitbump-plugin-s3publish/CHANGELOG.md b/workspaces/packages/gitbump-plugin-s3publish/CHANGELOG.md new file mode 100644 index 0000000..7f54856 --- /dev/null +++ b/workspaces/packages/gitbump-plugin-s3publish/CHANGELOG.md @@ -0,0 +1,83 @@ + +# Changelog + +All notable changes to this project will be documented in this file + + +## [0.0.50](https://github.com/jwpkg/gitbump/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) + + + +## [0.0.49](https://github.com/jwpkg/gitbump/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) + + + +## [0.0.48](https://github.com/jwpkg/gitbump/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) + + + +## [0.0.47](https://github.com/jwpkg/gitbump/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) + + + +## [0.0.46](https://github.com/jwpkg/gitbump/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) + + + +## [0.0.45](https://github.com/jwpkg/gitbump/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) + + + +## [0.0.44](https://github.com/jwpkg/gitbump/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) + + + +## [0.0.43](https://github.com/jwpkg/gitbump/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) + + + +## [0.0.42](https://github.com/jwpkg/gitbump/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) + + + +## [0.0.41](https://github.com/jwpkg/gitbump/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) + + + +## [0.0.40](https://github.com/jwpkg/gitbump/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) + + + +## [0.0.39](https://github.com/jwpkg/gitbump/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) + +### feat + +* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/jwpkg/gitbump/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) + +### fix + +* Changed back dry run ([f17be45](https://github.com/jwpkg/gitbump/commit/f17be4534b1939a4d68d959a8750aefa0328be60)) + +## [0.0.38](https://github.com/jwpkg/gitbump/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) + +### feat + +* Added release channel support for S3 plugin ([c890b0d](https://github.com/jwpkg/gitbump/commit/c890b0dc53c37e639e615771350d0d369dd1c8d1)) + +* Added exclusion ([4992c46](https://github.com/jwpkg/gitbump/commit/4992c46f518924aabc565b18904fab688d1e70b5)) + +## [0.0.37](https://github.com/jwpkg/gitbump/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) + +### feat + +* Latest docs ([c8d8a14](https://github.com/jwpkg/gitbump/commit/c8d8a14879c34350abfa8a408dc038eba3cbd569)) + +## [0.0.36](https://github.com/jwpkg/gitbump/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) + +### feat + +* Added S3 publish plugin ([5c28685](https://github.com/jwpkg/gitbump/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) + +## [1.0.0](https://github.com/jwpkg/gitbump/compare/v0.0.35...v1.0.0) (Wed Feb 14 2024) + + diff --git a/workspaces/packages/gitbump-plugin-s3publish/README.md b/workspaces/packages/gitbump-plugin-s3publish/README.md new file mode 100644 index 0000000..1fd8d73 --- /dev/null +++ b/workspaces/packages/gitbump-plugin-s3publish/README.md @@ -0,0 +1 @@ +# gitbump-plugin-s3publish diff --git a/workspaces/packages/gitversion-plugin-s3publish/package.json b/workspaces/packages/gitbump-plugin-s3publish/package.json similarity index 77% rename from workspaces/packages/gitversion-plugin-s3publish/package.json rename to workspaces/packages/gitbump-plugin-s3publish/package.json index 6b4ec88..b348a0c 100644 --- a/workspaces/packages/gitversion-plugin-s3publish/package.json +++ b/workspaces/packages/gitbump-plugin-s3publish/package.json @@ -1,11 +1,11 @@ { - "name": "@cp-utils/gitversion-s3publish", + "name": "@jwpkg/gitbump-s3publish", "packageManager": "yarn@4.0.2", "main": "src/index.ts", "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", - "directory": "workspaces/packages/gitversion-plugin-s3publish" + "url": "https://github.com/jwpkg/gitbump", + "directory": "workspaces/packages/gitbump-plugin-s3publish" }, "scripts": { "build": "rm -f tsconfig.tsbuildinfo && tsc --noEmit false", @@ -20,8 +20,8 @@ ], "dependencies": { "@aws-sdk/client-s3": "^3.515.0", - "@cp-utils/gitversion": "workspace:^", "archiver": "^6.0.1", + "gitbump": "workspace:^", "glob": "^10.3.10", "semver": "^7.6.0" }, diff --git a/workspaces/packages/gitversion-plugin-s3publish/src/index.ts b/workspaces/packages/gitbump-plugin-s3publish/src/index.ts similarity index 100% rename from workspaces/packages/gitversion-plugin-s3publish/src/index.ts rename to workspaces/packages/gitbump-plugin-s3publish/src/index.ts diff --git a/workspaces/packages/gitversion-plugin-s3publish/src/s3publish._test_.ts b/workspaces/packages/gitbump-plugin-s3publish/src/s3publish._test_.ts similarity index 100% rename from workspaces/packages/gitversion-plugin-s3publish/src/s3publish._test_.ts rename to workspaces/packages/gitbump-plugin-s3publish/src/s3publish._test_.ts diff --git a/workspaces/packages/gitversion-plugin-s3publish/src/s3publish.ts b/workspaces/packages/gitbump-plugin-s3publish/src/s3publish.ts similarity index 90% rename from workspaces/packages/gitversion-plugin-s3publish/src/s3publish.ts rename to workspaces/packages/gitbump-plugin-s3publish/src/s3publish.ts index 5e2a7f9..2b73e65 100644 --- a/workspaces/packages/gitversion-plugin-s3publish/src/s3publish.ts +++ b/workspaces/packages/gitbump-plugin-s3publish/src/s3publish.ts @@ -1,10 +1,10 @@ import { PutObjectCommand, S3Client } from '@aws-sdk/client-s3'; -import { LogReporter } from '@cp-utils/gitversion/src/core/log-reporter'; -import { PackedPackage } from '@cp-utils/gitversion/src/core/pack-artifact'; -import { IWorkspace } from '@cp-utils/gitversion/src/core/workspace-utils'; -import { IPackManager, IPlugin, IPluginInitialize } from '@cp-utils/gitversion'; import archiver from 'archiver'; import { createReadStream, createWriteStream } from 'fs'; +import { LogReporter } from 'gitbump/src/core/log-reporter'; +import { PackedPackage } from 'gitbump/src/core/pack-artifact'; +import { IWorkspace } from 'gitbump/src/core/workspace-utils'; +import { IPackManager, IPlugin, IPluginInitialize } from 'gitbump'; import { join } from 'path'; import { parse } from 'semver'; diff --git a/workspaces/packages/gitversion-plugin-s3publish/tsconfig.json b/workspaces/packages/gitbump-plugin-s3publish/tsconfig.json similarity index 100% rename from workspaces/packages/gitversion-plugin-s3publish/tsconfig.json rename to workspaces/packages/gitbump-plugin-s3publish/tsconfig.json diff --git a/workspaces/packages/gitbump/CHANGELOG.md b/workspaces/packages/gitbump/CHANGELOG.md new file mode 100644 index 0000000..95e618f --- /dev/null +++ b/workspaces/packages/gitbump/CHANGELOG.md @@ -0,0 +1,549 @@ + +# Changelog + +All notable changes to this project will be documented in this file + + +## [0.0.50](https://github.com/jwpkg/gitbump/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) + +### chroe + +* Changed unit tests ([6d05d4c](https://github.com/jwpkg/gitbump/commit/6d05d4c4d4466d2c42b019bde5996bee5d86ad38)) + +### feat + +* Added push changelogs options for features (#39) ([d5e1e7c](https://github.com/jwpkg/gitbump/commit/d5e1e7c0dd3f6a548c2f81f8e1e7f31c8bc33b81)) + +## [0.0.49](https://github.com/jwpkg/gitbump/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) + +### feat + +* Added debug logging on errors ([77a6886](https://github.com/jwpkg/gitbump/commit/77a6886f8674eefe3dd55769e2aee78a46c1e80b)) + +### fix + +* Cli handling ([a77368c](https://github.com/jwpkg/gitbump/commit/a77368c8019d380b98cb6d9b4a3a2ccacbfdd026)) + +## [0.0.48](https://github.com/jwpkg/gitbump/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) + +### fix + +* **azure** Fixed merge header detection ([e85bdbd](https://github.com/jwpkg/gitbump/commit/e85bdbd6b5e4da4c46325136ccb56d150a077a8f)) + +## [0.0.47](https://github.com/jwpkg/gitbump/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) + +### fix + +* Moved unshallow to restore step ([c08f211](https://github.com/jwpkg/gitbump/commit/c08f211cf66b2603b66c9215090ddeb326764c87)) + +## [0.0.46](https://github.com/jwpkg/gitbump/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) + +### fix + +* **yarn** Update workspace version before publish ([82834e9](https://github.com/jwpkg/gitbump/commit/82834e9450882f769c458d3f4816349c65bb7873)) + +## [0.0.45](https://github.com/jwpkg/gitbump/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) + +### fix + +* Use default access ([c64646c](https://github.com/jwpkg/gitbump/commit/c64646c87b7e665f6c1b24690cd380076520b858)) + +* reverted access change ([95dfa8d](https://github.com/jwpkg/gitbump/commit/95dfa8dc29b57525f8512d8abf7bedb5118f85bf)) + +## [0.0.44](https://github.com/jwpkg/gitbump/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) + +### fix + +* Added debug info ([5365748](https://github.com/jwpkg/gitbump/commit/5365748280a8ea0a891b61f6c60f7351a713c036)) + +## [0.0.43](https://github.com/jwpkg/gitbump/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) + +### fix + +* **bump** Unshallowing ([13a7461](https://github.com/jwpkg/gitbump/commit/13a746171657b92dded6c410c313e5456682a4cd)) + +## [0.0.42](https://github.com/jwpkg/gitbump/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) + +### fix + +* **azuredevops** Current branch from environment ([d220a00](https://github.com/jwpkg/gitbump/commit/d220a00d9ea2f72bfed0035720b31a4d92cdeb14)) + +## [0.0.41](https://github.com/jwpkg/gitbump/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) + +### feat + +* **config** Added git flags ([dce7bc8](https://github.com/jwpkg/gitbump/commit/dce7bc8a695d3fa103805de6fdf1ac4a92abaf55)) + +### fix + +* Default values ([f4e8646](https://github.com/jwpkg/gitbump/commit/f4e864670c72afe3761921609be9687fd3392987)) + +* Tests ([1e17c1d](https://github.com/jwpkg/gitbump/commit/1e17c1decb1c87f7b4ff7616e7576cbceb6bacbd)) + +## [0.0.40](https://github.com/jwpkg/gitbump/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) + +### fix + +* Don't reset after pack for now ([2c9d27a](https://github.com/jwpkg/gitbump/commit/2c9d27ae19a3bde1eb45bc2f1965c5217a03902d)) + +## [0.0.39](https://github.com/jwpkg/gitbump/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) + +### fix + +* Don't crash on non-existent node manifest ([00c4a01](https://github.com/jwpkg/gitbump/commit/00c4a011a60c6f3fecf1e813689147488a3887c9)) + +* Added error reporting details ([337764e](https://github.com/jwpkg/gitbump/commit/337764e48e68c2727c15aa6e3926e9dc35f33c54)) + +### feat + +* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/jwpkg/gitbump/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) + +## [0.0.38](https://github.com/jwpkg/gitbump/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) + + + +## [0.0.37](https://github.com/jwpkg/gitbump/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) + + + +## [0.0.36](https://github.com/jwpkg/gitbump/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) + +### feat + +* Added S3 publish plugin ([5c28685](https://github.com/jwpkg/gitbump/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) + +## [0.0.35](https://github.com/jwpkg/gitbump/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) + +### chore + +* Removed [bot] from push back git name ([ed48e5a](https://github.com/jwpkg/gitbump/commit/ed48e5a85a6e5493c4753bad08ef9475dc67908a)) + +### feat + +* Added additional branch detection patterns ([2ceba48](https://github.com/jwpkg/gitbump/commit/2ceba48b43367d931f99e0e4737b845392058508)) + +## [0.0.34](https://github.com/jwpkg/gitbump/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) + +### fix + +* user email ([994db2a](https://github.com/jwpkg/gitbump/commit/994db2a7b3429249357d0bfdf1ba5da5ca1324a5)) + +## [0.0.33](https://github.com/jwpkg/gitbump/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) + +### feat + +* Added git credentials ([a2d548c](https://github.com/jwpkg/gitbump/commit/a2d548c4d0740cdb5f18009cca5d14ee16512ac3)) + +## [0.0.32](https://github.com/jwpkg/gitbump/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) + +### feat + +* testing with push back from detached head ([a69435d](https://github.com/jwpkg/gitbump/commit/a69435d38f0bd0c328f178b105f6bab62f5117c9)) + +## [0.0.31](https://github.com/jwpkg/gitbump/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) + +### feat + +* Multiple main branch patterns accepted to make it more autodetect ([16a7b23](https://github.com/jwpkg/gitbump/commit/16a7b2323ab06aad34be979665563ffe7916b137)) + +### fix + +* unit test ([37f7a6e](https://github.com/jwpkg/gitbump/commit/37f7a6ecd8e127fc071284a06d067bbf02c9fcf4)) + +## [0.0.30](https://github.com/jwpkg/gitbump/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) + +### feat + +* Max concurrent pack commands ([1c699a2](https://github.com/jwpkg/gitbump/commit/1c699a245dc2a9e7fa04d0cb00a50628246c174f)) + +## [0.0.29](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) + +### feat + +* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/jwpkg/gitbump/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) + +## [0.0.29-gh-35.0](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) + + + +## [0.0.28](https://github.com/jwpkg/gitbump/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) + +### fix + +* branch lookup ([b44f6cc](https://github.com/jwpkg/gitbump/commit/b44f6ccc893bdb20ca465280220ba3c6e2ab5795)) + +## [0.0.27](https://github.com/jwpkg/gitbump/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) + +### fix + +* **pnpm** Package manager result parsing ([381c4b8](https://github.com/jwpkg/gitbump/commit/381c4b8be8940a14a54d31255554d0b223b24831)) + +## [0.0.26](https://github.com/jwpkg/gitbump/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) + +### feat + +* Multiple pack managers simultanious + pnpm ([4e792d2](https://github.com/jwpkg/gitbump/commit/4e792d2ffc314b3981e6a38ed8a1d269d3a233f8)) + +### fix + +* Pack locations ([541887a](https://github.com/jwpkg/gitbump/commit/541887aa3eb030f6fd421c64ebaae46ddaed0c56)) + +## [0.0.25](https://github.com/jwpkg/gitbump/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) + +### fix + +* Removed duplicate changelog updates ([c4c2141](https://github.com/jwpkg/gitbump/commit/c4c2141cae7e8d1f9c09f401959d58fb96f4400e)) + +## [0.0.24](https://github.com/jwpkg/gitbump/compare/v0.0.0...v0.0.24) (Mon Feb 05 2024) + +### fix + +* **pipeline** Removed fetch depth and reset versions ([eafee1b](https://github.com/jwpkg/gitbump/commit/eafee1b732b333b1d4c7af9204533d8798e07de3)) + +* **test** Test with merge message ([faa6ab1](https://github.com/jwpkg/gitbump/commit/faa6ab156a292f4b673d803f5ed7f20d0fdb7253)) + +* Pack status ([69429ec](https://github.com/jwpkg/gitbump/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) + +* Testing with github actions ([d6141af](https://github.com/jwpkg/gitbump/commit/d6141afcab377e70234aeaf057fbfe94186dba9e)) + +* Fixed git urls on github actions ([1009e17](https://github.com/jwpkg/gitbump/commit/1009e17a8279fc25a193a3c5ef2566fccc5705fc)) + +* Lazy search ([cb8cff3](https://github.com/jwpkg/gitbump/commit/cb8cff39d8336743023e23e96ded63d10c97c521)) + +* Github compare link ([2150b54](https://github.com/jwpkg/gitbump/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) + +* **release** Always publish license ([52529e4](https://github.com/jwpkg/gitbump/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) + +* License field ([83d3912](https://github.com/jwpkg/gitbump/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) + +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) + +* Check for shallow repository ([372027f](https://github.com/jwpkg/gitbump/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) + +* Add changelog to file list of package ([f7955f9](https://github.com/jwpkg/gitbump/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) + +* Changelog generation and parsing ([0816061](https://github.com/jwpkg/gitbump/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) + +* Bumptype parameter in bump ([e7a47da](https://github.com/jwpkg/gitbump/commit/e7a47da7f0faee4de9d8daf38a5a6ba830871dbf)) + +* Bump priority ([38b84d0](https://github.com/jwpkg/gitbump/commit/38b84d059ec76d392a84217dbecb5307db4ff78f)) + +* Changelog filename ([03226a5](https://github.com/jwpkg/gitbump/commit/03226a54d12268cc7142f79455d5baae24c1267a)) + +* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/jwpkg/gitbump/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) + +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) + +* Fixes after param changes ([c9db1cb](https://github.com/jwpkg/gitbump/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) + +* TSC Errors ([b049b9e](https://github.com/jwpkg/gitbump/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) + +* Linting ([56c98e3](https://github.com/jwpkg/gitbump/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) + +* Follow existing eol at end of file ([d6333fa](https://github.com/jwpkg/gitbump/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) + +* Npm and invalid origin reset ([8264003](https://github.com/jwpkg/gitbump/commit/826400353f725a902ac5577f9ac45b1697390165)) + +* Added no remote support ([c24aa3c](https://github.com/jwpkg/gitbump/commit/c24aa3ccc75e8635de5534b5ce807296fc69aea4)) + +* Missing await ([aa57130](https://github.com/jwpkg/gitbump/commit/aa57130e1b49755e5483e04be252eb1a279879b5)) + +* Restucture logging ([c29983a](https://github.com/jwpkg/gitbump/commit/c29983ab3779b001f98326193d614b14d02b7c43)) + +### feat + +* Basic logic ([d80772f](https://github.com/jwpkg/gitbump/commit/d80772fc419b5ff882f474fa4fe6f9bea0944020)) + +* Added commands ([b70966d](https://github.com/jwpkg/gitbump/commit/b70966d338552d9be55620c8809eb103cb55414f)) + +* First release (#23) ([f9b97fb](https://github.com/jwpkg/gitbump/commit/f9b97fba8a1ff8b66e1682997a5308159ca13b24)) + +* Added git status checks. Now breaks of when the steps can't be matched by gitstatus (#26) ([b0f593e](https://github.com/jwpkg/gitbump/commit/b0f593e594d5cd571f5f9f0aff11e16b637c7e08)) + +* platform plugins (#27) ([3f15c0d](https://github.com/jwpkg/gitbump/commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) + +* Allow explicit versions and bump types ([7541f21](https://github.com/jwpkg/gitbump/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) + +* Plugin management ([28fae48](https://github.com/jwpkg/gitbump/commit/28fae48dc211a2197a7120e6081ab479647a9762)) + +* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/jwpkg/gitbump/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) + +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) + +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) + +* NPM Plugin ([2d0f6f9](https://github.com/jwpkg/gitbump/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) + +### licence + +* Updated licence ([c9f9e50](https://github.com/jwpkg/gitbump/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) + +### docs + +* Added homepage ([642fe6b](https://github.com/jwpkg/gitbump/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) + +* Added keywords ([e2a46f5](https://github.com/jwpkg/gitbump/commit/e2a46f5cedb2b31c875517deb1cd1a19ad66beec)) + +### refactor + +* **workspaces** Extracted IWorkspace and IProject interfaces ([ecf960a](https://github.com/jwpkg/gitbump/commit/ecf960a1675b7294f5436daf114ceed5903fb124)) + +* **core** Plugins with configuration + IConfiguration interface extraction ([1468559](https://github.com/jwpkg/gitbump/commit/14685595988d26c635bcb38c0517611ebbb5bfb1)) + +* Refactored configuration and project initialization ([9f14c46](https://github.com/jwpkg/gitbump/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) + +* Default locations of properties ([cc30097](https://github.com/jwpkg/gitbump/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) + +* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/jwpkg/gitbump/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) + +* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/jwpkg/gitbump/commit/10870460fa1968c67e72308d1113269693190d23)) + +* Dryrun inside persisting actions ([0de0782](https://github.com/jwpkg/gitbump/commit/0de0782b2b254295062e8d7d1043631a114846ac)) + +* Used the context a bit better ([0a0f586](https://github.com/jwpkg/gitbump/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) + +* Removed global logger ([064d4cc](https://github.com/jwpkg/gitbump/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) + +* cleanup some logger refs ([c964081](https://github.com/jwpkg/gitbump/commit/c9640819fe49127ab560e4ea1526d6690b331299)) + +### chore + +* changelog test and parameter simplification ([a814c61](https://github.com/jwpkg/gitbump/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) + +## [0.0.22](https://github.com/jwpkg/gitbump/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) + +### fix + +* Npm and invalid origin reset ([8264003](https://github.com/jwpkg/gitbump/commit/826400353f725a902ac5577f9ac45b1697390165)) + +## [0.0.21](https://github.com/jwpkg/gitbump/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) + +### fix + +* Follow existing eol at end of file ([d6333fa](https://github.com/jwpkg/gitbump/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) + +## [0.0.20](https://github.com/jwpkg/gitbump/compare/v0.0.0...v0.0.20) (Sun Feb 04 2024) + +### fix + +* **pipeline** Removed fetch depth and reset versions ([eafee1b](https://github.com/jwpkg/gitbump/commit/eafee1b732b333b1d4c7af9204533d8798e07de3)) + +* **test** Test with merge message ([faa6ab1](https://github.com/jwpkg/gitbump/commit/faa6ab156a292f4b673d803f5ed7f20d0fdb7253)) + +* Pack status ([69429ec](https://github.com/jwpkg/gitbump/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) + +* Testing with github actions ([d6141af](https://github.com/jwpkg/gitbump/commit/d6141afcab377e70234aeaf057fbfe94186dba9e)) + +* Fixed git urls on github actions ([1009e17](https://github.com/jwpkg/gitbump/commit/1009e17a8279fc25a193a3c5ef2566fccc5705fc)) + +* Lazy search ([cb8cff3](https://github.com/jwpkg/gitbump/commit/cb8cff39d8336743023e23e96ded63d10c97c521)) + +* Github compare link ([2150b54](https://github.com/jwpkg/gitbump/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) + +* **release** Always publish license ([52529e4](https://github.com/jwpkg/gitbump/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) + +* License field ([83d3912](https://github.com/jwpkg/gitbump/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) + +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) + +* Check for shallow repository ([372027f](https://github.com/jwpkg/gitbump/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) + +* Add changelog to file list of package ([f7955f9](https://github.com/jwpkg/gitbump/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) + +* Changelog generation and parsing ([0816061](https://github.com/jwpkg/gitbump/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) + +* Bumptype parameter in bump ([e7a47da](https://github.com/jwpkg/gitbump/commit/e7a47da7f0faee4de9d8daf38a5a6ba830871dbf)) + +* Bump priority ([38b84d0](https://github.com/jwpkg/gitbump/commit/38b84d059ec76d392a84217dbecb5307db4ff78f)) + +* Changelog filename ([03226a5](https://github.com/jwpkg/gitbump/commit/03226a54d12268cc7142f79455d5baae24c1267a)) + +* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/jwpkg/gitbump/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) + +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) + +* Fixes after param changes ([c9db1cb](https://github.com/jwpkg/gitbump/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) + +* TSC Errors ([b049b9e](https://github.com/jwpkg/gitbump/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) + +* Linting ([56c98e3](https://github.com/jwpkg/gitbump/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) + +### feat + +* Basic logic ([d80772f](https://github.com/jwpkg/gitbump/commit/d80772fc419b5ff882f474fa4fe6f9bea0944020)) + +* Added commands ([b70966d](https://github.com/jwpkg/gitbump/commit/b70966d338552d9be55620c8809eb103cb55414f)) + +* First release (#23) ([f9b97fb](https://github.com/jwpkg/gitbump/commit/f9b97fba8a1ff8b66e1682997a5308159ca13b24)) + +* Added git status checks. Now breaks of when the steps can't be matched by gitstatus (#26) ([b0f593e](https://github.com/jwpkg/gitbump/commit/b0f593e594d5cd571f5f9f0aff11e16b637c7e08)) + +* platform plugins (#27) ([3f15c0d](https://github.com/jwpkg/gitbump/commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) + +* Allow explicit versions and bump types ([7541f21](https://github.com/jwpkg/gitbump/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) + +* Plugin management ([28fae48](https://github.com/jwpkg/gitbump/commit/28fae48dc211a2197a7120e6081ab479647a9762)) + +* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/jwpkg/gitbump/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) + +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) + +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) + +* NPM Plugin ([2d0f6f9](https://github.com/jwpkg/gitbump/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) + +### licence + +* Updated licence ([c9f9e50](https://github.com/jwpkg/gitbump/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) + +### docs + +* Added homepage ([642fe6b](https://github.com/jwpkg/gitbump/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) + +* Added keywords ([e2a46f5](https://github.com/jwpkg/gitbump/commit/e2a46f5cedb2b31c875517deb1cd1a19ad66beec)) + +### refactor + +* **workspaces** Extracted IWorkspace and IProject interfaces ([ecf960a](https://github.com/jwpkg/gitbump/commit/ecf960a1675b7294f5436daf114ceed5903fb124)) + +* **core** Plugins with configuration + IConfiguration interface extraction ([1468559](https://github.com/jwpkg/gitbump/commit/14685595988d26c635bcb38c0517611ebbb5bfb1)) + +* Refactored configuration and project initialization ([9f14c46](https://github.com/jwpkg/gitbump/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) + +* Default locations of properties ([cc30097](https://github.com/jwpkg/gitbump/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) + +* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/jwpkg/gitbump/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) + +* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/jwpkg/gitbump/commit/10870460fa1968c67e72308d1113269693190d23)) + +* Dryrun inside persisting actions ([0de0782](https://github.com/jwpkg/gitbump/commit/0de0782b2b254295062e8d7d1043631a114846ac)) + +* Used the context a bit better ([0a0f586](https://github.com/jwpkg/gitbump/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) + +* Removed global logger ([064d4cc](https://github.com/jwpkg/gitbump/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) + +* cleanup some logger refs ([c964081](https://github.com/jwpkg/gitbump/commit/c9640819fe49127ab560e4ea1526d6690b331299)) + +### chore + +* changelog test and parameter simplification ([a814c61](https://github.com/jwpkg/gitbump/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) + +## [0.0.19](https://github.com/jwpkg/gitbump/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) + +### feat + +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) + +## [0.0.18](https://github.com/jwpkg/gitbump/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) + +### refactor + +* Refactored configuration and project initialization ([9f14c46](https://github.com/jwpkg/gitbump/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) + +* Default locations of properties ([cc30097](https://github.com/jwpkg/gitbump/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) + +* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/jwpkg/gitbump/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) + +* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/jwpkg/gitbump/commit/10870460fa1968c67e72308d1113269693190d23)) + +### fix + +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) + +## [0.0.17](https://github.com/jwpkg/gitbump/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) + +### fix + +* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/jwpkg/gitbump/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) + +## [0.0.15](https://github.com/jwpkg/gitbump/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) + +### fix + +* Changelog generation and parsing ([0816061](https://github.com/jwpkg/gitbump/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) + +## [0.0.14](https://github.com/jwpkg/gitbump/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) + +### fix + +* Add changelog to file list of package ([f7955f9](https://github.com/jwpkg/gitbump/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) + +## [0.0.13](https://github.com/jwpkg/gitbump/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) + +### feat + +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) + +### fix + +* Check for shallow repository ([372027f](https://github.com/jwpkg/gitbump/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) + +## [0.0.12](https://github.com/jwpkg/gitbump/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) + +### fix + +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) + +## [0.0.11](https://github.com/jwpkg/gitbump/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) + +### fix + +* License field ([83d3912](https://github.com/jwpkg/gitbump/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) + +## [0.0.10](https://github.com/jwpkg/gitbump/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) + +### fix + +* **release** Always publish license ([52529e4](https://github.com/jwpkg/gitbump/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) + +## [0.0.9](https://github.com/jwpkg/gitbump/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) + +### feat + +* Plugin management ([28fae48](https://github.com/jwpkg/gitbump/commit/28fae48dc211a2197a7120e6081ab479647a9762)) + +* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/jwpkg/gitbump/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) + +### licence + +* Updated licence ([c9f9e50](https://github.com/jwpkg/gitbump/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) + +### docs + +* Added homepage ([642fe6b](https://github.com/jwpkg/gitbump/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) + +## [0.0.8](https://github.com/jwpkg/gitbump/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) + +### fix + +* Github compare link ([2150b54](https://github.com/jwpkg/gitbump/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) + +## [0.0.7](https://github.com/jwpkg/gitbump/compare/0.0.6...0.0.7) (Fri Jan 26 2024) + +### feat + +* Allow explicit versions and bump types ([7541f21](https://github.com/jwpkg/gitbump/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) + +## [0.0.5](https://github.com/not_initialized/not_initialized/compare/0.0.4...0.0.5) (Fri Jan 26 2024) + +### fix + +* Pack status ([69429ec](https://github.com/not_initialized/not_initialized/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) + +## [0.0.4](https://github.com///compare/0.0.3...0.0.4) (Fri Jan 26 2024) + +### feat + +* platform plugins (#27) ([3f15c0d](https://github.com///commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) + +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) + +### feat + +* pltform plugin basics ([0e6c5f6](https://github.com/jwpkg/gitbump/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) + +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) + +### feat + +* pltform plugin basics ([0e6c5f6](https://github.com/jwpkg/gitbump/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) diff --git a/workspaces/packages/gitversion/LICENSE b/workspaces/packages/gitbump/LICENSE similarity index 100% rename from workspaces/packages/gitversion/LICENSE rename to workspaces/packages/gitbump/LICENSE diff --git a/workspaces/packages/gitversion/README.md b/workspaces/packages/gitbump/README.md similarity index 72% rename from workspaces/packages/gitversion/README.md rename to workspaces/packages/gitbump/README.md index 0fa17c1..35f87ac 100644 --- a/workspaces/packages/gitversion/README.md +++ b/workspaces/packages/gitbump/README.md @@ -1,8 +1,8 @@ -# Gitversion +# Gitbump -Gitversion is a complete customizable git-based release management system. Primarily focused on package releases. +Gitbump is a complete customizable git-based release management system. Primarily focused on package releases. -![NPM Version](https://img.shields.io/npm/v/%40cp-utils%2Fgitversion) +![NPM Version](https://img.shields.io/npm/v/gitbump) ## Key concepts @@ -17,9 +17,9 @@ Gitversion is a complete customizable git-based release management system. Prima ### Branch based release strategy -The core concept of gitversion evolves around branch detection and branch types. +The core concept of gitbump evolves around branch detection and branch types. -Gitversion defines the following types: +Gitbump defines the following types: - main/master branch (default branch name **'main'**) - release branches (default matches **'release/*'**) - feature branches (default matches **'feature/*'**) @@ -38,48 +38,48 @@ Depending on the detected branch types the system will make different choices: ### Tag based versioning -Like most release systems gitversion will add a tag for each release. This will follow the tag naming with a prefix (default 'v'). I.e. +Like most release systems gitbump will add a tag for each release. This will follow the tag naming with a prefix (default 'v'). I.e. - v1.0.0 - v1.2.3-next.0 -The difference of gitversion is that the tags are the only source of truth. It does not care about versions inside files and will keep them even on the default "0.0.0". +The difference of gitbump is that the tags are the only source of truth. It does not care about versions inside files and will keep them even on the default "0.0.0". There are two main advantages of this strategy: - One source of truth. Easy to see in git history what the current state is - No more merge conflicts due to mismatches of versions. Otherwise this will happen constantly with feature/release strategies -Gitversion has 2 commands to work with this git-only version strategy: +Gitbump has 2 commands to work with this git-only version strategy: #### Restore ```bash -yarn gitversion restore +yarn gitbump restore ``` The output will be something like: -![gitversion restore](./assets/restore.png) +![gitbump restore](./assets/restore.png) As you see with this you wil get all versions back in package.json files. #### Reset ```bash -yarn gitversion reset +yarn gitbump reset ``` The output will be something like: -![gitversion reset](./assets/reset.png) +![gitbump reset](./assets/reset.png) As you see with this you wil reset all versions back to '0.0.0'. ### Conventional commit based bumps -Gitversion works with the concept of a "bump". This is one of the key commands: +Gitbump works with the concept of a "bump". This is one of the key commands: ```bash -yarn gitversion bump +yarn gitbump bump ``` Bump will do the following steps: @@ -89,11 +89,11 @@ Bump will do the following steps: - Define a bump type based on the outcome - Update the workspaces with the new version - Udate the workspaces with the workspace specific changelogs -- Create a bump manifest in the **gitversion.out** folder containing versions and changelogs +- Create a bump manifest in the **gitbump.out** folder containing versions and changelogs ### Native monorepo support -Gitversion is build for monorepos with multiple workspaces. It will detect all (public) workspaces and use them during bump. +Gitbump is build for monorepos with multiple workspaces. It will detect all (public) workspaces and use them during bump. There are 2 main operation modes: - [global versioning](#Global-versioning) @@ -109,8 +109,8 @@ This will use unique versions per workspace in the mono repo. Based on the path ### Split stage publish -Gitversion is buld for usage within CI/CD pipelines. When building packages gitversion can be used in a pipeline like this: +Gitbump is buld for usage within CI/CD pipelines. When building packages gitbump can be used in a pipeline like this: ![Pipeline](./assets/pipeline.png) -This will allow you to run your time consuming steps in parallel with your build step. Only when all checks pass you have a (quick) publish stage. \ No newline at end of file +This will allow you to run your time consuming steps in parallel with your build step. Only when all checks pass you have a (quick) publish stage. diff --git a/workspaces/packages/gitversion/assets/pipeline.png b/workspaces/packages/gitbump/assets/pipeline.png similarity index 100% rename from workspaces/packages/gitversion/assets/pipeline.png rename to workspaces/packages/gitbump/assets/pipeline.png diff --git a/workspaces/packages/gitversion/assets/reset.png b/workspaces/packages/gitbump/assets/reset.png similarity index 100% rename from workspaces/packages/gitversion/assets/reset.png rename to workspaces/packages/gitbump/assets/reset.png diff --git a/workspaces/packages/gitversion/assets/restore.png b/workspaces/packages/gitbump/assets/restore.png similarity index 100% rename from workspaces/packages/gitversion/assets/restore.png rename to workspaces/packages/gitbump/assets/restore.png diff --git a/workspaces/packages/gitversion/bin/index-typescript.js b/workspaces/packages/gitbump/bin/index-typescript.js similarity index 100% rename from workspaces/packages/gitversion/bin/index-typescript.js rename to workspaces/packages/gitbump/bin/index-typescript.js diff --git a/workspaces/packages/gitversion/bin/index.js b/workspaces/packages/gitbump/bin/index.js similarity index 100% rename from workspaces/packages/gitversion/bin/index.js rename to workspaces/packages/gitbump/bin/index.js diff --git a/workspaces/packages/gitversion/package.json b/workspaces/packages/gitbump/package.json similarity index 88% rename from workspaces/packages/gitversion/package.json rename to workspaces/packages/gitbump/package.json index d02f7c3..fe30761 100644 --- a/workspaces/packages/gitversion/package.json +++ b/workspaces/packages/gitbump/package.json @@ -1,9 +1,9 @@ { - "name": "@cp-utils/gitversion", + "name": "gitbump", "packageManager": "yarn@4.0.2", "bin": "bin/index-typescript.js", "type": "commonjs", - "description": "Gitversion is a complete customizable git-based release management system", + "description": "Gitbump is a complete customizable git-based release management system", "keywords": [ "git", "npm", @@ -46,8 +46,8 @@ "license": "Apache-2.0", "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", - "directory": "workspaces/packages/gitversion" + "url": "https://github.com/jwpkg/gitbump", + "directory": "workspaces/packages/gitbump" }, "engines": { "node": ">=18.12.0" diff --git a/workspaces/packages/gitversion/src/bin.ts b/workspaces/packages/gitbump/src/bin.ts similarity index 100% rename from workspaces/packages/gitversion/src/bin.ts rename to workspaces/packages/gitbump/src/bin.ts diff --git a/workspaces/packages/gitversion/src/commands/bump.ts b/workspaces/packages/gitbump/src/commands/bump.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/bump.ts rename to workspaces/packages/gitbump/src/commands/bump.ts diff --git a/workspaces/packages/gitversion/src/commands/check.ts b/workspaces/packages/gitbump/src/commands/check.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/check.ts rename to workspaces/packages/gitbump/src/commands/check.ts diff --git a/workspaces/packages/gitversion/src/commands/context.ts b/workspaces/packages/gitbump/src/commands/context.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/context.ts rename to workspaces/packages/gitbump/src/commands/context.ts diff --git a/workspaces/packages/gitversion/src/commands/pack.ts b/workspaces/packages/gitbump/src/commands/pack.ts similarity index 98% rename from workspaces/packages/gitversion/src/commands/pack.ts rename to workspaces/packages/gitbump/src/commands/pack.ts index 7362b22..99ef71d 100644 --- a/workspaces/packages/gitversion/src/commands/pack.ts +++ b/workspaces/packages/gitbump/src/commands/pack.ts @@ -81,7 +81,7 @@ export class PackCommand extends GitVersionCommand { await packManifest.persist(); if (!packManifest.validateGitStatusDuringPack()) { - logger.reportWarning(`Git status has changed during ${colorize.blue('gitversion pack')} you should make sure your build artifacts (including gitversion.out) are correctly ignored in .gitignore`, true); + logger.reportWarning(`Git status has changed during ${colorize.blue('gitversion pack')} you should make sure your build artifacts (including gitbump.out) are correctly ignored in .gitignore`, true); } logger.endSection(section); diff --git a/workspaces/packages/gitversion/src/commands/publish.ts b/workspaces/packages/gitbump/src/commands/publish.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/publish.ts rename to workspaces/packages/gitbump/src/commands/publish.ts diff --git a/workspaces/packages/gitversion/src/commands/reset.ts b/workspaces/packages/gitbump/src/commands/reset.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/reset.ts rename to workspaces/packages/gitbump/src/commands/reset.ts diff --git a/workspaces/packages/gitversion/src/commands/restore.ts b/workspaces/packages/gitbump/src/commands/restore.ts similarity index 100% rename from workspaces/packages/gitversion/src/commands/restore.ts rename to workspaces/packages/gitbump/src/commands/restore.ts diff --git a/workspaces/packages/gitversion/src/core/application._test_.ts b/workspaces/packages/gitbump/src/core/application._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/application._test_.ts rename to workspaces/packages/gitbump/src/core/application._test_.ts diff --git a/workspaces/packages/gitversion/src/core/application.ts b/workspaces/packages/gitbump/src/core/application.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/application.ts rename to workspaces/packages/gitbump/src/core/application.ts diff --git a/workspaces/packages/gitversion/src/core/bump-manifest.ts b/workspaces/packages/gitbump/src/core/bump-manifest.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/bump-manifest.ts rename to workspaces/packages/gitbump/src/core/bump-manifest.ts diff --git a/workspaces/packages/gitversion/src/core/bump-utils._test_.ts b/workspaces/packages/gitbump/src/core/bump-utils._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/bump-utils._test_.ts rename to workspaces/packages/gitbump/src/core/bump-utils._test_.ts diff --git a/workspaces/packages/gitversion/src/core/bump-utils.ts b/workspaces/packages/gitbump/src/core/bump-utils.ts similarity index 98% rename from workspaces/packages/gitversion/src/core/bump-utils.ts rename to workspaces/packages/gitbump/src/core/bump-utils.ts index 50f294a..4fe414d 100644 --- a/workspaces/packages/gitversion/src/core/bump-utils.ts +++ b/workspaces/packages/gitbump/src/core/bump-utils.ts @@ -79,7 +79,7 @@ const bumpMap: Record = { performance: BumpType.PATCH, }; -// eslint-disable-next-line consistent-return + export function executeBump(version: string, branch: VersionBranch, bumpType: BumpType): string | null { if (bumpType === BumpType.NONE) { return null; diff --git a/workspaces/packages/gitversion/src/core/changelog._test_.ts b/workspaces/packages/gitbump/src/core/changelog._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/changelog._test_.ts rename to workspaces/packages/gitbump/src/core/changelog._test_.ts diff --git a/workspaces/packages/gitversion/src/core/changelog.ts b/workspaces/packages/gitbump/src/core/changelog.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/changelog.ts rename to workspaces/packages/gitbump/src/core/changelog.ts diff --git a/workspaces/packages/gitversion/src/core/configuration.ts b/workspaces/packages/gitbump/src/core/configuration.ts similarity index 92% rename from workspaces/packages/gitversion/src/core/configuration.ts rename to workspaces/packages/gitbump/src/core/configuration.ts index 66430a3..48e4fb5 100644 --- a/workspaces/packages/gitversion/src/core/configuration.ts +++ b/workspaces/packages/gitbump/src/core/configuration.ts @@ -67,7 +67,7 @@ export class Configuration implements IConfiguration, IUpdateableConfiguration { options: RequiredConfigurationOption; get stagingFolder() { - return join(this.cwd, 'gitversion.out'); + return join(this.cwd, 'gitbump.out'); } get packFolder() { @@ -87,12 +87,12 @@ export class Configuration implements IConfiguration, IUpdateableConfiguration { } static async loadCustomConfig(cwd: string, logger: LogReporter) { - if (existsSync(join(cwd, '.gitversion.cjs'))) { - const config = require(join(cwd, '.gitversion.cjs')); + if (existsSync(join(cwd, '.gitbump.cjs'))) { + const config = require(join(cwd, '.gitbump.cjs')); if (isBaseConfigurationOptions(config)) { return config; } else { - logger.reportError(`Invalid configuration found in ${colorize.magentaBright(join(cwd, './.gitversion.cjs'))}`, true); + logger.reportError(`Invalid configuration found in ${colorize.magentaBright(join(cwd, './.gitbump.cjs'))}`, true); return null; } } diff --git a/workspaces/packages/gitversion/src/core/constants.ts b/workspaces/packages/gitbump/src/core/constants.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/constants.ts rename to workspaces/packages/gitbump/src/core/constants.ts diff --git a/workspaces/packages/gitversion/src/core/conventional-commmit-utils._test_.ts b/workspaces/packages/gitbump/src/core/conventional-commmit-utils._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/conventional-commmit-utils._test_.ts rename to workspaces/packages/gitbump/src/core/conventional-commmit-utils._test_.ts diff --git a/workspaces/packages/gitversion/src/core/conventional-commmit-utils.ts b/workspaces/packages/gitbump/src/core/conventional-commmit-utils.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/conventional-commmit-utils.ts rename to workspaces/packages/gitbump/src/core/conventional-commmit-utils.ts diff --git a/workspaces/packages/gitversion/src/core/error-utils.ts b/workspaces/packages/gitbump/src/core/error-utils.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/error-utils.ts rename to workspaces/packages/gitbump/src/core/error-utils.ts diff --git a/workspaces/packages/gitversion/src/core/executor.ts b/workspaces/packages/gitbump/src/core/executor.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/executor.ts rename to workspaces/packages/gitbump/src/core/executor.ts diff --git a/workspaces/packages/gitversion/src/core/format-utils.ts b/workspaces/packages/gitbump/src/core/format-utils.ts similarity index 98% rename from workspaces/packages/gitversion/src/core/format-utils.ts rename to workspaces/packages/gitbump/src/core/format-utils.ts index 2d29369..b724a5e 100644 --- a/workspaces/packages/gitversion/src/core/format-utils.ts +++ b/workspaces/packages/gitbump/src/core/format-utils.ts @@ -33,7 +33,7 @@ export function formatVersion(version: SemVer | string) { return colorize.cyanBright(versionString); } -// eslint-disable-next-line consistent-return + export function formatBumpType(bumpType: BumpType) { switch (bumpType) { case BumpType.GRADUATE: return colorize.redBright('GRADUATE'); diff --git a/workspaces/packages/gitversion/src/core/git.ts b/workspaces/packages/gitbump/src/core/git.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/git.ts rename to workspaces/packages/gitbump/src/core/git.ts diff --git a/workspaces/packages/gitversion/src/core/log-reporter-platform.ts b/workspaces/packages/gitbump/src/core/log-reporter-platform.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/log-reporter-platform.ts rename to workspaces/packages/gitbump/src/core/log-reporter-platform.ts diff --git a/workspaces/packages/gitversion/src/core/log-reporter.ts b/workspaces/packages/gitbump/src/core/log-reporter.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/log-reporter.ts rename to workspaces/packages/gitbump/src/core/log-reporter.ts diff --git a/workspaces/packages/gitversion/src/core/markdown.ts b/workspaces/packages/gitbump/src/core/markdown.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/markdown.ts rename to workspaces/packages/gitbump/src/core/markdown.ts diff --git a/workspaces/packages/gitversion/src/core/pack-artifact.ts b/workspaces/packages/gitbump/src/core/pack-artifact.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/pack-artifact.ts rename to workspaces/packages/gitbump/src/core/pack-artifact.ts diff --git a/workspaces/packages/gitversion/src/core/plugin-manager.ts b/workspaces/packages/gitbump/src/core/plugin-manager.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/plugin-manager.ts rename to workspaces/packages/gitbump/src/core/plugin-manager.ts diff --git a/workspaces/packages/gitversion/src/core/type-utils.ts b/workspaces/packages/gitbump/src/core/type-utils.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/type-utils.ts rename to workspaces/packages/gitbump/src/core/type-utils.ts diff --git a/workspaces/packages/gitversion/src/core/version-utils._test_.ts b/workspaces/packages/gitbump/src/core/version-utils._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/version-utils._test_.ts rename to workspaces/packages/gitbump/src/core/version-utils._test_.ts diff --git a/workspaces/packages/gitversion/src/core/version-utils.ts b/workspaces/packages/gitbump/src/core/version-utils.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/version-utils.ts rename to workspaces/packages/gitbump/src/core/version-utils.ts diff --git a/workspaces/packages/gitversion/src/core/workspace-utils.ts b/workspaces/packages/gitbump/src/core/workspace-utils.ts similarity index 100% rename from workspaces/packages/gitversion/src/core/workspace-utils.ts rename to workspaces/packages/gitbump/src/core/workspace-utils.ts diff --git a/workspaces/packages/gitversion/src/index.ts b/workspaces/packages/gitbump/src/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/index.ts rename to workspaces/packages/gitbump/src/index.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/azure-devops._test_.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/azure-devops._test_.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/git/azure-devops._test_.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/azure-devops._test_.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/azure-devops.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/azure-devops.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/git/azure-devops.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/azure-devops.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/default.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/default.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/git/default.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/default.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/github._test_.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/github._test_.ts similarity index 78% rename from workspaces/packages/gitversion/src/plugins/embedded/git/github._test_.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/github._test_.ts index 29169a3..828842b 100644 --- a/workspaces/packages/gitversion/src/plugins/embedded/git/github._test_.ts +++ b/workspaces/packages/gitbump/src/plugins/embedded/git/github._test_.ts @@ -2,7 +2,7 @@ import { GithubPlugin } from './github'; describe('Github platform', () => { test('Url parsing', () => { - expect(GithubPlugin.parseUrl('https://github.com/cp-utils/gitversion.git')).toStrictEqual({ + expect(GithubPlugin.parseUrl('https://github.com/jwpkg/gitbump.git')).toStrictEqual({ projectName: 'cp-utils', repoName: 'gitversion', }); diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/github.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/github.ts similarity index 95% rename from workspaces/packages/gitversion/src/plugins/embedded/git/github.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/github.ts index bd7aa82..c7d2693 100644 --- a/workspaces/packages/gitversion/src/plugins/embedded/git/github.ts +++ b/workspaces/packages/gitbump/src/plugins/embedded/git/github.ts @@ -12,7 +12,7 @@ export class GithubPlugin implements IPlugin { constructor(private git: Git, private projectName: string, private repoName: string) { } /** - * Git url has the format: https://github.com/cp-utils/gitversion.git or git@github.com:cp-utils/gitversion.git + * Git url has the format: https://github.com/jwpkg/gitbump.git or git@github.com:cp-utils/gitversion.git */ static parseUrl(url: string) { const result = /^(https:\/\/|git@)github.com(\/|:)(.+)\/(.+?)(\.git)?$/.exec(url); diff --git a/workspaces/packages/gitversion/src/plugins/embedded/git/index.ts b/workspaces/packages/gitbump/src/plugins/embedded/git/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/git/index.ts rename to workspaces/packages/gitbump/src/plugins/embedded/git/index.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/index.ts b/workspaces/packages/gitbump/src/plugins/embedded/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/index.ts rename to workspaces/packages/gitbump/src/plugins/embedded/index.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/node/index.ts b/workspaces/packages/gitbump/src/plugins/embedded/node/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/node/index.ts rename to workspaces/packages/gitbump/src/plugins/embedded/node/index.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/node/node-project.ts b/workspaces/packages/gitbump/src/plugins/embedded/node/node-project.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/node/node-project.ts rename to workspaces/packages/gitbump/src/plugins/embedded/node/node-project.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/node/npm.ts b/workspaces/packages/gitbump/src/plugins/embedded/node/npm.ts similarity index 99% rename from workspaces/packages/gitversion/src/plugins/embedded/node/npm.ts rename to workspaces/packages/gitbump/src/plugins/embedded/node/npm.ts index b77d5d8..b632ad0 100644 --- a/workspaces/packages/gitversion/src/plugins/embedded/node/npm.ts +++ b/workspaces/packages/gitbump/src/plugins/embedded/node/npm.ts @@ -52,7 +52,7 @@ export class NpmPlugin implements IPlugin, IPackManager { if (tmpDir) { await rm(tmpDir, { recursive: true }); } - } catch (e) { + } catch (_e) { } } } diff --git a/workspaces/packages/gitversion/src/plugins/embedded/node/pnpm.ts b/workspaces/packages/gitbump/src/plugins/embedded/node/pnpm.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/embedded/node/pnpm.ts rename to workspaces/packages/gitbump/src/plugins/embedded/node/pnpm.ts diff --git a/workspaces/packages/gitversion/src/plugins/embedded/node/yarn.ts b/workspaces/packages/gitbump/src/plugins/embedded/node/yarn.ts similarity index 94% rename from workspaces/packages/gitversion/src/plugins/embedded/node/yarn.ts rename to workspaces/packages/gitbump/src/plugins/embedded/node/yarn.ts index 1b8ae70..f3be646 100644 --- a/workspaces/packages/gitversion/src/plugins/embedded/node/yarn.ts +++ b/workspaces/packages/gitbump/src/plugins/embedded/node/yarn.ts @@ -47,7 +47,7 @@ export class YarnBerryPlugin implements IPlugin, IPackManager { async publish(packedPackage: PackedPackage, fileName: string, releaseTag: string, dryRun: boolean): Promise { const yarnWorkspace = this.yarnProject.workspaces.find(w => w.relativeCwd === packedPackage.packageRelativeCwd); if (!yarnWorkspace) { - throw new Error('Mismatch between yarn workspace and gitversion workspace. Please file a bug with your package folder details at https://github.com/cp-utils/gitversion/issues'); + throw new Error('Mismatch between yarn workspace and gitbump workspace. Please file a bug with your package folder details at https://github.com/jwpkg/gitbump/issues'); } else { yarnWorkspace.manifest.version = packedPackage.version; if (dryRun) { diff --git a/workspaces/packages/gitversion/src/plugins/external/index.ts b/workspaces/packages/gitbump/src/plugins/external/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/external/index.ts rename to workspaces/packages/gitbump/src/plugins/external/index.ts diff --git a/workspaces/packages/gitversion/src/plugins/external/ms-teams-payload.ts b/workspaces/packages/gitbump/src/plugins/external/ms-teams-payload.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/external/ms-teams-payload.ts rename to workspaces/packages/gitbump/src/plugins/external/ms-teams-payload.ts diff --git a/workspaces/packages/gitversion/src/plugins/external/ms-teams.ts b/workspaces/packages/gitbump/src/plugins/external/ms-teams.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/external/ms-teams.ts rename to workspaces/packages/gitbump/src/plugins/external/ms-teams.ts diff --git a/workspaces/packages/gitversion/src/plugins/index.ts b/workspaces/packages/gitbump/src/plugins/index.ts similarity index 100% rename from workspaces/packages/gitversion/src/plugins/index.ts rename to workspaces/packages/gitbump/src/plugins/index.ts diff --git a/workspaces/packages/gitversion/src/test/version-branch.ts b/workspaces/packages/gitbump/src/test/version-branch.ts similarity index 100% rename from workspaces/packages/gitversion/src/test/version-branch.ts rename to workspaces/packages/gitbump/src/test/version-branch.ts diff --git a/workspaces/packages/gitversion/tsconfig.json b/workspaces/packages/gitbump/tsconfig.json similarity index 100% rename from workspaces/packages/gitversion/tsconfig.json rename to workspaces/packages/gitbump/tsconfig.json diff --git a/workspaces/packages/gitversion-plugin-s3publish/CHANGELOG.md b/workspaces/packages/gitversion-plugin-s3publish/CHANGELOG.md deleted file mode 100644 index 4902e6f..0000000 --- a/workspaces/packages/gitversion-plugin-s3publish/CHANGELOG.md +++ /dev/null @@ -1,83 +0,0 @@ - -# Changelog - -All notable changes to this project will be documented in this file - - -## [0.0.50](https://github.com/cp-utils/gitversion/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) - - - -## [0.0.49](https://github.com/cp-utils/gitversion/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) - - - -## [0.0.48](https://github.com/cp-utils/gitversion/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) - - - -## [0.0.47](https://github.com/cp-utils/gitversion/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) - - - -## [0.0.46](https://github.com/cp-utils/gitversion/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) - - - -## [0.0.45](https://github.com/cp-utils/gitversion/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) - - - -## [0.0.44](https://github.com/cp-utils/gitversion/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) - - - -## [0.0.43](https://github.com/cp-utils/gitversion/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) - - - -## [0.0.42](https://github.com/cp-utils/gitversion/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) - - - -## [0.0.41](https://github.com/cp-utils/gitversion/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) - - - -## [0.0.40](https://github.com/cp-utils/gitversion/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) - - - -## [0.0.39](https://github.com/cp-utils/gitversion/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) - -### feat - -* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/cp-utils/gitversion/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) - -### fix - -* Changed back dry run ([f17be45](https://github.com/cp-utils/gitversion/commit/f17be4534b1939a4d68d959a8750aefa0328be60)) - -## [0.0.38](https://github.com/cp-utils/gitversion/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) - -### feat - -* Added release channel support for S3 plugin ([c890b0d](https://github.com/cp-utils/gitversion/commit/c890b0dc53c37e639e615771350d0d369dd1c8d1)) - -* Added exclusion ([4992c46](https://github.com/cp-utils/gitversion/commit/4992c46f518924aabc565b18904fab688d1e70b5)) - -## [0.0.37](https://github.com/cp-utils/gitversion/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) - -### feat - -* Latest docs ([c8d8a14](https://github.com/cp-utils/gitversion/commit/c8d8a14879c34350abfa8a408dc038eba3cbd569)) - -## [0.0.36](https://github.com/cp-utils/gitversion/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) - -### feat - -* Added S3 publish plugin ([5c28685](https://github.com/cp-utils/gitversion/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) - -## [1.0.0](https://github.com/cp-utils/gitversion/compare/v0.0.35...v1.0.0) (Wed Feb 14 2024) - - diff --git a/workspaces/packages/gitversion-plugin-s3publish/README.md b/workspaces/packages/gitversion-plugin-s3publish/README.md deleted file mode 100644 index 0242058..0000000 --- a/workspaces/packages/gitversion-plugin-s3publish/README.md +++ /dev/null @@ -1 +0,0 @@ -# gitversion-plugin-s3publish diff --git a/workspaces/packages/gitversion/CHANGELOG.md b/workspaces/packages/gitversion/CHANGELOG.md deleted file mode 100644 index bfdb0cd..0000000 --- a/workspaces/packages/gitversion/CHANGELOG.md +++ /dev/null @@ -1,549 +0,0 @@ - -# Changelog - -All notable changes to this project will be documented in this file - - -## [0.0.50](https://github.com/cp-utils/gitversion/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) - -### chroe - -* Changed unit tests ([6d05d4c](https://github.com/cp-utils/gitversion/commit/6d05d4c4d4466d2c42b019bde5996bee5d86ad38)) - -### feat - -* Added push changelogs options for features (#39) ([d5e1e7c](https://github.com/cp-utils/gitversion/commit/d5e1e7c0dd3f6a548c2f81f8e1e7f31c8bc33b81)) - -## [0.0.49](https://github.com/cp-utils/gitversion/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) - -### feat - -* Added debug logging on errors ([77a6886](https://github.com/cp-utils/gitversion/commit/77a6886f8674eefe3dd55769e2aee78a46c1e80b)) - -### fix - -* Cli handling ([a77368c](https://github.com/cp-utils/gitversion/commit/a77368c8019d380b98cb6d9b4a3a2ccacbfdd026)) - -## [0.0.48](https://github.com/cp-utils/gitversion/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) - -### fix - -* **azure** Fixed merge header detection ([e85bdbd](https://github.com/cp-utils/gitversion/commit/e85bdbd6b5e4da4c46325136ccb56d150a077a8f)) - -## [0.0.47](https://github.com/cp-utils/gitversion/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) - -### fix - -* Moved unshallow to restore step ([c08f211](https://github.com/cp-utils/gitversion/commit/c08f211cf66b2603b66c9215090ddeb326764c87)) - -## [0.0.46](https://github.com/cp-utils/gitversion/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) - -### fix - -* **yarn** Update workspace version before publish ([82834e9](https://github.com/cp-utils/gitversion/commit/82834e9450882f769c458d3f4816349c65bb7873)) - -## [0.0.45](https://github.com/cp-utils/gitversion/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) - -### fix - -* Use default access ([c64646c](https://github.com/cp-utils/gitversion/commit/c64646c87b7e665f6c1b24690cd380076520b858)) - -* reverted access change ([95dfa8d](https://github.com/cp-utils/gitversion/commit/95dfa8dc29b57525f8512d8abf7bedb5118f85bf)) - -## [0.0.44](https://github.com/cp-utils/gitversion/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) - -### fix - -* Added debug info ([5365748](https://github.com/cp-utils/gitversion/commit/5365748280a8ea0a891b61f6c60f7351a713c036)) - -## [0.0.43](https://github.com/cp-utils/gitversion/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) - -### fix - -* **bump** Unshallowing ([13a7461](https://github.com/cp-utils/gitversion/commit/13a746171657b92dded6c410c313e5456682a4cd)) - -## [0.0.42](https://github.com/cp-utils/gitversion/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) - -### fix - -* **azuredevops** Current branch from environment ([d220a00](https://github.com/cp-utils/gitversion/commit/d220a00d9ea2f72bfed0035720b31a4d92cdeb14)) - -## [0.0.41](https://github.com/cp-utils/gitversion/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) - -### feat - -* **config** Added git flags ([dce7bc8](https://github.com/cp-utils/gitversion/commit/dce7bc8a695d3fa103805de6fdf1ac4a92abaf55)) - -### fix - -* Default values ([f4e8646](https://github.com/cp-utils/gitversion/commit/f4e864670c72afe3761921609be9687fd3392987)) - -* Tests ([1e17c1d](https://github.com/cp-utils/gitversion/commit/1e17c1decb1c87f7b4ff7616e7576cbceb6bacbd)) - -## [0.0.40](https://github.com/cp-utils/gitversion/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) - -### fix - -* Don't reset after pack for now ([2c9d27a](https://github.com/cp-utils/gitversion/commit/2c9d27ae19a3bde1eb45bc2f1965c5217a03902d)) - -## [0.0.39](https://github.com/cp-utils/gitversion/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) - -### fix - -* Don't crash on non-existent node manifest ([00c4a01](https://github.com/cp-utils/gitversion/commit/00c4a011a60c6f3fecf1e813689147488a3887c9)) - -* Added error reporting details ([337764e](https://github.com/cp-utils/gitversion/commit/337764e48e68c2727c15aa6e3926e9dc35f33c54)) - -### feat - -* Changed feature bump behavior to a string based version ([f1cd71c](https://github.com/cp-utils/gitversion/commit/f1cd71c950b5eb67e2d7b88442dcf40f3c5aae4b)) - -## [0.0.38](https://github.com/cp-utils/gitversion/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) - - - -## [0.0.37](https://github.com/cp-utils/gitversion/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) - - - -## [0.0.36](https://github.com/cp-utils/gitversion/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) - -### feat - -* Added S3 publish plugin ([5c28685](https://github.com/cp-utils/gitversion/commit/5c28685fd28d0709bc4dcc93b81adac0233b3a14)) - -## [0.0.35](https://github.com/cp-utils/gitversion/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) - -### chore - -* Removed [bot] from push back git name ([ed48e5a](https://github.com/cp-utils/gitversion/commit/ed48e5a85a6e5493c4753bad08ef9475dc67908a)) - -### feat - -* Added additional branch detection patterns ([2ceba48](https://github.com/cp-utils/gitversion/commit/2ceba48b43367d931f99e0e4737b845392058508)) - -## [0.0.34](https://github.com/cp-utils/gitversion/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) - -### fix - -* user email ([994db2a](https://github.com/cp-utils/gitversion/commit/994db2a7b3429249357d0bfdf1ba5da5ca1324a5)) - -## [0.0.33](https://github.com/cp-utils/gitversion/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) - -### feat - -* Added git credentials ([a2d548c](https://github.com/cp-utils/gitversion/commit/a2d548c4d0740cdb5f18009cca5d14ee16512ac3)) - -## [0.0.32](https://github.com/cp-utils/gitversion/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) - -### feat - -* testing with push back from detached head ([a69435d](https://github.com/cp-utils/gitversion/commit/a69435d38f0bd0c328f178b105f6bab62f5117c9)) - -## [0.0.31](https://github.com/cp-utils/gitversion/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) - -### feat - -* Multiple main branch patterns accepted to make it more autodetect ([16a7b23](https://github.com/cp-utils/gitversion/commit/16a7b2323ab06aad34be979665563ffe7916b137)) - -### fix - -* unit test ([37f7a6e](https://github.com/cp-utils/gitversion/commit/37f7a6ecd8e127fc071284a06d067bbf02c9fcf4)) - -## [0.0.30](https://github.com/cp-utils/gitversion/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) - -### feat - -* Max concurrent pack commands ([1c699a2](https://github.com/cp-utils/gitversion/commit/1c699a245dc2a9e7fa04d0cb00a50628246c174f)) - -## [0.0.29](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) - -### feat - -* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/cp-utils/gitversion/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) - -## [0.0.29-gh-35.0](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) - - - -## [0.0.28](https://github.com/cp-utils/gitversion/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) - -### fix - -* branch lookup ([b44f6cc](https://github.com/cp-utils/gitversion/commit/b44f6ccc893bdb20ca465280220ba3c6e2ab5795)) - -## [0.0.27](https://github.com/cp-utils/gitversion/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) - -### fix - -* **pnpm** Package manager result parsing ([381c4b8](https://github.com/cp-utils/gitversion/commit/381c4b8be8940a14a54d31255554d0b223b24831)) - -## [0.0.26](https://github.com/cp-utils/gitversion/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) - -### feat - -* Multiple pack managers simultanious + pnpm ([4e792d2](https://github.com/cp-utils/gitversion/commit/4e792d2ffc314b3981e6a38ed8a1d269d3a233f8)) - -### fix - -* Pack locations ([541887a](https://github.com/cp-utils/gitversion/commit/541887aa3eb030f6fd421c64ebaae46ddaed0c56)) - -## [0.0.25](https://github.com/cp-utils/gitversion/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) - -### fix - -* Removed duplicate changelog updates ([c4c2141](https://github.com/cp-utils/gitversion/commit/c4c2141cae7e8d1f9c09f401959d58fb96f4400e)) - -## [0.0.24](https://github.com/cp-utils/gitversion/compare/v0.0.0...v0.0.24) (Mon Feb 05 2024) - -### fix - -* **pipeline** Removed fetch depth and reset versions ([eafee1b](https://github.com/cp-utils/gitversion/commit/eafee1b732b333b1d4c7af9204533d8798e07de3)) - -* **test** Test with merge message ([faa6ab1](https://github.com/cp-utils/gitversion/commit/faa6ab156a292f4b673d803f5ed7f20d0fdb7253)) - -* Pack status ([69429ec](https://github.com/cp-utils/gitversion/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) - -* Testing with github actions ([d6141af](https://github.com/cp-utils/gitversion/commit/d6141afcab377e70234aeaf057fbfe94186dba9e)) - -* Fixed git urls on github actions ([1009e17](https://github.com/cp-utils/gitversion/commit/1009e17a8279fc25a193a3c5ef2566fccc5705fc)) - -* Lazy search ([cb8cff3](https://github.com/cp-utils/gitversion/commit/cb8cff39d8336743023e23e96ded63d10c97c521)) - -* Github compare link ([2150b54](https://github.com/cp-utils/gitversion/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) - -* **release** Always publish license ([52529e4](https://github.com/cp-utils/gitversion/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) - -* License field ([83d3912](https://github.com/cp-utils/gitversion/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) - -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) - -* Check for shallow repository ([372027f](https://github.com/cp-utils/gitversion/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) - -* Add changelog to file list of package ([f7955f9](https://github.com/cp-utils/gitversion/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) - -* Changelog generation and parsing ([0816061](https://github.com/cp-utils/gitversion/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) - -* Bumptype parameter in bump ([e7a47da](https://github.com/cp-utils/gitversion/commit/e7a47da7f0faee4de9d8daf38a5a6ba830871dbf)) - -* Bump priority ([38b84d0](https://github.com/cp-utils/gitversion/commit/38b84d059ec76d392a84217dbecb5307db4ff78f)) - -* Changelog filename ([03226a5](https://github.com/cp-utils/gitversion/commit/03226a54d12268cc7142f79455d5baae24c1267a)) - -* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/cp-utils/gitversion/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) - -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) - -* Fixes after param changes ([c9db1cb](https://github.com/cp-utils/gitversion/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) - -* TSC Errors ([b049b9e](https://github.com/cp-utils/gitversion/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) - -* Linting ([56c98e3](https://github.com/cp-utils/gitversion/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) - -* Follow existing eol at end of file ([d6333fa](https://github.com/cp-utils/gitversion/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) - -* Npm and invalid origin reset ([8264003](https://github.com/cp-utils/gitversion/commit/826400353f725a902ac5577f9ac45b1697390165)) - -* Added no remote support ([c24aa3c](https://github.com/cp-utils/gitversion/commit/c24aa3ccc75e8635de5534b5ce807296fc69aea4)) - -* Missing await ([aa57130](https://github.com/cp-utils/gitversion/commit/aa57130e1b49755e5483e04be252eb1a279879b5)) - -* Restucture logging ([c29983a](https://github.com/cp-utils/gitversion/commit/c29983ab3779b001f98326193d614b14d02b7c43)) - -### feat - -* Basic logic ([d80772f](https://github.com/cp-utils/gitversion/commit/d80772fc419b5ff882f474fa4fe6f9bea0944020)) - -* Added commands ([b70966d](https://github.com/cp-utils/gitversion/commit/b70966d338552d9be55620c8809eb103cb55414f)) - -* First release (#23) ([f9b97fb](https://github.com/cp-utils/gitversion/commit/f9b97fba8a1ff8b66e1682997a5308159ca13b24)) - -* Added git status checks. Now breaks of when the steps can't be matched by gitstatus (#26) ([b0f593e](https://github.com/cp-utils/gitversion/commit/b0f593e594d5cd571f5f9f0aff11e16b637c7e08)) - -* platform plugins (#27) ([3f15c0d](https://github.com/cp-utils/gitversion/commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) - -* Allow explicit versions and bump types ([7541f21](https://github.com/cp-utils/gitversion/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) - -* Plugin management ([28fae48](https://github.com/cp-utils/gitversion/commit/28fae48dc211a2197a7120e6081ab479647a9762)) - -* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/cp-utils/gitversion/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) - -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) - -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) - -* NPM Plugin ([2d0f6f9](https://github.com/cp-utils/gitversion/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) - -### licence - -* Updated licence ([c9f9e50](https://github.com/cp-utils/gitversion/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) - -### docs - -* Added homepage ([642fe6b](https://github.com/cp-utils/gitversion/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) - -* Added keywords ([e2a46f5](https://github.com/cp-utils/gitversion/commit/e2a46f5cedb2b31c875517deb1cd1a19ad66beec)) - -### refactor - -* **workspaces** Extracted IWorkspace and IProject interfaces ([ecf960a](https://github.com/cp-utils/gitversion/commit/ecf960a1675b7294f5436daf114ceed5903fb124)) - -* **core** Plugins with configuration + IConfiguration interface extraction ([1468559](https://github.com/cp-utils/gitversion/commit/14685595988d26c635bcb38c0517611ebbb5bfb1)) - -* Refactored configuration and project initialization ([9f14c46](https://github.com/cp-utils/gitversion/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) - -* Default locations of properties ([cc30097](https://github.com/cp-utils/gitversion/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) - -* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/cp-utils/gitversion/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) - -* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/cp-utils/gitversion/commit/10870460fa1968c67e72308d1113269693190d23)) - -* Dryrun inside persisting actions ([0de0782](https://github.com/cp-utils/gitversion/commit/0de0782b2b254295062e8d7d1043631a114846ac)) - -* Used the context a bit better ([0a0f586](https://github.com/cp-utils/gitversion/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) - -* Removed global logger ([064d4cc](https://github.com/cp-utils/gitversion/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) - -* cleanup some logger refs ([c964081](https://github.com/cp-utils/gitversion/commit/c9640819fe49127ab560e4ea1526d6690b331299)) - -### chore - -* changelog test and parameter simplification ([a814c61](https://github.com/cp-utils/gitversion/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) - -## [0.0.22](https://github.com/cp-utils/gitversion/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) - -### fix - -* Npm and invalid origin reset ([8264003](https://github.com/cp-utils/gitversion/commit/826400353f725a902ac5577f9ac45b1697390165)) - -## [0.0.21](https://github.com/cp-utils/gitversion/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) - -### fix - -* Follow existing eol at end of file ([d6333fa](https://github.com/cp-utils/gitversion/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) - -## [0.0.20](https://github.com/cp-utils/gitversion/compare/v0.0.0...v0.0.20) (Sun Feb 04 2024) - -### fix - -* **pipeline** Removed fetch depth and reset versions ([eafee1b](https://github.com/cp-utils/gitversion/commit/eafee1b732b333b1d4c7af9204533d8798e07de3)) - -* **test** Test with merge message ([faa6ab1](https://github.com/cp-utils/gitversion/commit/faa6ab156a292f4b673d803f5ed7f20d0fdb7253)) - -* Pack status ([69429ec](https://github.com/cp-utils/gitversion/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) - -* Testing with github actions ([d6141af](https://github.com/cp-utils/gitversion/commit/d6141afcab377e70234aeaf057fbfe94186dba9e)) - -* Fixed git urls on github actions ([1009e17](https://github.com/cp-utils/gitversion/commit/1009e17a8279fc25a193a3c5ef2566fccc5705fc)) - -* Lazy search ([cb8cff3](https://github.com/cp-utils/gitversion/commit/cb8cff39d8336743023e23e96ded63d10c97c521)) - -* Github compare link ([2150b54](https://github.com/cp-utils/gitversion/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) - -* **release** Always publish license ([52529e4](https://github.com/cp-utils/gitversion/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) - -* License field ([83d3912](https://github.com/cp-utils/gitversion/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) - -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) - -* Check for shallow repository ([372027f](https://github.com/cp-utils/gitversion/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) - -* Add changelog to file list of package ([f7955f9](https://github.com/cp-utils/gitversion/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) - -* Changelog generation and parsing ([0816061](https://github.com/cp-utils/gitversion/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) - -* Bumptype parameter in bump ([e7a47da](https://github.com/cp-utils/gitversion/commit/e7a47da7f0faee4de9d8daf38a5a6ba830871dbf)) - -* Bump priority ([38b84d0](https://github.com/cp-utils/gitversion/commit/38b84d059ec76d392a84217dbecb5307db4ff78f)) - -* Changelog filename ([03226a5](https://github.com/cp-utils/gitversion/commit/03226a54d12268cc7142f79455d5baae24c1267a)) - -* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/cp-utils/gitversion/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) - -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) - -* Fixes after param changes ([c9db1cb](https://github.com/cp-utils/gitversion/commit/c9db1cb2ea9212a5feb97eb95a9a7016f13d4e65)) - -* TSC Errors ([b049b9e](https://github.com/cp-utils/gitversion/commit/b049b9ecae618d4efcffe159c75cc7a5ae3dc862)) - -* Linting ([56c98e3](https://github.com/cp-utils/gitversion/commit/56c98e35f8b24ab68361fc3f47c510b691662633)) - -### feat - -* Basic logic ([d80772f](https://github.com/cp-utils/gitversion/commit/d80772fc419b5ff882f474fa4fe6f9bea0944020)) - -* Added commands ([b70966d](https://github.com/cp-utils/gitversion/commit/b70966d338552d9be55620c8809eb103cb55414f)) - -* First release (#23) ([f9b97fb](https://github.com/cp-utils/gitversion/commit/f9b97fba8a1ff8b66e1682997a5308159ca13b24)) - -* Added git status checks. Now breaks of when the steps can't be matched by gitstatus (#26) ([b0f593e](https://github.com/cp-utils/gitversion/commit/b0f593e594d5cd571f5f9f0aff11e16b637c7e08)) - -* platform plugins (#27) ([3f15c0d](https://github.com/cp-utils/gitversion/commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) - -* Allow explicit versions and bump types ([7541f21](https://github.com/cp-utils/gitversion/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) - -* Plugin management ([28fae48](https://github.com/cp-utils/gitversion/commit/28fae48dc211a2197a7120e6081ab479647a9762)) - -* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/cp-utils/gitversion/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) - -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) - -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) - -* NPM Plugin ([2d0f6f9](https://github.com/cp-utils/gitversion/commit/2d0f6f976420ff6e1ecd410de8500615ee76e3b9)) - -### licence - -* Updated licence ([c9f9e50](https://github.com/cp-utils/gitversion/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) - -### docs - -* Added homepage ([642fe6b](https://github.com/cp-utils/gitversion/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) - -* Added keywords ([e2a46f5](https://github.com/cp-utils/gitversion/commit/e2a46f5cedb2b31c875517deb1cd1a19ad66beec)) - -### refactor - -* **workspaces** Extracted IWorkspace and IProject interfaces ([ecf960a](https://github.com/cp-utils/gitversion/commit/ecf960a1675b7294f5436daf114ceed5903fb124)) - -* **core** Plugins with configuration + IConfiguration interface extraction ([1468559](https://github.com/cp-utils/gitversion/commit/14685595988d26c635bcb38c0517611ebbb5bfb1)) - -* Refactored configuration and project initialization ([9f14c46](https://github.com/cp-utils/gitversion/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) - -* Default locations of properties ([cc30097](https://github.com/cp-utils/gitversion/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) - -* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/cp-utils/gitversion/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) - -* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/cp-utils/gitversion/commit/10870460fa1968c67e72308d1113269693190d23)) - -* Dryrun inside persisting actions ([0de0782](https://github.com/cp-utils/gitversion/commit/0de0782b2b254295062e8d7d1043631a114846ac)) - -* Used the context a bit better ([0a0f586](https://github.com/cp-utils/gitversion/commit/0a0f586017aa2321c5a939a4feedea2de026ada8)) - -* Removed global logger ([064d4cc](https://github.com/cp-utils/gitversion/commit/064d4cc3089b0f0a0adf10588c8165982a0986ff)) - -* cleanup some logger refs ([c964081](https://github.com/cp-utils/gitversion/commit/c9640819fe49127ab560e4ea1526d6690b331299)) - -### chore - -* changelog test and parameter simplification ([a814c61](https://github.com/cp-utils/gitversion/commit/a814c61f806c56e33505ad0746cbdbf218970bd0)) - -## [0.0.19](https://github.com/cp-utils/gitversion/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) - -### feat - -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) - -## [0.0.18](https://github.com/cp-utils/gitversion/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) - -### refactor - -* Refactored configuration and project initialization ([9f14c46](https://github.com/cp-utils/gitversion/commit/9f14c466a5139374d68ba0d19193e3d444097a26)) - -* Default locations of properties ([cc30097](https://github.com/cp-utils/gitversion/commit/cc300974f7316b960345d81eb9f420c60ef35e9a)) - -* Extracted project to be a plugin based nodeproject and prepare for other project types ([cfefcf1](https://github.com/cp-utils/gitversion/commit/cfefcf146c2c4c8ab5b3d13638f60e8be77c1bee)) - -* **plugins** Change plugin initialization for build-in plugins ([1087046](https://github.com/cp-utils/gitversion/commit/10870460fa1968c67e72308d1113269693190d23)) - -### fix - -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) - -## [0.0.17](https://github.com/cp-utils/gitversion/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) - -### fix - -* Push tags before changelog so we still have a tagged release when something happens. Should be refactored to get a bit cleaner ([77bdb8c](https://github.com/cp-utils/gitversion/commit/77bdb8cd66bddb39265979ba01df68d78b4eca58)) - -## [0.0.15](https://github.com/cp-utils/gitversion/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) - -### fix - -* Changelog generation and parsing ([0816061](https://github.com/cp-utils/gitversion/commit/0816061d3cb9ec27d4ff46d9b1d615ad6ad8ddaf)) - -## [0.0.14](https://github.com/cp-utils/gitversion/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) - -### fix - -* Add changelog to file list of package ([f7955f9](https://github.com/cp-utils/gitversion/commit/f7955f9a43971d91557c969bffcdea3f5194c0cc)) - -## [0.0.13](https://github.com/cp-utils/gitversion/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) - -### feat - -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) - -### fix - -* Check for shallow repository ([372027f](https://github.com/cp-utils/gitversion/commit/372027f1edfa724cfe0da959c9db9102ac82e9b8)) - -## [0.0.12](https://github.com/cp-utils/gitversion/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) - -### fix - -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) - -## [0.0.11](https://github.com/cp-utils/gitversion/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) - -### fix - -* License field ([83d3912](https://github.com/cp-utils/gitversion/commit/83d391234273b9515b4db6f73648f9446cf6cbe8)) - -## [0.0.10](https://github.com/cp-utils/gitversion/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) - -### fix - -* **release** Always publish license ([52529e4](https://github.com/cp-utils/gitversion/commit/52529e4f36c75eb8bbd50028a2f04c946b2ec9d9)) - -## [0.0.9](https://github.com/cp-utils/gitversion/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) - -### feat - -* Plugin management ([28fae48](https://github.com/cp-utils/gitversion/commit/28fae48dc211a2197a7120e6081ab479647a9762)) - -* Added parsed commits to manifest in order to improve release plugins ([f0c9717](https://github.com/cp-utils/gitversion/commit/f0c9717d4bc6c3eca25a79f997c7b2fa59a1c8a8)) - -### licence - -* Updated licence ([c9f9e50](https://github.com/cp-utils/gitversion/commit/c9f9e50ed67657e6710bfc48fa170fd0775383bc)) - -### docs - -* Added homepage ([642fe6b](https://github.com/cp-utils/gitversion/commit/642fe6b4e6532a63d499cc4895c2160c79d65a67)) - -## [0.0.8](https://github.com/cp-utils/gitversion/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) - -### fix - -* Github compare link ([2150b54](https://github.com/cp-utils/gitversion/commit/2150b542b93ada9adec84f9eb59a3e7c54ba2e12)) - -## [0.0.7](https://github.com/cp-utils/gitversion/compare/0.0.6...0.0.7) (Fri Jan 26 2024) - -### feat - -* Allow explicit versions and bump types ([7541f21](https://github.com/cp-utils/gitversion/commit/7541f21d89a007e3a7cf38de47574f4a2699211d)) - -## [0.0.5](https://github.com/not_initialized/not_initialized/compare/0.0.4...0.0.5) (Fri Jan 26 2024) - -### fix - -* Pack status ([69429ec](https://github.com/not_initialized/not_initialized/commit/69429eca2e6bb0846f57dba2c72780418e45da59)) - -## [0.0.4](https://github.com///compare/0.0.3...0.0.4) (Fri Jan 26 2024) - -### feat - -* platform plugins (#27) ([3f15c0d](https://github.com///commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) - -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) - -### feat - -* pltform plugin basics ([0e6c5f6](https://github.com/cp-utils/gitversion/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) - -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) - -### feat - -* pltform plugin basics ([0e6c5f6](https://github.com/cp-utils/gitversion/commit/0e6c5f6e17c703a4359f84f12e3e43d127a55406)) diff --git a/workspaces/packages/test-package-a-private/package.json b/workspaces/packages/test-package-a-private/package.json index 0a63673..ee52acb 100644 --- a/workspaces/packages/test-package-a-private/package.json +++ b/workspaces/packages/test-package-a-private/package.json @@ -1,11 +1,11 @@ { - "name": "@cp-utils-test/test-package-a-private", + "name": "@yarnpkg/test-package-a-private", "packageManager": "yarn@4.0.2", "version": "0.0.1", "private": true, "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", + "url": "https://github.com/jwpkg/gitbump", "directory": "workspaces/packages/test-package-a-private" }, "engines": { diff --git a/workspaces/packages/test-package-a/CHANGELOG.md b/workspaces/packages/test-package-a/CHANGELOG.md index 454ac57..c7baf21 100644 --- a/workspaces/packages/test-package-a/CHANGELOG.md +++ b/workspaces/packages/test-package-a/CHANGELOG.md @@ -4,189 +4,189 @@ All notable changes to this project will be documented in this file -## [0.0.50](https://github.com/cp-utils/gitversion/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) +## [0.0.50](https://github.com/jwpkg/gitbump/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) -## [0.0.49](https://github.com/cp-utils/gitversion/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) +## [0.0.49](https://github.com/jwpkg/gitbump/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) -## [0.0.48](https://github.com/cp-utils/gitversion/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) +## [0.0.48](https://github.com/jwpkg/gitbump/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) -## [0.0.47](https://github.com/cp-utils/gitversion/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) +## [0.0.47](https://github.com/jwpkg/gitbump/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) -## [0.0.46](https://github.com/cp-utils/gitversion/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) +## [0.0.46](https://github.com/jwpkg/gitbump/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) -## [0.0.45](https://github.com/cp-utils/gitversion/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) +## [0.0.45](https://github.com/jwpkg/gitbump/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) -## [0.0.44](https://github.com/cp-utils/gitversion/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) +## [0.0.44](https://github.com/jwpkg/gitbump/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) -## [0.0.43](https://github.com/cp-utils/gitversion/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) +## [0.0.43](https://github.com/jwpkg/gitbump/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) -## [0.0.42](https://github.com/cp-utils/gitversion/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) +## [0.0.42](https://github.com/jwpkg/gitbump/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) -## [0.0.41](https://github.com/cp-utils/gitversion/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) +## [0.0.41](https://github.com/jwpkg/gitbump/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) -## [0.0.40](https://github.com/cp-utils/gitversion/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) +## [0.0.40](https://github.com/jwpkg/gitbump/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) -## [0.0.39](https://github.com/cp-utils/gitversion/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) +## [0.0.39](https://github.com/jwpkg/gitbump/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) -## [0.0.38](https://github.com/cp-utils/gitversion/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) +## [0.0.38](https://github.com/jwpkg/gitbump/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) -## [0.0.37](https://github.com/cp-utils/gitversion/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) +## [0.0.37](https://github.com/jwpkg/gitbump/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) -## [0.0.36](https://github.com/cp-utils/gitversion/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) +## [0.0.36](https://github.com/jwpkg/gitbump/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) -## [0.0.35](https://github.com/cp-utils/gitversion/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) +## [0.0.35](https://github.com/jwpkg/gitbump/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) -## [0.0.34](https://github.com/cp-utils/gitversion/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) +## [0.0.34](https://github.com/jwpkg/gitbump/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) -## [0.0.33](https://github.com/cp-utils/gitversion/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) +## [0.0.33](https://github.com/jwpkg/gitbump/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) -## [0.0.32](https://github.com/cp-utils/gitversion/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) +## [0.0.32](https://github.com/jwpkg/gitbump/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) -## [0.0.31](https://github.com/cp-utils/gitversion/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) +## [0.0.31](https://github.com/jwpkg/gitbump/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) -## [0.0.30](https://github.com/cp-utils/gitversion/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) +## [0.0.30](https://github.com/jwpkg/gitbump/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) -## [0.0.29](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) +## [0.0.29](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) ### feat -* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/cp-utils/gitversion/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) +* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/jwpkg/gitbump/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) -## [0.0.29-gh-35.0](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) +## [0.0.29-gh-35.0](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) -## [0.0.28](https://github.com/cp-utils/gitversion/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) +## [0.0.28](https://github.com/jwpkg/gitbump/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) -## [0.0.27](https://github.com/cp-utils/gitversion/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) +## [0.0.27](https://github.com/jwpkg/gitbump/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) -## [0.0.26](https://github.com/cp-utils/gitversion/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) +## [0.0.26](https://github.com/jwpkg/gitbump/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) -## [0.0.25](https://github.com/cp-utils/gitversion/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) +## [0.0.25](https://github.com/jwpkg/gitbump/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) -## [0.0.24](https://github.com/cp-utils/gitversion/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) +## [0.0.24](https://github.com/jwpkg/gitbump/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) ### fix -* Restucture logging ([c29983a](https://github.com/cp-utils/gitversion/commit/c29983ab3779b001f98326193d614b14d02b7c43)) +* Restucture logging ([c29983a](https://github.com/jwpkg/gitbump/commit/c29983ab3779b001f98326193d614b14d02b7c43)) -## [0.0.22](https://github.com/cp-utils/gitversion/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) +## [0.0.22](https://github.com/jwpkg/gitbump/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) -## [0.0.21](https://github.com/cp-utils/gitversion/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) +## [0.0.21](https://github.com/jwpkg/gitbump/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) ### fix -* Follow existing eol at end of file ([d6333fa](https://github.com/cp-utils/gitversion/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) +* Follow existing eol at end of file ([d6333fa](https://github.com/jwpkg/gitbump/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) -## [0.0.20](https://github.com/cp-utils/gitversion/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) +## [0.0.20](https://github.com/jwpkg/gitbump/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) -## [0.0.19](https://github.com/cp-utils/gitversion/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) +## [0.0.19](https://github.com/jwpkg/gitbump/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) ### feat -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) -## [0.0.18](https://github.com/cp-utils/gitversion/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) +## [0.0.18](https://github.com/jwpkg/gitbump/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) ### fix -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) -## [0.0.17](https://github.com/cp-utils/gitversion/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) +## [0.0.17](https://github.com/jwpkg/gitbump/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) -## [0.0.15](https://github.com/cp-utils/gitversion/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) +## [0.0.15](https://github.com/jwpkg/gitbump/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) -## [0.0.14](https://github.com/cp-utils/gitversion/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) +## [0.0.14](https://github.com/jwpkg/gitbump/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) -## [0.0.13](https://github.com/cp-utils/gitversion/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) +## [0.0.13](https://github.com/jwpkg/gitbump/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) ### feat -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) -## [0.0.12](https://github.com/cp-utils/gitversion/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) +## [0.0.12](https://github.com/jwpkg/gitbump/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) ### fix -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) -## [0.0.11](https://github.com/cp-utils/gitversion/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) +## [0.0.11](https://github.com/jwpkg/gitbump/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) -## [0.0.10](https://github.com/cp-utils/gitversion/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) +## [0.0.10](https://github.com/jwpkg/gitbump/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) -## [0.0.9](https://github.com/cp-utils/gitversion/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) +## [0.0.9](https://github.com/jwpkg/gitbump/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) -## [0.0.8](https://github.com/cp-utils/gitversion/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) +## [0.0.8](https://github.com/jwpkg/gitbump/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) -## [0.0.7](https://github.com/cp-utils/gitversion/compare/0.0.6...0.0.7) (Fri Jan 26 2024) +## [0.0.7](https://github.com/jwpkg/gitbump/compare/0.0.6...0.0.7) (Fri Jan 26 2024) @@ -200,11 +200,11 @@ All notable changes to this project will be documented in this file * platform plugins (#27) ([3f15c0d](https://github.com///commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) # Changelog diff --git a/workspaces/packages/test-package-a/package.json b/workspaces/packages/test-package-a/package.json index 8976738..90809a8 100644 --- a/workspaces/packages/test-package-a/package.json +++ b/workspaces/packages/test-package-a/package.json @@ -1,10 +1,10 @@ { - "name": "@cp-utils-test/test-package-a", + "name": "@yarnpkg/test-package-a", "packageManager": "yarn@4.0.2", "version": "0.0.0", "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", + "url": "https://github.com/jwpkg/gitbump", "directory": "workspaces/packages/test-package-a" }, "files": [ diff --git a/workspaces/packages/test-package-b/CHANGELOG.md b/workspaces/packages/test-package-b/CHANGELOG.md index 454ac57..c7baf21 100644 --- a/workspaces/packages/test-package-b/CHANGELOG.md +++ b/workspaces/packages/test-package-b/CHANGELOG.md @@ -4,189 +4,189 @@ All notable changes to this project will be documented in this file -## [0.0.50](https://github.com/cp-utils/gitversion/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) +## [0.0.50](https://github.com/jwpkg/gitbump/compare/v0.0.49...v0.0.50) (Thu Jun 27 2024) -## [0.0.49](https://github.com/cp-utils/gitversion/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) +## [0.0.49](https://github.com/jwpkg/gitbump/compare/v0.0.48...v0.0.49) (Mon Apr 29 2024) -## [0.0.48](https://github.com/cp-utils/gitversion/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) +## [0.0.48](https://github.com/jwpkg/gitbump/compare/v0.0.47...v0.0.48) (Thu Apr 25 2024) -## [0.0.47](https://github.com/cp-utils/gitversion/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) +## [0.0.47](https://github.com/jwpkg/gitbump/compare/v0.0.46...v0.0.47) (Thu Apr 18 2024) -## [0.0.46](https://github.com/cp-utils/gitversion/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) +## [0.0.46](https://github.com/jwpkg/gitbump/compare/v0.0.45...v0.0.46) (Wed Apr 17 2024) -## [0.0.45](https://github.com/cp-utils/gitversion/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) +## [0.0.45](https://github.com/jwpkg/gitbump/compare/v0.0.44...v0.0.45) (Wed Apr 17 2024) -## [0.0.44](https://github.com/cp-utils/gitversion/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) +## [0.0.44](https://github.com/jwpkg/gitbump/compare/v0.0.43...v0.0.44) (Wed Apr 17 2024) -## [0.0.43](https://github.com/cp-utils/gitversion/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) +## [0.0.43](https://github.com/jwpkg/gitbump/compare/v0.0.42...v0.0.43) (Wed Mar 27 2024) -## [0.0.42](https://github.com/cp-utils/gitversion/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) +## [0.0.42](https://github.com/jwpkg/gitbump/compare/v0.0.41...v0.0.42) (Wed Mar 27 2024) -## [0.0.41](https://github.com/cp-utils/gitversion/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) +## [0.0.41](https://github.com/jwpkg/gitbump/compare/v0.0.40...v0.0.41) (Wed Mar 27 2024) -## [0.0.40](https://github.com/cp-utils/gitversion/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) +## [0.0.40](https://github.com/jwpkg/gitbump/compare/v0.0.39...v0.0.40) (Tue Feb 20 2024) -## [0.0.39](https://github.com/cp-utils/gitversion/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) +## [0.0.39](https://github.com/jwpkg/gitbump/compare/v0.0.38...v0.0.39) (Tue Feb 20 2024) -## [0.0.38](https://github.com/cp-utils/gitversion/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) +## [0.0.38](https://github.com/jwpkg/gitbump/compare/v0.0.37...v0.0.38) (Fri Feb 16 2024) -## [0.0.37](https://github.com/cp-utils/gitversion/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) +## [0.0.37](https://github.com/jwpkg/gitbump/compare/v0.0.36...v0.0.37) (Fri Feb 16 2024) -## [0.0.36](https://github.com/cp-utils/gitversion/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) +## [0.0.36](https://github.com/jwpkg/gitbump/compare/v0.0.35...v0.0.36) (Thu Feb 15 2024) -## [0.0.35](https://github.com/cp-utils/gitversion/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) +## [0.0.35](https://github.com/jwpkg/gitbump/compare/v0.0.34...v0.0.35) (Tue Feb 13 2024) -## [0.0.34](https://github.com/cp-utils/gitversion/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) +## [0.0.34](https://github.com/jwpkg/gitbump/compare/v0.0.33...v0.0.34) (Mon Feb 12 2024) -## [0.0.33](https://github.com/cp-utils/gitversion/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) +## [0.0.33](https://github.com/jwpkg/gitbump/compare/v0.0.32...v0.0.33) (Sat Feb 10 2024) -## [0.0.32](https://github.com/cp-utils/gitversion/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) +## [0.0.32](https://github.com/jwpkg/gitbump/compare/v0.0.31...v0.0.32) (Fri Feb 09 2024) -## [0.0.31](https://github.com/cp-utils/gitversion/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) +## [0.0.31](https://github.com/jwpkg/gitbump/compare/v0.0.30...v0.0.31) (Fri Feb 09 2024) -## [0.0.30](https://github.com/cp-utils/gitversion/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) +## [0.0.30](https://github.com/jwpkg/gitbump/compare/v0.0.29...v0.0.30) (Thu Feb 08 2024) -## [0.0.29](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) +## [0.0.29](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29) (Thu Feb 08 2024) ### feat -* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/cp-utils/gitversion/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) +* Yarn berry native publish through package import (#36) ([96233f0](https://github.com/jwpkg/gitbump/commit/96233f0165ea8106a0024b5ab11ebd7136b203f3)) -## [0.0.29-gh-35.0](https://github.com/cp-utils/gitversion/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) +## [0.0.29-gh-35.0](https://github.com/jwpkg/gitbump/compare/v0.0.28...v0.0.29-gh-35.0) (Thu Feb 08 2024) -## [0.0.28](https://github.com/cp-utils/gitversion/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) +## [0.0.28](https://github.com/jwpkg/gitbump/compare/v0.0.27...v0.0.28) (Wed Feb 07 2024) -## [0.0.27](https://github.com/cp-utils/gitversion/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) +## [0.0.27](https://github.com/jwpkg/gitbump/compare/v0.0.26...v0.0.27) (Tue Feb 06 2024) -## [0.0.26](https://github.com/cp-utils/gitversion/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) +## [0.0.26](https://github.com/jwpkg/gitbump/compare/v0.0.25...v0.0.26) (Tue Feb 06 2024) -## [0.0.25](https://github.com/cp-utils/gitversion/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) +## [0.0.25](https://github.com/jwpkg/gitbump/compare/v0.0.24...v0.0.25) (Tue Feb 06 2024) -## [0.0.24](https://github.com/cp-utils/gitversion/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) +## [0.0.24](https://github.com/jwpkg/gitbump/compare/v0.0.23...v0.0.24) (Mon Feb 05 2024) ### fix -* Restucture logging ([c29983a](https://github.com/cp-utils/gitversion/commit/c29983ab3779b001f98326193d614b14d02b7c43)) +* Restucture logging ([c29983a](https://github.com/jwpkg/gitbump/commit/c29983ab3779b001f98326193d614b14d02b7c43)) -## [0.0.22](https://github.com/cp-utils/gitversion/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) +## [0.0.22](https://github.com/jwpkg/gitbump/compare/v0.0.21...v0.0.22) (Mon Feb 05 2024) -## [0.0.21](https://github.com/cp-utils/gitversion/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) +## [0.0.21](https://github.com/jwpkg/gitbump/compare/v0.0.20...v0.0.21) (Mon Feb 05 2024) ### fix -* Follow existing eol at end of file ([d6333fa](https://github.com/cp-utils/gitversion/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) +* Follow existing eol at end of file ([d6333fa](https://github.com/jwpkg/gitbump/commit/d6333fa3630405d9b1ccbf1c470a75ed2c3db645)) -## [0.0.20](https://github.com/cp-utils/gitversion/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) +## [0.0.20](https://github.com/jwpkg/gitbump/compare/v0.0.19...v0.0.20) (Sun Feb 04 2024) -## [0.0.19](https://github.com/cp-utils/gitversion/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) +## [0.0.19](https://github.com/jwpkg/gitbump/compare/v0.0.18...v0.0.19) (Sat Feb 03 2024) ### feat -* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/cp-utils/gitversion/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) +* Extracted yarn in the yarn package manager plugin ([35c3362](https://github.com/jwpkg/gitbump/commit/35c3362e198cd8d9f82b35b97e465a76e5edeeaa)) -## [0.0.18](https://github.com/cp-utils/gitversion/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) +## [0.0.18](https://github.com/jwpkg/gitbump/compare/v0.0.17...v0.0.18) (Fri Feb 02 2024) ### fix -* Jest ([bdb5115](https://github.com/cp-utils/gitversion/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) +* Jest ([bdb5115](https://github.com/jwpkg/gitbump/commit/bdb5115c4dc6daabc5a0b9d6d275d1b09c843040)) -## [0.0.17](https://github.com/cp-utils/gitversion/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) +## [0.0.17](https://github.com/jwpkg/gitbump/compare/v0.0.16...v0.0.17) (Fri Feb 02 2024) -## [0.0.15](https://github.com/cp-utils/gitversion/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) +## [0.0.15](https://github.com/jwpkg/gitbump/compare/v0.0.14...v0.0.15) (Wed Jan 31 2024) -## [0.0.14](https://github.com/cp-utils/gitversion/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) +## [0.0.14](https://github.com/jwpkg/gitbump/compare/v0.0.13...v0.0.14) (Wed Jan 31 2024) -## [0.0.13](https://github.com/cp-utils/gitversion/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) +## [0.0.13](https://github.com/jwpkg/gitbump/compare/v0.0.12...v0.0.13) (Wed Jan 31 2024) ### feat -* Teams plugin detects independent versioning now ([32a2daa](https://github.com/cp-utils/gitversion/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) +* Teams plugin detects independent versioning now ([32a2daa](https://github.com/jwpkg/gitbump/commit/32a2daa7bdc229e3a99a1fc6f3b5e7f7a4a6603a)) -## [0.0.12](https://github.com/cp-utils/gitversion/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) +## [0.0.12](https://github.com/jwpkg/gitbump/compare/v0.0.11...v0.0.12) (Tue Jan 30 2024) ### fix -* readme assets ([a4ff2ad](https://github.com/cp-utils/gitversion/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) +* readme assets ([a4ff2ad](https://github.com/jwpkg/gitbump/commit/a4ff2ad3725f5012c16b07f5f9fc4346fcafffb8)) -## [0.0.11](https://github.com/cp-utils/gitversion/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) +## [0.0.11](https://github.com/jwpkg/gitbump/compare/v0.0.10...v0.0.11) (Tue Jan 30 2024) -## [0.0.10](https://github.com/cp-utils/gitversion/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) +## [0.0.10](https://github.com/jwpkg/gitbump/compare/v0.0.9...v0.0.10) (Tue Jan 30 2024) -## [0.0.9](https://github.com/cp-utils/gitversion/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) +## [0.0.9](https://github.com/jwpkg/gitbump/compare/v0.0.8...v0.0.9) (Tue Jan 30 2024) -## [0.0.8](https://github.com/cp-utils/gitversion/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) +## [0.0.8](https://github.com/jwpkg/gitbump/compare/v0.0.7...v0.0.8) (Fri Jan 26 2024) -## [0.0.7](https://github.com/cp-utils/gitversion/compare/0.0.6...0.0.7) (Fri Jan 26 2024) +## [0.0.7](https://github.com/jwpkg/gitbump/compare/0.0.6...0.0.7) (Fri Jan 26 2024) @@ -200,11 +200,11 @@ All notable changes to this project will be documented in this file * platform plugins (#27) ([3f15c0d](https://github.com///commit/3f15c0d0555dcb985d7e36dc91f5d7f753e45f13)) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) -## [0.0.4-platform-plugins.0](https://github.com/cp-utils/gitversion/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) +## [0.0.4-platform-plugins.0](https://github.com/jwpkg/gitbump/compare/0.0.3...0.0.4-platform-plugins.0) (Fri Jan 26 2024) # Changelog diff --git a/workspaces/packages/test-package-b/package.json b/workspaces/packages/test-package-b/package.json index 40a83d4..28acd55 100644 --- a/workspaces/packages/test-package-b/package.json +++ b/workspaces/packages/test-package-b/package.json @@ -1,10 +1,10 @@ { - "name": "@cp-utils-test/test-package-b", + "name": "@yarnpkg/test-package-b", "packageManager": "yarn@4.0.2", "version": "0.0.0", "repository": { "type": "git", - "url": "https://github.com/cp-utils/gitversion", + "url": "https://github.com/jwpkg/gitbump", "directory": "workspaces/packages/test-package-b" }, "files": [ diff --git a/yarn.config.cjs b/yarn.config.cjs index 679bce4..85a9c1e 100644 --- a/yarn.config.cjs +++ b/yarn.config.cjs @@ -1,7 +1,7 @@ /** @type {import('@yarnpkg/types')} */ const { defineConfig } = require('@yarnpkg/types'); -const { enforceGenericRules, enforceFieldsOnAllWorkspaces } = require('@cp-utils/constraints-config'); +const { enforceGenericRules, enforceFieldsOnAllWorkspaces } = require('@jwpkg/constraints-config'); module.exports = defineConfig({ diff --git a/yarn.lock b/yarn.lock index 233c8f1..a9d32c5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1318,100 +1318,6 @@ __metadata: languageName: node linkType: hard -"@cp-utils-test/test-package-a-private@workspace:workspaces/packages/test-package-a-private": - version: 0.0.0-use.local - resolution: "@cp-utils-test/test-package-a-private@workspace:workspaces/packages/test-package-a-private" - languageName: unknown - linkType: soft - -"@cp-utils-test/test-package-a@workspace:workspaces/packages/test-package-a": - version: 0.0.0-use.local - resolution: "@cp-utils-test/test-package-a@workspace:workspaces/packages/test-package-a" - languageName: unknown - linkType: soft - -"@cp-utils-test/test-package-b@workspace:workspaces/packages/test-package-b": - version: 0.0.0-use.local - resolution: "@cp-utils-test/test-package-b@workspace:workspaces/packages/test-package-b" - languageName: unknown - linkType: soft - -"@cp-utils/constraints-config@npm:^0.0.7": - version: 0.0.7 - resolution: "@cp-utils/constraints-config@npm:0.0.7" - dependencies: - "@yarnpkg/types": "npm:^4.0.0" - checksum: c2f8201464ee8590b547e557cbe31e0a2f4db6e6722fbcbfc3ad384561f092dfa03854a11b308b991fea05bb4c53b14406736c1c9f26bf837b5320088304d732 - languageName: node - linkType: hard - -"@cp-utils/eslint-config@npm:^0.0.6": - version: 0.0.6 - resolution: "@cp-utils/eslint-config@npm:0.0.6" - dependencies: - "@rushstack/eslint-patch": "npm:^1.2.0" - "@typescript-eslint/eslint-plugin": "npm:^5.59.2" - "@typescript-eslint/parser": "npm:^5.59.2" - eslint-plugin-arca: "npm:^0.16.0" - eslint-plugin-markdown: "npm:^3.0.1" - eslint-plugin-react: "npm:^7.33.2" - peerDependencies: - eslint: "*" - typescript: "*" - peerDependenciesMeta: - typescript: - optional: true - checksum: 9cd733338abf130c3b4073ab3531931b496747f6af2b2c853fe881f5e7ebbfd469d879aee25ac321371cd7a32688f6fac8610fff85d37f7314cba1686f001a86 - languageName: node - linkType: hard - -"@cp-utils/gitversion-s3publish@workspace:^, @cp-utils/gitversion-s3publish@workspace:workspaces/packages/gitversion-plugin-s3publish": - version: 0.0.0-use.local - resolution: "@cp-utils/gitversion-s3publish@workspace:workspaces/packages/gitversion-plugin-s3publish" - dependencies: - "@aws-sdk/client-s3": "npm:^3.515.0" - "@cp-utils/gitversion": "workspace:^" - "@types/archiver": "npm:^6" - "@types/jest": "npm:^29.5.12" - "@types/node": "npm:^20.11.19" - "@types/semver": "npm:^7.5.7" - archiver: "npm:^6.0.1" - glob: "npm:^10.3.10" - semver: "npm:^7.6.0" - ts-node: "npm:^10.9.2" - typescript: "npm:^5.3.3" - languageName: unknown - linkType: soft - -"@cp-utils/gitversion@workspace:^, @cp-utils/gitversion@workspace:workspaces/packages/gitversion": - version: 0.0.0-use.local - resolution: "@cp-utils/gitversion@workspace:workspaces/packages/gitversion" - dependencies: - "@types/jest": "npm:^29.5.12" - "@types/node": "npm:^20.11.19" - "@types/semver": "npm:^7.5.7" - "@yarnpkg/cli": "npm:^4.1.0" - "@yarnpkg/core": "npm:^4.0.3" - "@yarnpkg/fslib": "npm:^3.0.2" - "@yarnpkg/plugin-npm": "npm:^3.0.1" - "@yarnpkg/plugin-pack": "npm:^4.0.0" - axios: "npm:^1.6.5" - ci-info: "npm:^4.0.0" - clipanion: "npm:^4.0.0-rc.2" - colorize-node: "npm:^0.5.0" - cross-spawn: "npm:^7.0.3" - cross-spawn-extra: "npm:^2.1.0" - glob: "npm:^10.3.10" - queue-promise: "npm:^2.2.1" - semver: "npm:^7.6.0" - ts-node: "npm:^10.9.2" - typanion: "npm:^3.14.0" - typescript: "npm:^5.3.3" - bin: - gitversion: bin/index-typescript.js - languageName: unknown - linkType: soft - "@cspotcode/source-map-support@npm:^0.8.0": version: 0.8.1 resolution: "@cspotcode/source-map-support@npm:0.8.1" @@ -1625,7 +1531,7 @@ __metadata: languageName: node linkType: hard -"@eslint-community/eslint-utils@npm:^4.2.0": +"@eslint-community/eslint-utils@npm:^4.2.0, @eslint-community/eslint-utils@npm:^4.4.0": version: 4.4.0 resolution: "@eslint-community/eslint-utils@npm:4.4.0" dependencies: @@ -1636,45 +1542,52 @@ __metadata: languageName: node linkType: hard -"@eslint-community/regexpp@npm:^4.4.0, @eslint-community/regexpp@npm:^4.6.1": - version: 4.10.0 - resolution: "@eslint-community/regexpp@npm:4.10.0" - checksum: c5f60ef1f1ea7649fa7af0e80a5a79f64b55a8a8fa5086de4727eb4c86c652aedee407a9c143b8995d2c0b2d75c1222bec9ba5d73dbfc1f314550554f0979ef4 +"@eslint-community/regexpp@npm:^4.10.0, @eslint-community/regexpp@npm:^4.11.0": + version: 4.11.0 + resolution: "@eslint-community/regexpp@npm:4.11.0" + checksum: 0f6328869b2741e2794da4ad80beac55cba7de2d3b44f796a60955b0586212ec75e6b0253291fd4aad2100ad471d1480d8895f2b54f1605439ba4c875e05e523 languageName: node linkType: hard -"@eslint/eslintrc@npm:^2.1.4": - version: 2.1.4 - resolution: "@eslint/eslintrc@npm:2.1.4" +"@eslint/config-array@npm:^0.17.1": + version: 0.17.1 + resolution: "@eslint/config-array@npm:0.17.1" + dependencies: + "@eslint/object-schema": "npm:^2.1.4" + debug: "npm:^4.3.1" + minimatch: "npm:^3.1.2" + checksum: b986a0a96f2b42467578968ce3d4ae3b9284e587f8490f2dcdc44ff1b8d30580c62b221da6e58d07b09e156c3050e2dc38267f9370521d9cafc099c4e30154ef + languageName: node + linkType: hard + +"@eslint/eslintrc@npm:^3.1.0": + version: 3.1.0 + resolution: "@eslint/eslintrc@npm:3.1.0" dependencies: ajv: "npm:^6.12.4" debug: "npm:^4.3.2" - espree: "npm:^9.6.0" - globals: "npm:^13.19.0" + espree: "npm:^10.0.1" + globals: "npm:^14.0.0" ignore: "npm:^5.2.0" import-fresh: "npm:^3.2.1" js-yaml: "npm:^4.1.0" minimatch: "npm:^3.1.2" strip-json-comments: "npm:^3.1.1" - checksum: 32f67052b81768ae876c84569ffd562491ec5a5091b0c1e1ca1e0f3c24fb42f804952fdd0a137873bc64303ba368a71ba079a6f691cee25beee9722d94cc8573 + checksum: 5b7332ed781edcfc98caa8dedbbb843abfb9bda2e86538529c843473f580e40c69eb894410eddc6702f487e9ee8f8cfa8df83213d43a8fdb549f23ce06699167 languageName: node linkType: hard -"@eslint/js@npm:8.56.0": - version: 8.56.0 - resolution: "@eslint/js@npm:8.56.0" - checksum: 60b3a1cf240e2479cec9742424224465dc50e46d781da1b7f5ef240501b2d1202c225bd456207faac4b34a64f4765833345bc4ddffd00395e1db40fa8c426f5a +"@eslint/js@npm:9.9.0": + version: 9.9.0 + resolution: "@eslint/js@npm:9.9.0" + checksum: 6ec9f1f0d576132444d6a5c66a8a08b0be9444e3ebb563fa6a6bebcf5299df3da7e454dc04c0fa601bb811197f00764b3a04430d8458cdb8e3a4677993d23f30 languageName: node linkType: hard -"@humanwhocodes/config-array@npm:^0.11.13": - version: 0.11.14 - resolution: "@humanwhocodes/config-array@npm:0.11.14" - dependencies: - "@humanwhocodes/object-schema": "npm:^2.0.2" - debug: "npm:^4.3.1" - minimatch: "npm:^3.0.5" - checksum: 66f725b4ee5fdd8322c737cb5013e19fac72d4d69c8bf4b7feb192fcb83442b035b92186f8e9497c220e58b2d51a080f28a73f7899bc1ab288c3be172c467541 +"@eslint/object-schema@npm:^2.1.4": + version: 2.1.4 + resolution: "@eslint/object-schema@npm:2.1.4" + checksum: e9885532ea70e483fb007bf1275968b05bb15ebaa506d98560c41a41220d33d342e19023d5f2939fed6eb59676c1bda5c847c284b4b55fce521d282004da4dda languageName: node linkType: hard @@ -1685,10 +1598,10 @@ __metadata: languageName: node linkType: hard -"@humanwhocodes/object-schema@npm:^2.0.2": - version: 2.0.2 - resolution: "@humanwhocodes/object-schema@npm:2.0.2" - checksum: 6fd83dc320231d71c4541d0244051df61f301817e9f9da9fd4cb7e44ec8aacbde5958c1665b0c419401ab935114fdf532a6ad5d4e7294b1af2f347dd91a6983f +"@humanwhocodes/retry@npm:^0.3.0": + version: 0.3.0 + resolution: "@humanwhocodes/retry@npm:0.3.0" + checksum: 7111ec4e098b1a428459b4e3be5a5d2a13b02905f805a2468f4fa628d072f0de2da26a27d04f65ea2846f73ba51f4204661709f05bfccff645e3cedef8781bb6 languageName: node linkType: hard @@ -2008,6 +1921,53 @@ __metadata: languageName: node linkType: hard +"@jwpkg/constraints-config@npm:^0.0.1": + version: 0.0.1 + resolution: "@jwpkg/constraints-config@npm:0.0.1" + dependencies: + "@yarnpkg/types": "npm:^4.0.0" + checksum: 7d6e45876afd1a5cba75c367a6d6e8d3e12561b25ec3c31fa81c60774094f0d45134a0eb7c68518c6a4d252c5e8196bb893ef4f9962d3c84ae3baf34ea471950 + languageName: node + linkType: hard + +"@jwpkg/eslint-config@npm:^0.0.2": + version: 0.0.2 + resolution: "@jwpkg/eslint-config@npm:0.0.2" + dependencies: + "@stylistic/eslint-plugin-ts": "npm:^2.6.2" + "@typescript-eslint/eslint-plugin": "npm:^8.1.0" + "@typescript-eslint/parser": "npm:^8.1.0" + eslint-plugin-arca: "npm:^0.16.0" + eslint-plugin-markdown: "npm:^5.1.0" + eslint-plugin-react: "npm:^7.35.0" + peerDependencies: + eslint: ^9 + typescript: "*" + peerDependenciesMeta: + typescript: + optional: true + checksum: 7ec7e229f4cfea46237f9d823c6e0c160de5892f22bbd974de7ed3d1a784dca6a4058a038194681549933d799098082017716369b15e0fd42cfbef38209858c9 + languageName: node + linkType: hard + +"@jwpkg/gitbump-s3publish@workspace:^, @jwpkg/gitbump-s3publish@workspace:workspaces/packages/gitbump-plugin-s3publish": + version: 0.0.0-use.local + resolution: "@jwpkg/gitbump-s3publish@workspace:workspaces/packages/gitbump-plugin-s3publish" + dependencies: + "@aws-sdk/client-s3": "npm:^3.515.0" + "@types/archiver": "npm:^6" + "@types/jest": "npm:^29.5.12" + "@types/node": "npm:^20.11.19" + "@types/semver": "npm:^7.5.7" + archiver: "npm:^6.0.1" + gitbump: "workspace:^" + glob: "npm:^10.3.10" + semver: "npm:^7.6.0" + ts-node: "npm:^10.9.2" + typescript: "npm:^5.3.3" + languageName: unknown + linkType: soft + "@nodelib/fs.scandir@npm:2.1.5": version: 2.1.5 resolution: "@nodelib/fs.scandir@npm:2.1.5" @@ -2155,13 +2115,6 @@ __metadata: languageName: node linkType: hard -"@rushstack/eslint-patch@npm:^1.2.0": - version: 1.7.0 - resolution: "@rushstack/eslint-patch@npm:1.7.0" - checksum: ac097ecd3988a448fa1660e5e20791c03ae4af6554388c9fb8cb90abc30325de08e5cda77dc3d86fd08c8573a0c7fcc153bcd36f979f2c91d59ff0b90beb52a7 - languageName: node - linkType: hard - "@shikijs/core@npm:1.0.0-beta.6, @shikijs/core@npm:^1.0.0-beta.3": version: 1.0.0-beta.6 resolution: "@shikijs/core@npm:1.0.0-beta.6" @@ -2774,6 +2727,33 @@ __metadata: languageName: node linkType: hard +"@stylistic/eslint-plugin-js@npm:2.6.3": + version: 2.6.3 + resolution: "@stylistic/eslint-plugin-js@npm:2.6.3" + dependencies: + "@types/eslint": "npm:^9.6.0" + acorn: "npm:^8.12.1" + eslint-visitor-keys: "npm:^4.0.0" + espree: "npm:^10.1.0" + peerDependencies: + eslint: ">=8.40.0" + checksum: 83b9a0d86d3a29ea4cc9c68ec810d94bc444a369f711c9d23f357577c2718c0fd8da9a801ac1da10966033e23d7706ccf703ecbf5b9f4e17759c4142b08cab80 + languageName: node + linkType: hard + +"@stylistic/eslint-plugin-ts@npm:^2.6.2": + version: 2.6.3 + resolution: "@stylistic/eslint-plugin-ts@npm:2.6.3" + dependencies: + "@stylistic/eslint-plugin-js": "npm:2.6.3" + "@types/eslint": "npm:^9.6.0" + "@typescript-eslint/utils": "npm:^8.1.0" + peerDependencies: + eslint: ">=8.40.0" + checksum: a1192dc1b8e46920bff8b3857095615c14007c1329c67e30af6a6eda9f46579b21eb13d9284627ae2bc4cda62bf0d676abf9757285b3f0e3378bff6faee869f7 + languageName: node + linkType: hard + "@szmarczak/http-timer@npm:^4.0.5": version: 4.0.6 resolution: "@szmarczak/http-timer@npm:4.0.6" @@ -2906,6 +2886,16 @@ __metadata: languageName: node linkType: hard +"@types/eslint@npm:^9.6.0": + version: 9.6.0 + resolution: "@types/eslint@npm:9.6.0" + dependencies: + "@types/estree": "npm:*" + "@types/json-schema": "npm:*" + checksum: 69301356bc73b85e381ae00931291de2e96d1cc49a112c592c74ee32b2f85412203dea6a333b4315fd9839bb14f364f265cbfe7743fc5a78492ee0326dd6a2c1 + languageName: node + linkType: hard + "@types/estree@npm:*, @types/estree@npm:1.0.5": version: 1.0.5 resolution: "@types/estree@npm:1.0.5" @@ -2964,7 +2954,7 @@ __metadata: languageName: node linkType: hard -"@types/json-schema@npm:*, @types/json-schema@npm:^7.0.9": +"@types/json-schema@npm:*": version: 7.0.15 resolution: "@types/json-schema@npm:7.0.15" checksum: a996a745e6c5d60292f36731dd41341339d4eeed8180bb09226e5c8d23759067692b1d88e5d91d72ee83dfc00d3aca8e7bd43ea120516c17922cbcb7c3e252db @@ -3058,7 +3048,7 @@ __metadata: languageName: node linkType: hard -"@types/semver@npm:^7.1.0, @types/semver@npm:^7.3.12": +"@types/semver@npm:^7.1.0": version: 7.5.6 resolution: "@types/semver@npm:7.5.6" checksum: 196dc32db5f68cbcde2e6a42bb4aa5cbb100fa2b7bd9c8c82faaaf3e03fbe063e205dbb4f03c7cdf53da2edb70a0d34c9f2e601b54281b377eb8dc1743226acd @@ -3123,131 +3113,119 @@ __metadata: languageName: node linkType: hard -"@typescript-eslint/eslint-plugin@npm:^5.59.2": - version: 5.62.0 - resolution: "@typescript-eslint/eslint-plugin@npm:5.62.0" +"@typescript-eslint/eslint-plugin@npm:^8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/eslint-plugin@npm:8.1.0" dependencies: - "@eslint-community/regexpp": "npm:^4.4.0" - "@typescript-eslint/scope-manager": "npm:5.62.0" - "@typescript-eslint/type-utils": "npm:5.62.0" - "@typescript-eslint/utils": "npm:5.62.0" - debug: "npm:^4.3.4" + "@eslint-community/regexpp": "npm:^4.10.0" + "@typescript-eslint/scope-manager": "npm:8.1.0" + "@typescript-eslint/type-utils": "npm:8.1.0" + "@typescript-eslint/utils": "npm:8.1.0" + "@typescript-eslint/visitor-keys": "npm:8.1.0" graphemer: "npm:^1.4.0" - ignore: "npm:^5.2.0" - natural-compare-lite: "npm:^1.4.0" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" + ignore: "npm:^5.3.1" + natural-compare: "npm:^1.4.0" + ts-api-utils: "npm:^1.3.0" peerDependencies: - "@typescript-eslint/parser": ^5.0.0 - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + "@typescript-eslint/parser": ^8.0.0 || ^8.0.0-alpha.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 3f40cb6bab5a2833c3544e4621b9fdacd8ea53420cadc1c63fac3b89cdf5c62be1e6b7bcf56976dede5db4c43830de298ced3db60b5494a3b961ca1b4bff9f2a + checksum: 7bbeae588f859b59c34d6a76cac06ef0fa605921b40c5d3b65b94829984280ea84c4dd3f5cb9ce2eb326f5563e9abb4c90ebff05c47f83f4def296c2ea1fa86c languageName: node linkType: hard -"@typescript-eslint/parser@npm:^5.59.2": - version: 5.62.0 - resolution: "@typescript-eslint/parser@npm:5.62.0" +"@typescript-eslint/parser@npm:^8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/parser@npm:8.1.0" dependencies: - "@typescript-eslint/scope-manager": "npm:5.62.0" - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/typescript-estree": "npm:5.62.0" + "@typescript-eslint/scope-manager": "npm:8.1.0" + "@typescript-eslint/types": "npm:8.1.0" + "@typescript-eslint/typescript-estree": "npm:8.1.0" + "@typescript-eslint/visitor-keys": "npm:8.1.0" debug: "npm:^4.3.4" peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 + eslint: ^8.57.0 || ^9.0.0 peerDependenciesMeta: typescript: optional: true - checksum: 315194b3bf39beb9bd16c190956c46beec64b8371e18d6bb72002108b250983eb1e186a01d34b77eb4045f4941acbb243b16155fbb46881105f65e37dc9e24d4 + checksum: b94b2d3ab5ca505484d100701fad6a04a5dc8d595029bac1b9f5b8a4a91d80fd605b0f65d230b36a97ab7e5d55eeb0c28af2ab63929a3e4ab8fdefd2a548c36b languageName: node linkType: hard -"@typescript-eslint/scope-manager@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/scope-manager@npm:5.62.0" +"@typescript-eslint/scope-manager@npm:8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/scope-manager@npm:8.1.0" dependencies: - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/visitor-keys": "npm:5.62.0" - checksum: 861253235576c1c5c1772d23cdce1418c2da2618a479a7de4f6114a12a7ca853011a1e530525d0931c355a8fd237b9cd828fac560f85f9623e24054fd024726f + "@typescript-eslint/types": "npm:8.1.0" + "@typescript-eslint/visitor-keys": "npm:8.1.0" + checksum: 2bcf8cd176a1819bddcae16c572e7da8fba821b995a91cd53d64d8d6b85a17f5a895522f281ba57e34929574bddd4d6684ee3e545ec4e8096be4c3198e253a9a languageName: node linkType: hard -"@typescript-eslint/type-utils@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/type-utils@npm:5.62.0" +"@typescript-eslint/type-utils@npm:8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/type-utils@npm:8.1.0" dependencies: - "@typescript-eslint/typescript-estree": "npm:5.62.0" - "@typescript-eslint/utils": "npm:5.62.0" + "@typescript-eslint/typescript-estree": "npm:8.1.0" + "@typescript-eslint/utils": "npm:8.1.0" debug: "npm:^4.3.4" - tsutils: "npm:^3.21.0" - peerDependencies: - eslint: "*" + ts-api-utils: "npm:^1.3.0" peerDependenciesMeta: typescript: optional: true - checksum: 93112e34026069a48f0484b98caca1c89d9707842afe14e08e7390af51cdde87378df29d213d3bbd10a7cfe6f91b228031b56218515ce077bdb62ddea9d9f474 + checksum: 62753941c4136e8d2daa72fe0410dea48e5317a6f12ece6382ca85e29912bd1b3f739b61d1060fc0a1f8c488dfc905beab4c8b8497951a21c3138a659c7271ec languageName: node linkType: hard -"@typescript-eslint/types@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/types@npm:5.62.0" - checksum: 7febd3a7f0701c0b927e094f02e82d8ee2cada2b186fcb938bc2b94ff6fbad88237afc304cbaf33e82797078bbbb1baf91475f6400912f8b64c89be79bfa4ddf +"@typescript-eslint/types@npm:8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/types@npm:8.1.0" + checksum: ceade44455f45974e68956016c4d1c6626580732f7f9675e14ffa63db80b551752b0df596b20473dae9f0dc6ed966e17417dc2cf36e1a82b6ab0edc97c5eaa50 languageName: node linkType: hard -"@typescript-eslint/typescript-estree@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/typescript-estree@npm:5.62.0" +"@typescript-eslint/typescript-estree@npm:8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/typescript-estree@npm:8.1.0" dependencies: - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/visitor-keys": "npm:5.62.0" + "@typescript-eslint/types": "npm:8.1.0" + "@typescript-eslint/visitor-keys": "npm:8.1.0" debug: "npm:^4.3.4" globby: "npm:^11.1.0" is-glob: "npm:^4.0.3" - semver: "npm:^7.3.7" - tsutils: "npm:^3.21.0" + minimatch: "npm:^9.0.4" + semver: "npm:^7.6.0" + ts-api-utils: "npm:^1.3.0" peerDependenciesMeta: typescript: optional: true - checksum: d7984a3e9d56897b2481940ec803cb8e7ead03df8d9cfd9797350be82ff765dfcf3cfec04e7355e1779e948da8f02bc5e11719d07a596eb1cb995c48a95e38cf + checksum: a7bc8275df1c79c4cb14ef086c56674316dd4907efec53eddca35d0b5220428b69c82178ce2d95138da2e398269c8bd0764cae8020a36417e411e35c3c47bc4b languageName: node linkType: hard -"@typescript-eslint/utils@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/utils@npm:5.62.0" +"@typescript-eslint/utils@npm:8.1.0, @typescript-eslint/utils@npm:^8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/utils@npm:8.1.0" dependencies: - "@eslint-community/eslint-utils": "npm:^4.2.0" - "@types/json-schema": "npm:^7.0.9" - "@types/semver": "npm:^7.3.12" - "@typescript-eslint/scope-manager": "npm:5.62.0" - "@typescript-eslint/types": "npm:5.62.0" - "@typescript-eslint/typescript-estree": "npm:5.62.0" - eslint-scope: "npm:^5.1.1" - semver: "npm:^7.3.7" + "@eslint-community/eslint-utils": "npm:^4.4.0" + "@typescript-eslint/scope-manager": "npm:8.1.0" + "@typescript-eslint/types": "npm:8.1.0" + "@typescript-eslint/typescript-estree": "npm:8.1.0" peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: f09b7d9952e4a205eb1ced31d7684dd55cee40bf8c2d78e923aa8a255318d97279825733902742c09d8690f37a50243f4c4d383ab16bd7aefaf9c4b438f785e1 + eslint: ^8.57.0 || ^9.0.0 + checksum: c95503a6bdcd98b1ff04d1adbf46377b2036b1c510d90a4a056401f996f775f06c3108c95fb81cd6babc9c97b73b91b8e848f0337bc508de8a49c993582f0e75 languageName: node linkType: hard -"@typescript-eslint/visitor-keys@npm:5.62.0": - version: 5.62.0 - resolution: "@typescript-eslint/visitor-keys@npm:5.62.0" +"@typescript-eslint/visitor-keys@npm:8.1.0": + version: 8.1.0 + resolution: "@typescript-eslint/visitor-keys@npm:8.1.0" dependencies: - "@typescript-eslint/types": "npm:5.62.0" - eslint-visitor-keys: "npm:^3.3.0" - checksum: 7c3b8e4148e9b94d9b7162a596a1260d7a3efc4e65199693b8025c71c4652b8042501c0bc9f57654c1e2943c26da98c0f77884a746c6ae81389fcb0b513d995d - languageName: node - linkType: hard - -"@ungap/structured-clone@npm:^1.2.0": - version: 1.2.0 - resolution: "@ungap/structured-clone@npm:1.2.0" - checksum: 8209c937cb39119f44eb63cf90c0b73e7c754209a6411c707be08e50e29ee81356dca1a848a405c8bdeebfe2f5e4f831ad310ae1689eeef65e7445c090c6657d + "@typescript-eslint/types": "npm:8.1.0" + eslint-visitor-keys: "npm:^3.4.3" + checksum: b7544dbb0eec1ddbfcd95c04b51b9a739c2e768c16d1c88508f976a2b0d1bc02fefb7491930e06e48073a5c07c6f488cd8403bba3a8b918888b93a88d5ac3869 languageName: node linkType: hard @@ -4113,6 +4091,24 @@ __metadata: languageName: node linkType: hard +"@yarnpkg/test-package-a-private@workspace:workspaces/packages/test-package-a-private": + version: 0.0.0-use.local + resolution: "@yarnpkg/test-package-a-private@workspace:workspaces/packages/test-package-a-private" + languageName: unknown + linkType: soft + +"@yarnpkg/test-package-a@workspace:workspaces/packages/test-package-a": + version: 0.0.0-use.local + resolution: "@yarnpkg/test-package-a@workspace:workspaces/packages/test-package-a" + languageName: unknown + linkType: soft + +"@yarnpkg/test-package-b@workspace:workspaces/packages/test-package-b": + version: 0.0.0-use.local + resolution: "@yarnpkg/test-package-b@workspace:workspaces/packages/test-package-b" + languageName: unknown + linkType: soft + "@yarnpkg/types@npm:^4.0.0": version: 4.0.0 resolution: "@yarnpkg/types@npm:4.0.0" @@ -4156,7 +4152,16 @@ __metadata: languageName: node linkType: hard -"acorn@npm:^8.4.1, acorn@npm:^8.9.0": +"acorn@npm:^8.12.0, acorn@npm:^8.12.1": + version: 8.12.1 + resolution: "acorn@npm:8.12.1" + bin: + acorn: bin/acorn + checksum: 51fb26cd678f914e13287e886da2d7021f8c2bc0ccc95e03d3e0447ee278dd3b40b9c57dc222acd5881adcf26f3edc40901a4953403232129e3876793cd17386 + languageName: node + linkType: hard + +"acorn@npm:^8.4.1": version: 8.11.3 resolution: "acorn@npm:8.11.3" bin: @@ -4352,6 +4357,16 @@ __metadata: languageName: node linkType: hard +"array-buffer-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "array-buffer-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.5" + is-array-buffer: "npm:^3.0.4" + checksum: f5cdf54527cd18a3d2852ddf73df79efec03829e7373a8322ef5df2b4ef546fb365c19c71d6b42d641cb6bfe0f1a2f19bc0ece5b533295f86d7c3d522f228917 + languageName: node + linkType: hard + "array-includes@npm:^3.1.6": version: 3.1.7 resolution: "array-includes@npm:3.1.7" @@ -4365,6 +4380,20 @@ __metadata: languageName: node linkType: hard +"array-includes@npm:^3.1.8": + version: 3.1.8 + resolution: "array-includes@npm:3.1.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.4" + is-string: "npm:^1.0.7" + checksum: 5b1004d203e85873b96ddc493f090c9672fd6c80d7a60b798da8a14bff8a670ff95db5aafc9abc14a211943f05220dacf8ea17638ae0af1a6a47b8c0b48ce370 + languageName: node + linkType: hard + "array-union@npm:^2.1.0": version: 2.1.0 resolution: "array-union@npm:2.1.0" @@ -4372,6 +4401,20 @@ __metadata: languageName: node linkType: hard +"array.prototype.findlast@npm:^1.2.5": + version: 1.2.5 + resolution: "array.prototype.findlast@npm:1.2.5" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-shim-unscopables: "npm:^1.0.2" + checksum: ddc952b829145ab45411b9d6adcb51a8c17c76bf89c9dd64b52d5dffa65d033da8c076ed2e17091779e83bc892b9848188d7b4b33453c5565e65a92863cb2775 + languageName: node + linkType: hard + "array.prototype.flat@npm:^1.3.1": version: 1.3.2 resolution: "array.prototype.flat@npm:1.3.2" @@ -4384,7 +4427,7 @@ __metadata: languageName: node linkType: hard -"array.prototype.flatmap@npm:^1.3.1": +"array.prototype.flatmap@npm:^1.3.2": version: 1.3.2 resolution: "array.prototype.flatmap@npm:1.3.2" dependencies: @@ -4396,16 +4439,16 @@ __metadata: languageName: node linkType: hard -"array.prototype.tosorted@npm:^1.1.1": - version: 1.1.2 - resolution: "array.prototype.tosorted@npm:1.1.2" +"array.prototype.tosorted@npm:^1.1.4": + version: 1.1.4 + resolution: "array.prototype.tosorted@npm:1.1.4" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - es-shim-unscopables: "npm:^1.0.0" - get-intrinsic: "npm:^1.2.1" - checksum: aa222a0f78e9cdb4ea4d788a11f0acc2b17c2226f0912917e1c89e0f0c4dcdd14414ac88afffbd03025f33501f2649907cfb80664e48aa2af3430c1fb1b0b416 + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.3" + es-errors: "npm:^1.3.0" + es-shim-unscopables: "npm:^1.0.2" + checksum: eb3c4c4fc0381b0bf6dba2ea4d48d367c2827a0d4236a5718d97caaccc6b78f11f4cadf090736e86301d295a6aa4967ed45568f92ced51be8cbbacd9ca410943 languageName: node linkType: hard @@ -4424,6 +4467,22 @@ __metadata: languageName: node linkType: hard +"arraybuffer.prototype.slice@npm:^1.0.3": + version: 1.0.3 + resolution: "arraybuffer.prototype.slice@npm:1.0.3" + dependencies: + array-buffer-byte-length: "npm:^1.0.1" + call-bind: "npm:^1.0.5" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.22.3" + es-errors: "npm:^1.2.1" + get-intrinsic: "npm:^1.2.3" + is-array-buffer: "npm:^3.0.4" + is-shared-array-buffer: "npm:^1.0.2" + checksum: d32754045bcb2294ade881d45140a5e52bda2321b9e98fa514797b7f0d252c4c5ab0d1edb34112652c62fa6a9398def568da63a4d7544672229afea283358c36 + languageName: node + linkType: hard + "asciinema-player@npm:^3.0.1": version: 3.7.0 resolution: "asciinema-player@npm:3.7.0" @@ -4458,15 +4517,6 @@ __metadata: languageName: node linkType: hard -"asynciterator.prototype@npm:^1.0.0": - version: 1.0.0 - resolution: "asynciterator.prototype@npm:1.0.0" - dependencies: - has-symbols: "npm:^1.0.3" - checksum: fb76850e57d931ff59fd16b6cddb79b0d34fe45f400b2c3480d38892e72cd089787401687dbdb7cdb14ece402c275d3e02a648760d1489cd493527129c4c6204 - languageName: node - linkType: hard - "asynckit@npm:^0.4.0": version: 0.4.0 resolution: "asynckit@npm:0.4.0" @@ -4488,6 +4538,15 @@ __metadata: languageName: node linkType: hard +"available-typed-arrays@npm:^1.0.7": + version: 1.0.7 + resolution: "available-typed-arrays@npm:1.0.7" + dependencies: + possible-typed-array-names: "npm:^1.0.0" + checksum: d07226ef4f87daa01bd0fe80f8f310982e345f372926da2e5296aecc25c41cab440916bbaa4c5e1034b453af3392f67df5961124e4b586df1e99793a1374bdb2 + languageName: node + linkType: hard + "axios@npm:^1.6.5": version: 1.6.5 resolution: "axios@npm:1.6.5" @@ -4765,6 +4824,19 @@ __metadata: languageName: node linkType: hard +"call-bind@npm:^1.0.6, call-bind@npm:^1.0.7": + version: 1.0.7 + resolution: "call-bind@npm:1.0.7" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + set-function-length: "npm:^1.2.1" + checksum: a3ded2e423b8e2a265983dba81c27e125b48eefb2655e7dfab6be597088da3d47c47976c24bc51b8fd9af1061f8f87b4ab78a314f3c77784b2ae2ba535ad8b8d + languageName: node + linkType: hard + "callable-instance2@npm:^1.0.0": version: 1.0.0 resolution: "callable-instance2@npm:1.0.0" @@ -5159,6 +5231,39 @@ __metadata: languageName: node linkType: hard +"data-view-buffer@npm:^1.0.1": + version: 1.0.1 + resolution: "data-view-buffer@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 8984119e59dbed906a11fcfb417d7d861936f16697a0e7216fe2c6c810f6b5e8f4a5281e73f2c28e8e9259027190ac4a33e2a65fdd7fa86ac06b76e838918583 + languageName: node + linkType: hard + +"data-view-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "data-view-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: b7d9e48a0cf5aefed9ab7d123559917b2d7e0d65531f43b2fd95b9d3a6b46042dd3fca597c42bba384e66b70d7ad66ff23932f8367b241f53d93af42cfe04ec2 + languageName: node + linkType: hard + +"data-view-byte-offset@npm:^1.0.0": + version: 1.0.0 + resolution: "data-view-byte-offset@npm:1.0.0" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-data-view: "npm:^1.0.1" + checksum: 21b0d2e53fd6e20cc4257c873bf6d36d77bd6185624b84076c0a1ddaa757b49aaf076254006341d35568e89f52eecd1ccb1a502cfb620f2beca04f48a6a62a8f + languageName: node + linkType: hard + "debug@npm:4, debug@npm:^4.0.0, debug@npm:^4.1.0, debug@npm:^4.1.1, debug@npm:^4.3.1, debug@npm:^4.3.2, debug@npm:^4.3.4": version: 4.3.4 resolution: "debug@npm:4.3.4" @@ -5224,6 +5329,17 @@ __metadata: languageName: node linkType: hard +"define-data-property@npm:^1.1.4": + version: 1.1.4 + resolution: "define-data-property@npm:1.1.4" + dependencies: + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + gopd: "npm:^1.0.1" + checksum: dea0606d1483eb9db8d930d4eac62ca0fa16738b0b3e07046cddfacf7d8c868bbe13fa0cb263eb91c7d0d527960dc3f2f2471a69ed7816210307f6744fe62e37 + languageName: node + linkType: hard + "define-properties@npm:^1.1.3, define-properties@npm:^1.2.0, define-properties@npm:^1.2.1": version: 1.2.1 resolution: "define-properties@npm:1.2.1" @@ -5288,15 +5404,6 @@ __metadata: languageName: node linkType: hard -"doctrine@npm:^3.0.0": - version: 3.0.0 - resolution: "doctrine@npm:3.0.0" - dependencies: - esutils: "npm:^2.0.2" - checksum: c96bdccabe9d62ab6fea9399fdff04a66e6563c1d6fb3a3a063e8d53c3bb136ba63e84250bbf63d00086a769ad53aef92d2bd483f03f837fc97b71cbee6b2520 - languageName: node - linkType: hard - "dotenv@npm:^16.3.1": version: 16.4.1 resolution: "dotenv@npm:16.4.1" @@ -5397,6 +5504,60 @@ __metadata: languageName: node linkType: hard +"es-abstract@npm:^1.17.5, es-abstract@npm:^1.22.3, es-abstract@npm:^1.23.0, es-abstract@npm:^1.23.2, es-abstract@npm:^1.23.3": + version: 1.23.3 + resolution: "es-abstract@npm:1.23.3" + dependencies: + array-buffer-byte-length: "npm:^1.0.1" + arraybuffer.prototype.slice: "npm:^1.0.3" + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + data-view-buffer: "npm:^1.0.1" + data-view-byte-length: "npm:^1.0.1" + data-view-byte-offset: "npm:^1.0.0" + es-define-property: "npm:^1.0.0" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + es-set-tostringtag: "npm:^2.0.3" + es-to-primitive: "npm:^1.2.1" + function.prototype.name: "npm:^1.1.6" + get-intrinsic: "npm:^1.2.4" + get-symbol-description: "npm:^1.0.2" + globalthis: "npm:^1.0.3" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + has-proto: "npm:^1.0.3" + has-symbols: "npm:^1.0.3" + hasown: "npm:^2.0.2" + internal-slot: "npm:^1.0.7" + is-array-buffer: "npm:^3.0.4" + is-callable: "npm:^1.2.7" + is-data-view: "npm:^1.0.1" + is-negative-zero: "npm:^2.0.3" + is-regex: "npm:^1.1.4" + is-shared-array-buffer: "npm:^1.0.3" + is-string: "npm:^1.0.7" + is-typed-array: "npm:^1.1.13" + is-weakref: "npm:^1.0.2" + object-inspect: "npm:^1.13.1" + object-keys: "npm:^1.1.1" + object.assign: "npm:^4.1.5" + regexp.prototype.flags: "npm:^1.5.2" + safe-array-concat: "npm:^1.1.2" + safe-regex-test: "npm:^1.0.3" + string.prototype.trim: "npm:^1.2.9" + string.prototype.trimend: "npm:^1.0.8" + string.prototype.trimstart: "npm:^1.0.8" + typed-array-buffer: "npm:^1.0.2" + typed-array-byte-length: "npm:^1.0.1" + typed-array-byte-offset: "npm:^1.0.2" + typed-array-length: "npm:^1.0.6" + unbox-primitive: "npm:^1.0.2" + which-typed-array: "npm:^1.1.15" + checksum: d27e9afafb225c6924bee9971a7f25f20c314f2d6cb93a63cada4ac11dcf42040896a6c22e5fb8f2a10767055ed4ddf400be3b1eb12297d281726de470b75666 + languageName: node + linkType: hard + "es-abstract@npm:^1.22.1": version: 1.22.3 resolution: "es-abstract@npm:1.22.3" @@ -5444,25 +5605,50 @@ __metadata: languageName: node linkType: hard -"es-iterator-helpers@npm:^1.0.12": - version: 1.0.15 - resolution: "es-iterator-helpers@npm:1.0.15" +"es-define-property@npm:^1.0.0": + version: 1.0.0 + resolution: "es-define-property@npm:1.0.0" dependencies: - asynciterator.prototype: "npm:^1.0.0" - call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.4" + checksum: 6bf3191feb7ea2ebda48b577f69bdfac7a2b3c9bcf97307f55fd6ef1bbca0b49f0c219a935aca506c993d8c5d8bddd937766cb760cd5e5a1071351f2df9f9aa4 + languageName: node + linkType: hard + +"es-errors@npm:^1.2.1, es-errors@npm:^1.3.0": + version: 1.3.0 + resolution: "es-errors@npm:1.3.0" + checksum: 0a61325670072f98d8ae3b914edab3559b6caa980f08054a3b872052640d91da01d38df55df797fcc916389d77fc92b8d5906cf028f4db46d7e3003abecbca85 + languageName: node + linkType: hard + +"es-iterator-helpers@npm:^1.0.19": + version: 1.0.19 + resolution: "es-iterator-helpers@npm:1.0.19" + dependencies: + call-bind: "npm:^1.0.7" define-properties: "npm:^1.2.1" - es-abstract: "npm:^1.22.1" - es-set-tostringtag: "npm:^2.0.1" - function-bind: "npm:^1.1.1" - get-intrinsic: "npm:^1.2.1" + es-abstract: "npm:^1.23.3" + es-errors: "npm:^1.3.0" + es-set-tostringtag: "npm:^2.0.3" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" globalthis: "npm:^1.0.3" - has-property-descriptors: "npm:^1.0.0" - has-proto: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + has-proto: "npm:^1.0.3" has-symbols: "npm:^1.0.3" - internal-slot: "npm:^1.0.5" + internal-slot: "npm:^1.0.7" iterator.prototype: "npm:^1.1.2" - safe-array-concat: "npm:^1.0.1" - checksum: b4c83f94bfe624260d5238092de3173989f76f1416b1d02c388aea3b2024174e5f5f0e864057311ac99790b57e836ca3545b6e77256b26066dac944519f5e6d6 + safe-array-concat: "npm:^1.1.2" + checksum: ae8f0241e383b3d197383b9842c48def7fce0255fb6ed049311b686ce295595d9e389b466f6a1b7d4e7bb92d82f5e716d6fae55e20c1040249bf976743b038c5 + languageName: node + linkType: hard + +"es-object-atoms@npm:^1.0.0": + version: 1.0.0 + resolution: "es-object-atoms@npm:1.0.0" + dependencies: + es-errors: "npm:^1.3.0" + checksum: 1fed3d102eb27ab8d983337bb7c8b159dd2a1e63ff833ec54eea1311c96d5b08223b433060ba240541ca8adba9eee6b0a60cdbf2f80634b784febc9cc8b687b4 languageName: node linkType: hard @@ -5477,7 +5663,18 @@ __metadata: languageName: node linkType: hard -"es-shim-unscopables@npm:^1.0.0": +"es-set-tostringtag@npm:^2.0.3": + version: 2.0.3 + resolution: "es-set-tostringtag@npm:2.0.3" + dependencies: + get-intrinsic: "npm:^1.2.4" + has-tostringtag: "npm:^1.0.2" + hasown: "npm:^2.0.1" + checksum: f22aff1585eb33569c326323f0b0d175844a1f11618b86e193b386f8be0ea9474cfbe46df39c45d959f7aa8f6c06985dc51dd6bce5401645ec5a74c4ceaa836a + languageName: node + linkType: hard + +"es-shim-unscopables@npm:^1.0.0, es-shim-unscopables@npm:^1.0.2": version: 1.0.2 resolution: "es-shim-unscopables@npm:1.0.2" dependencies: @@ -5612,104 +5809,99 @@ __metadata: languageName: node linkType: hard -"eslint-plugin-markdown@npm:^3.0.1": - version: 3.0.1 - resolution: "eslint-plugin-markdown@npm:3.0.1" +"eslint-plugin-markdown@npm:^5.1.0": + version: 5.1.0 + resolution: "eslint-plugin-markdown@npm:5.1.0" dependencies: mdast-util-from-markdown: "npm:^0.8.5" peerDependencies: - eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 - checksum: ba27a0f2115b85294591f3cf4e64c66b60cd508915cc3394869dda38c9e1f5ef230158f180cc21b5431085d4e4daac9f3f173078c00b54e659272318d0e6600d + eslint: ">=8" + checksum: ee1ba88e595912d2a35966b1d7dbdf63b8f55c2c9990985604c36ab8fb130d285ed6701d2117f70fc82a57b5eb6ed25ad02d96d35f2d6f6f9f2092b1bba3aabf languageName: node linkType: hard -"eslint-plugin-react@npm:^7.33.2": - version: 7.33.2 - resolution: "eslint-plugin-react@npm:7.33.2" +"eslint-plugin-react@npm:^7.35.0": + version: 7.35.0 + resolution: "eslint-plugin-react@npm:7.35.0" dependencies: - array-includes: "npm:^3.1.6" - array.prototype.flatmap: "npm:^1.3.1" - array.prototype.tosorted: "npm:^1.1.1" + array-includes: "npm:^3.1.8" + array.prototype.findlast: "npm:^1.2.5" + array.prototype.flatmap: "npm:^1.3.2" + array.prototype.tosorted: "npm:^1.1.4" doctrine: "npm:^2.1.0" - es-iterator-helpers: "npm:^1.0.12" + es-iterator-helpers: "npm:^1.0.19" estraverse: "npm:^5.3.0" + hasown: "npm:^2.0.2" jsx-ast-utils: "npm:^2.4.1 || ^3.0.0" minimatch: "npm:^3.1.2" - object.entries: "npm:^1.1.6" - object.fromentries: "npm:^2.0.6" - object.hasown: "npm:^1.1.2" - object.values: "npm:^1.1.6" + object.entries: "npm:^1.1.8" + object.fromentries: "npm:^2.0.8" + object.values: "npm:^1.2.0" prop-types: "npm:^15.8.1" - resolve: "npm:^2.0.0-next.4" + resolve: "npm:^2.0.0-next.5" semver: "npm:^6.3.1" - string.prototype.matchall: "npm:^4.0.8" + string.prototype.matchall: "npm:^4.0.11" + string.prototype.repeat: "npm:^1.0.0" peerDependencies: - eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 - checksum: f9b247861024bafc396c4bd3c9ac946604b3b23077251c98f23602aa22027a0c33a69157fd49564e4ff7f17b3678e5dc366a46c7ec42a09454d7cbce786d5001 - languageName: node - linkType: hard - -"eslint-scope@npm:^5.1.1": - version: 5.1.1 - resolution: "eslint-scope@npm:5.1.1" - dependencies: - esrecurse: "npm:^4.3.0" - estraverse: "npm:^4.1.1" - checksum: d30ef9dc1c1cbdece34db1539a4933fe3f9b14e1ffb27ecc85987902ee663ad7c9473bbd49a9a03195a373741e62e2f807c4938992e019b511993d163450e70a + eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 || ^9.7 + checksum: eedcc33de4b2cda91d56ae517a4f771a0c76da9c1e26c95543969012871381e11d4d6cffdf6fa8423036585c289eb3500f3f93fb1d314fb2624e0aa1e463305e languageName: node linkType: hard -"eslint-scope@npm:^7.2.2": - version: 7.2.2 - resolution: "eslint-scope@npm:7.2.2" +"eslint-scope@npm:^8.0.2": + version: 8.0.2 + resolution: "eslint-scope@npm:8.0.2" dependencies: esrecurse: "npm:^4.3.0" estraverse: "npm:^5.2.0" - checksum: 613c267aea34b5a6d6c00514e8545ef1f1433108097e857225fed40d397dd6b1809dffd11c2fde23b37ca53d7bf935fe04d2a18e6fc932b31837b6ad67e1c116 + checksum: 477f820647c8755229da913025b4567347fd1f0bf7cbdf3a256efff26a7e2e130433df052bd9e3d014025423dc00489bea47eb341002b15553673379c1a7dc36 languageName: node linkType: hard -"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.1, eslint-visitor-keys@npm:^3.4.3": +"eslint-visitor-keys@npm:^3.3.0, eslint-visitor-keys@npm:^3.4.3": version: 3.4.3 resolution: "eslint-visitor-keys@npm:3.4.3" checksum: 92708e882c0a5ffd88c23c0b404ac1628cf20104a108c745f240a13c332a11aac54f49a22d5762efbffc18ecbc9a580d1b7ad034bf5f3cc3307e5cbff2ec9820 languageName: node linkType: hard -"eslint@npm:^8.55.0": - version: 8.56.0 - resolution: "eslint@npm:8.56.0" +"eslint-visitor-keys@npm:^4.0.0": + version: 4.0.0 + resolution: "eslint-visitor-keys@npm:4.0.0" + checksum: 76619f42cf162705a1515a6868e6fc7567e185c7063a05621a8ac4c3b850d022661262c21d9f1fc1d144ecf0d5d64d70a3f43c15c3fc969a61ace0fb25698cf5 + languageName: node + linkType: hard + +"eslint@npm:^9.9.0": + version: 9.9.0 + resolution: "eslint@npm:9.9.0" dependencies: "@eslint-community/eslint-utils": "npm:^4.2.0" - "@eslint-community/regexpp": "npm:^4.6.1" - "@eslint/eslintrc": "npm:^2.1.4" - "@eslint/js": "npm:8.56.0" - "@humanwhocodes/config-array": "npm:^0.11.13" + "@eslint-community/regexpp": "npm:^4.11.0" + "@eslint/config-array": "npm:^0.17.1" + "@eslint/eslintrc": "npm:^3.1.0" + "@eslint/js": "npm:9.9.0" "@humanwhocodes/module-importer": "npm:^1.0.1" + "@humanwhocodes/retry": "npm:^0.3.0" "@nodelib/fs.walk": "npm:^1.2.8" - "@ungap/structured-clone": "npm:^1.2.0" ajv: "npm:^6.12.4" chalk: "npm:^4.0.0" cross-spawn: "npm:^7.0.2" debug: "npm:^4.3.2" - doctrine: "npm:^3.0.0" escape-string-regexp: "npm:^4.0.0" - eslint-scope: "npm:^7.2.2" - eslint-visitor-keys: "npm:^3.4.3" - espree: "npm:^9.6.1" - esquery: "npm:^1.4.2" + eslint-scope: "npm:^8.0.2" + eslint-visitor-keys: "npm:^4.0.0" + espree: "npm:^10.1.0" + esquery: "npm:^1.5.0" esutils: "npm:^2.0.2" fast-deep-equal: "npm:^3.1.3" - file-entry-cache: "npm:^6.0.1" + file-entry-cache: "npm:^8.0.0" find-up: "npm:^5.0.0" glob-parent: "npm:^6.0.2" - globals: "npm:^13.19.0" - graphemer: "npm:^1.4.0" ignore: "npm:^5.2.0" imurmurhash: "npm:^0.1.4" is-glob: "npm:^4.0.0" is-path-inside: "npm:^3.0.3" - js-yaml: "npm:^4.1.0" json-stable-stringify-without-jsonify: "npm:^1.0.1" levn: "npm:^0.4.1" lodash.merge: "npm:^4.6.2" @@ -5718,20 +5910,25 @@ __metadata: optionator: "npm:^0.9.3" strip-ansi: "npm:^6.0.1" text-table: "npm:^0.2.0" + peerDependencies: + jiti: "*" + peerDependenciesMeta: + jiti: + optional: true bin: eslint: bin/eslint.js - checksum: 2be598f7da1339d045ad933ffd3d4742bee610515cd2b0d9a2b8b729395a01d4e913552fff555b559fccaefd89d7b37632825789d1b06470608737ae69ab43fb + checksum: 3a22f68c99d75dcbafe6e2fef18d2b5bbcc960c2437f48a414ccf9ca214254733a18e6b79d07bbd374a2369a648413e421aabd07b11be3de5a44d5a4b9997877 languageName: node linkType: hard -"espree@npm:^9.6.0, espree@npm:^9.6.1": - version: 9.6.1 - resolution: "espree@npm:9.6.1" +"espree@npm:^10.0.1, espree@npm:^10.1.0": + version: 10.1.0 + resolution: "espree@npm:10.1.0" dependencies: - acorn: "npm:^8.9.0" + acorn: "npm:^8.12.0" acorn-jsx: "npm:^5.3.2" - eslint-visitor-keys: "npm:^3.4.1" - checksum: 1a2e9b4699b715347f62330bcc76aee224390c28bb02b31a3752e9d07549c473f5f986720483c6469cf3cfb3c9d05df612ffc69eb1ee94b54b739e67de9bb460 + eslint-visitor-keys: "npm:^4.0.0" + checksum: 52e6feaa77a31a6038f0c0e3fce93010a4625701925b0715cd54a2ae190b3275053a0717db698697b32653788ac04845e489d6773b508d6c2e8752f3c57470a0 languageName: node linkType: hard @@ -5745,12 +5942,12 @@ __metadata: languageName: node linkType: hard -"esquery@npm:^1.4.2": - version: 1.5.0 - resolution: "esquery@npm:1.5.0" +"esquery@npm:^1.5.0": + version: 1.6.0 + resolution: "esquery@npm:1.6.0" dependencies: estraverse: "npm:^5.1.0" - checksum: a084bd049d954cc88ac69df30534043fb2aee5555b56246493f42f27d1e168f00d9e5d4192e46f10290d312dc30dc7d58994d61a609c579c1219d636996f9213 + checksum: cb9065ec605f9da7a76ca6dadb0619dfb611e37a81e318732977d90fab50a256b95fee2d925fba7c2f3f0523aa16f91587246693bc09bc34d5a59575fe6e93d2 languageName: node linkType: hard @@ -5763,13 +5960,6 @@ __metadata: languageName: node linkType: hard -"estraverse@npm:^4.1.1": - version: 4.3.0 - resolution: "estraverse@npm:4.3.0" - checksum: 9cb46463ef8a8a4905d3708a652d60122a0c20bb58dec7e0e12ab0e7235123d74214fc0141d743c381813e1b992767e2708194f6f6e0f9fd00c1b4e0887b8b6d - languageName: node - linkType: hard - "estraverse@npm:^5.1.0, estraverse@npm:^5.2.0, estraverse@npm:^5.3.0": version: 5.3.0 resolution: "estraverse@npm:5.3.0" @@ -5912,12 +6102,12 @@ __metadata: languageName: node linkType: hard -"file-entry-cache@npm:^6.0.1": - version: 6.0.1 - resolution: "file-entry-cache@npm:6.0.1" +"file-entry-cache@npm:^8.0.0": + version: 8.0.0 + resolution: "file-entry-cache@npm:8.0.0" dependencies: - flat-cache: "npm:^3.0.4" - checksum: 58473e8a82794d01b38e5e435f6feaf648e3f36fdb3a56e98f417f4efae71ad1c0d4ebd8a9a7c50c3ad085820a93fc7494ad721e0e4ebc1da3573f4e1c3c7cdd + flat-cache: "npm:^4.0.0" + checksum: 9e2b5938b1cd9b6d7e3612bdc533afd4ac17b2fc646569e9a8abbf2eb48e5eb8e316bc38815a3ef6a1b456f4107f0d0f055a614ca613e75db6bf9ff4d72c1638 languageName: node linkType: hard @@ -5950,14 +6140,13 @@ __metadata: languageName: node linkType: hard -"flat-cache@npm:^3.0.4": - version: 3.2.0 - resolution: "flat-cache@npm:3.2.0" +"flat-cache@npm:^4.0.0": + version: 4.0.1 + resolution: "flat-cache@npm:4.0.1" dependencies: flatted: "npm:^3.2.9" - keyv: "npm:^4.5.3" - rimraf: "npm:^3.0.2" - checksum: b76f611bd5f5d68f7ae632e3ae503e678d205cf97a17c6ab5b12f6ca61188b5f1f7464503efae6dc18683ed8f0b41460beb48ac4b9ac63fe6201296a91ba2f75 + keyv: "npm:^4.5.4" + checksum: 2c59d93e9faa2523e4fda6b4ada749bed432cfa28c8e251f33b25795e426a1c6dbada777afb1f74fcfff33934fdbdea921ee738fcc33e71adc9d6eca984a1cfc languageName: node linkType: hard @@ -6068,7 +6257,7 @@ __metadata: languageName: node linkType: hard -"function-bind@npm:^1.1.1, function-bind@npm:^1.1.2": +"function-bind@npm:^1.1.2": version: 1.1.2 resolution: "function-bind@npm:1.1.2" checksum: d8680ee1e5fcd4c197e4ac33b2b4dce03c71f4d91717292785703db200f5c21f977c568d28061226f9b5900cbcd2c84463646134fd5337e7925e0942bc3f46d5 @@ -6108,15 +6297,28 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2": - version: 1.2.2 - resolution: "get-intrinsic@npm:1.2.2" +"get-intrinsic@npm:^1.0.2, get-intrinsic@npm:^1.1.1, get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.0, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2": + version: 1.2.2 + resolution: "get-intrinsic@npm:1.2.2" + dependencies: + function-bind: "npm:^1.1.2" + has-proto: "npm:^1.0.1" + has-symbols: "npm:^1.0.3" + hasown: "npm:^2.0.0" + checksum: 4e7fb8adc6172bae7c4fe579569b4d5238b3667c07931cd46b4eee74bbe6ff6b91329bec311a638d8e60f5b51f44fe5445693c6be89ae88d4b5c49f7ff12db0b + languageName: node + linkType: hard + +"get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": + version: 1.2.4 + resolution: "get-intrinsic@npm:1.2.4" dependencies: + es-errors: "npm:^1.3.0" function-bind: "npm:^1.1.2" has-proto: "npm:^1.0.1" has-symbols: "npm:^1.0.3" hasown: "npm:^2.0.0" - checksum: 4e7fb8adc6172bae7c4fe579569b4d5238b3667c07931cd46b4eee74bbe6ff6b91329bec311a638d8e60f5b51f44fe5445693c6be89ae88d4b5c49f7ff12db0b + checksum: 0a9b82c16696ed6da5e39b1267104475c47e3a9bdbe8b509dfe1710946e38a87be70d759f4bb3cda042d76a41ef47fe769660f3b7c0d1f68750299344ffb15b7 languageName: node linkType: hard @@ -6153,6 +6355,17 @@ __metadata: languageName: node linkType: hard +"get-symbol-description@npm:^1.0.2": + version: 1.0.2 + resolution: "get-symbol-description@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.5" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.4" + checksum: 867be6d63f5e0eb026cb3b0ef695ec9ecf9310febb041072d2e142f260bd91ced9eeb426b3af98791d1064e324e653424afa6fd1af17dee373bea48ae03162bc + languageName: node + linkType: hard + "git-up@npm:^7.0.0": version: 7.0.0 resolution: "git-up@npm:7.0.0" @@ -6172,6 +6385,35 @@ __metadata: languageName: node linkType: hard +"gitbump@workspace:^, gitbump@workspace:workspaces/packages/gitbump": + version: 0.0.0-use.local + resolution: "gitbump@workspace:workspaces/packages/gitbump" + dependencies: + "@types/jest": "npm:^29.5.12" + "@types/node": "npm:^20.11.19" + "@types/semver": "npm:^7.5.7" + "@yarnpkg/cli": "npm:^4.1.0" + "@yarnpkg/core": "npm:^4.0.3" + "@yarnpkg/fslib": "npm:^3.0.2" + "@yarnpkg/plugin-npm": "npm:^3.0.1" + "@yarnpkg/plugin-pack": "npm:^4.0.0" + axios: "npm:^1.6.5" + ci-info: "npm:^4.0.0" + clipanion: "npm:^4.0.0-rc.2" + colorize-node: "npm:^0.5.0" + cross-spawn: "npm:^7.0.3" + cross-spawn-extra: "npm:^2.1.0" + glob: "npm:^10.3.10" + queue-promise: "npm:^2.2.1" + semver: "npm:^7.6.0" + ts-node: "npm:^10.9.2" + typanion: "npm:^3.14.0" + typescript: "npm:^5.3.3" + bin: + gitbump: bin/index-typescript.js + languageName: unknown + linkType: soft + "glob-parent@npm:^5.1.2": version: 5.1.2 resolution: "glob-parent@npm:5.1.2" @@ -6239,12 +6481,10 @@ __metadata: languageName: node linkType: hard -"globals@npm:^13.19.0": - version: 13.24.0 - resolution: "globals@npm:13.24.0" - dependencies: - type-fest: "npm:^0.20.2" - checksum: d3c11aeea898eb83d5ec7a99508600fbe8f83d2cf00cbb77f873dbf2bcb39428eff1b538e4915c993d8a3b3473fa71eeebfe22c9bb3a3003d1e26b1f2c8a42cd +"globals@npm:^14.0.0": + version: 14.0.0 + resolution: "globals@npm:14.0.0" + checksum: b96ff42620c9231ad468d4c58ff42afee7777ee1c963013ff8aabe095a451d0ceeb8dcd8ef4cbd64d2538cef45f787a78ba3a9574f4a634438963e334471302d languageName: node linkType: hard @@ -6364,6 +6604,15 @@ __metadata: languageName: node linkType: hard +"has-property-descriptors@npm:^1.0.2": + version: 1.0.2 + resolution: "has-property-descriptors@npm:1.0.2" + dependencies: + es-define-property: "npm:^1.0.0" + checksum: 253c1f59e80bb476cf0dde8ff5284505d90c3bdb762983c3514d36414290475fe3fd6f574929d84de2a8eec00d35cf07cb6776205ff32efd7c50719125f00236 + languageName: node + linkType: hard + "has-proto@npm:^1.0.1": version: 1.0.1 resolution: "has-proto@npm:1.0.1" @@ -6371,6 +6620,13 @@ __metadata: languageName: node linkType: hard +"has-proto@npm:^1.0.3": + version: 1.0.3 + resolution: "has-proto@npm:1.0.3" + checksum: 35a6989f81e9f8022c2f4027f8b48a552de714938765d019dbea6bb547bd49ce5010a3c7c32ec6ddac6e48fc546166a3583b128f5a7add8b058a6d8b4afec205 + languageName: node + linkType: hard + "has-symbols@npm:^1.0.2, has-symbols@npm:^1.0.3": version: 1.0.3 resolution: "has-symbols@npm:1.0.3" @@ -6387,6 +6643,15 @@ __metadata: languageName: node linkType: hard +"has-tostringtag@npm:^1.0.2": + version: 1.0.2 + resolution: "has-tostringtag@npm:1.0.2" + dependencies: + has-symbols: "npm:^1.0.3" + checksum: a8b166462192bafe3d9b6e420a1d581d93dd867adb61be223a17a8d6dad147aa77a8be32c961bb2f27b3ef893cae8d36f564ab651f5e9b7938ae86f74027c48c + languageName: node + linkType: hard + "hasown@npm:^2.0.0": version: 2.0.0 resolution: "hasown@npm:2.0.0" @@ -6396,6 +6661,15 @@ __metadata: languageName: node linkType: hard +"hasown@npm:^2.0.1, hasown@npm:^2.0.2": + version: 2.0.2 + resolution: "hasown@npm:2.0.2" + dependencies: + function-bind: "npm:^1.1.2" + checksum: 3769d434703b8ac66b209a4cca0737519925bbdb61dd887f93a16372b14694c63ff4e797686d87c90f08168e81082248b9b028bad60d4da9e0d1148766f56eb9 + languageName: node + linkType: hard + "hookable@npm:^5.5.3": version: 5.5.3 resolution: "hookable@npm:5.5.3" @@ -6486,6 +6760,13 @@ __metadata: languageName: node linkType: hard +"ignore@npm:^5.3.1": + version: 5.3.2 + resolution: "ignore@npm:5.3.2" + checksum: f9f652c957983634ded1e7f02da3b559a0d4cc210fca3792cb67f1b153623c9c42efdc1c4121af171e295444459fc4a9201101fb041b1104a3c000bccb188337 + languageName: node + linkType: hard + "import-fresh@npm:^3.2.1": version: 3.3.0 resolution: "import-fresh@npm:3.3.0" @@ -6600,6 +6881,17 @@ __metadata: languageName: node linkType: hard +"internal-slot@npm:^1.0.7": + version: 1.0.7 + resolution: "internal-slot@npm:1.0.7" + dependencies: + es-errors: "npm:^1.3.0" + hasown: "npm:^2.0.0" + side-channel: "npm:^1.0.4" + checksum: f8b294a4e6ea3855fc59551bbf35f2b832cf01fd5e6e2a97f5c201a071cc09b49048f856e484b67a6c721da5e55736c5b6ddafaf19e2dbeb4a3ff1821680de6c + languageName: node + linkType: hard + "ip@npm:^2.0.0": version: 2.0.0 resolution: "ip@npm:2.0.0" @@ -6635,6 +6927,16 @@ __metadata: languageName: node linkType: hard +"is-array-buffer@npm:^3.0.4": + version: 3.0.4 + resolution: "is-array-buffer@npm:3.0.4" + dependencies: + call-bind: "npm:^1.0.2" + get-intrinsic: "npm:^1.2.1" + checksum: 42a49d006cc6130bc5424eae113e948c146f31f9d24460fc0958f855d9d810e6fd2e4519bf19aab75179af9c298ea6092459d8cafdec523cd19e529b26eab860 + languageName: node + linkType: hard + "is-arrayish@npm:^0.2.1": version: 0.2.1 resolution: "is-arrayish@npm:0.2.1" @@ -6697,6 +6999,15 @@ __metadata: languageName: node linkType: hard +"is-data-view@npm:^1.0.1": + version: 1.0.1 + resolution: "is-data-view@npm:1.0.1" + dependencies: + is-typed-array: "npm:^1.1.13" + checksum: a3e6ec84efe303da859107aed9b970e018e2bee7ffcb48e2f8096921a493608134240e672a2072577e5f23a729846241d9634806e8a0e51d9129c56d5f65442d + languageName: node + linkType: hard + "is-date-object@npm:^1.0.1, is-date-object@npm:^1.0.5": version: 1.0.5 resolution: "is-date-object@npm:1.0.5" @@ -6789,6 +7100,13 @@ __metadata: languageName: node linkType: hard +"is-negative-zero@npm:^2.0.3": + version: 2.0.3 + resolution: "is-negative-zero@npm:2.0.3" + checksum: bcdcf6b8b9714063ffcfa9929c575ac69bfdabb8f4574ff557dfc086df2836cf07e3906f5bbc4f2a5c12f8f3ba56af640c843cdfc74da8caed86c7c7d66fd08e + languageName: node + linkType: hard + "is-number-object@npm:^1.0.4": version: 1.0.7 resolution: "is-number-object@npm:1.0.7" @@ -6838,6 +7156,15 @@ __metadata: languageName: node linkType: hard +"is-shared-array-buffer@npm:^1.0.3": + version: 1.0.3 + resolution: "is-shared-array-buffer@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.7" + checksum: adc11ab0acbc934a7b9e5e9d6c588d4ec6682f6fea8cda5180721704fa32927582ede5b123349e32517fdadd07958973d24716c80e7ab198970c47acc09e59c7 + languageName: node + linkType: hard + "is-ssh@npm:^1.4.0": version: 1.4.0 resolution: "is-ssh@npm:1.4.0" @@ -6881,6 +7208,15 @@ __metadata: languageName: node linkType: hard +"is-typed-array@npm:^1.1.13": + version: 1.1.13 + resolution: "is-typed-array@npm:1.1.13" + dependencies: + which-typed-array: "npm:^1.1.14" + checksum: fa5cb97d4a80e52c2cc8ed3778e39f175a1a2ae4ddf3adae3187d69586a1fd57cfa0b095db31f66aa90331e9e3da79184cea9c6abdcd1abc722dc3c3edd51cca + languageName: node + linkType: hard + "is-weakmap@npm:^2.0.1": version: 2.0.1 resolution: "is-weakmap@npm:2.0.1" @@ -7560,7 +7896,7 @@ __metadata: languageName: node linkType: hard -"keyv@npm:^4.0.0, keyv@npm:^4.5.3": +"keyv@npm:^4.0.0, keyv@npm:^4.5.4": version: 4.5.4 resolution: "keyv@npm:4.5.4" dependencies: @@ -7842,7 +8178,7 @@ __metadata: languageName: node linkType: hard -"minimatch@npm:^3.0.4, minimatch@npm:^3.0.5, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": +"minimatch@npm:^3.0.4, minimatch@npm:^3.1.1, minimatch@npm:^3.1.2": version: 3.1.2 resolution: "minimatch@npm:3.1.2" dependencies: @@ -7869,6 +8205,15 @@ __metadata: languageName: node linkType: hard +"minimatch@npm:^9.0.4": + version: 9.0.5 + resolution: "minimatch@npm:9.0.5" + dependencies: + brace-expansion: "npm:^2.0.1" + checksum: de96cf5e35bdf0eab3e2c853522f98ffbe9a36c37797778d2665231ec1f20a9447a7e567cb640901f89e4daaa95ae5d70c65a9e8aa2bb0019b6facbc3c0575ed + languageName: node + linkType: hard + "minipass-collect@npm:^2.0.1": version: 2.0.1 resolution: "minipass-collect@npm:2.0.1" @@ -7992,13 +8337,6 @@ __metadata: languageName: node linkType: hard -"natural-compare-lite@npm:^1.4.0": - version: 1.4.0 - resolution: "natural-compare-lite@npm:1.4.0" - checksum: f6cef26f5044515754802c0fc475d81426f3b90fe88c20fabe08771ce1f736ce46e0397c10acb569a4dd0acb84c7f1ee70676122f95d5bfdd747af3a6c6bbaa8 - languageName: node - linkType: hard - "natural-compare@npm:^1.4.0": version: 1.4.0 resolution: "natural-compare@npm:1.4.0" @@ -8109,7 +8447,7 @@ __metadata: languageName: node linkType: hard -"object.assign@npm:^4.1.4": +"object.assign@npm:^4.1.4, object.assign@npm:^4.1.5": version: 4.1.5 resolution: "object.assign@npm:4.1.5" dependencies: @@ -8121,35 +8459,26 @@ __metadata: languageName: node linkType: hard -"object.entries@npm:^1.1.6": - version: 1.1.7 - resolution: "object.entries@npm:1.1.7" - dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - checksum: 3ad1899cc7bf14546bf28f4a9b363ae8690b90948fcfbcac4c808395435d760f26193d9cae95337ce0e3c1e5c1f4fa45f7b46b31b68d389e9e117fce38775d86 - languageName: node - linkType: hard - -"object.fromentries@npm:^2.0.6": - version: 2.0.7 - resolution: "object.fromentries@npm:2.0.7" +"object.entries@npm:^1.1.8": + version: 1.1.8 + resolution: "object.entries@npm:1.1.8" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - checksum: 071745c21f6fc9e6c914691f2532c1fb60ad967e5ddc52801d09958b5de926566299d07ae14466452a7efd29015f9145d6c09c573d93a0dc6f1683ee0ec2b93b + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: db9ea979d2956a3bc26c262da4a4d212d36f374652cc4c13efdd069c1a519c16571c137e2893d1c46e1cb0e15c88fd6419eaf410c945f329f09835487d7e65d3 languageName: node linkType: hard -"object.hasown@npm:^1.1.2": - version: 1.1.3 - resolution: "object.hasown@npm:1.1.3" +"object.fromentries@npm:^2.0.8": + version: 2.0.8 + resolution: "object.fromentries@npm:2.0.8" dependencies: - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - checksum: 8a41ba4fb1208a85c2275e9b5098071beacc24345b9a71ab98ef0a1c61b34dc74c6b460ff1e1884c33843d8f2553df64a10eec2b74b3ed009e3b2710c826bd2c + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-object-atoms: "npm:^1.0.0" + checksum: cd4327e6c3369cfa805deb4cbbe919bfb7d3aeebf0bcaba291bb568ea7169f8f8cdbcabe2f00b40db0c20cd20f08e11b5f3a5a36fb7dd3fe04850c50db3bf83b languageName: node linkType: hard @@ -8164,6 +8493,17 @@ __metadata: languageName: node linkType: hard +"object.values@npm:^1.2.0": + version: 1.2.0 + resolution: "object.values@npm:1.2.0" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 15809dc40fd6c5529501324fec5ff08570b7d70fb5ebbe8e2b3901afec35cf2b3dc484d1210c6c642cd3e7e0a5e18dd1d6850115337fef46bdae14ab0cb18ac3 + languageName: node + linkType: hard + "once@npm:^1.3.0, once@npm:^1.3.1, once@npm:^1.4.0": version: 1.4.0 resolution: "once@npm:1.4.0" @@ -8397,6 +8737,13 @@ __metadata: languageName: node linkType: hard +"possible-typed-array-names@npm:^1.0.0": + version: 1.0.0 + resolution: "possible-typed-array-names@npm:1.0.0" + checksum: d9aa22d31f4f7680e20269db76791b41c3a32c01a373e25f8a4813b4d45f7456bfc2b6d68f752dc4aab0e0bb0721cb3d76fb678c9101cb7a16316664bc2c73fd + languageName: node + linkType: hard + "postcss@npm:^8.4.32, postcss@npm:^8.4.33": version: 8.4.33 resolution: "postcss@npm:8.4.33" @@ -8668,7 +9015,7 @@ __metadata: languageName: node linkType: hard -"regexp.prototype.flags@npm:^1.5.0, regexp.prototype.flags@npm:^1.5.1": +"regexp.prototype.flags@npm:^1.5.1": version: 1.5.1 resolution: "regexp.prototype.flags@npm:1.5.1" dependencies: @@ -8679,6 +9026,18 @@ __metadata: languageName: node linkType: hard +"regexp.prototype.flags@npm:^1.5.2": + version: 1.5.2 + resolution: "regexp.prototype.flags@npm:1.5.2" + dependencies: + call-bind: "npm:^1.0.6" + define-properties: "npm:^1.2.1" + es-errors: "npm:^1.3.0" + set-function-name: "npm:^2.0.1" + checksum: 0f3fc4f580d9c349f8b560b012725eb9c002f36daa0041b3fbf6f4238cb05932191a4d7d5db3b5e2caa336d5150ad0402ed2be81f711f9308fe7e1a9bf9bd552 + languageName: node + linkType: hard + "require-directory@npm:^2.1.1": version: 2.1.1 resolution: "require-directory@npm:2.1.1" @@ -8736,7 +9095,7 @@ __metadata: languageName: node linkType: hard -"resolve@npm:^2.0.0-next.4": +"resolve@npm:^2.0.0-next.5": version: 2.0.0-next.5 resolution: "resolve@npm:2.0.0-next.5" dependencies: @@ -8762,7 +9121,7 @@ __metadata: languageName: node linkType: hard -"resolve@patch:resolve@npm%3A^2.0.0-next.4#optional!builtin": +"resolve@patch:resolve@npm%3A^2.0.0-next.5#optional!builtin": version: 2.0.0-next.5 resolution: "resolve@patch:resolve@npm%3A2.0.0-next.5#optional!builtin::version=2.0.0-next.5&hash=c3c19d" dependencies: @@ -8815,17 +9174,6 @@ __metadata: languageName: node linkType: hard -"rimraf@npm:^3.0.2": - version: 3.0.2 - resolution: "rimraf@npm:3.0.2" - dependencies: - glob: "npm:^7.1.3" - bin: - rimraf: bin.js - checksum: 9cb7757acb489bd83757ba1a274ab545eafd75598a9d817e0c3f8b164238dd90eba50d6b848bd4dcc5f3040912e882dc7ba71653e35af660d77b25c381d402e8 - languageName: node - linkType: hard - "rollup@npm:^4.2.0": version: 4.9.6 resolution: "rollup@npm:4.9.6" @@ -8884,16 +9232,16 @@ __metadata: version: 0.0.0-use.local resolution: "root@workspace:." dependencies: - "@cp-utils/constraints-config": "npm:^0.0.7" - "@cp-utils/eslint-config": "npm:^0.0.6" - "@cp-utils/gitversion": "workspace:^" - "@cp-utils/gitversion-s3publish": "workspace:^" + "@jwpkg/constraints-config": "npm:^0.0.1" + "@jwpkg/eslint-config": "npm:^0.0.2" + "@jwpkg/gitbump-s3publish": "workspace:^" "@types/eslint": "npm:^8.44.9" "@types/jest": "npm:^29.5.12" "@types/node": "npm:^20.11.19" "@yarnpkg/types": "npm:^4.0.0" asciinema-player: "npm:^3.6.4" - eslint: "npm:^8.55.0" + eslint: "npm:^9.9.0" + gitbump: "workspace:^" husky: "npm:^8.0.3" jest: "npm:^29.7.0" ts-jest: "npm:^29.1.2" @@ -8925,6 +9273,18 @@ __metadata: languageName: node linkType: hard +"safe-array-concat@npm:^1.1.2": + version: 1.1.2 + resolution: "safe-array-concat@npm:1.1.2" + dependencies: + call-bind: "npm:^1.0.7" + get-intrinsic: "npm:^1.2.4" + has-symbols: "npm:^1.0.3" + isarray: "npm:^2.0.5" + checksum: 12f9fdb01c8585e199a347eacc3bae7b5164ae805cdc8c6707199dbad5b9e30001a50a43c4ee24dc9ea32dbb7279397850e9208a7e217f4d8b1cf5d90129dec9 + languageName: node + linkType: hard + "safe-buffer@npm:~5.1.0, safe-buffer@npm:~5.1.1": version: 5.1.2 resolution: "safe-buffer@npm:5.1.2" @@ -8950,6 +9310,17 @@ __metadata: languageName: node linkType: hard +"safe-regex-test@npm:^1.0.3": + version: 1.0.3 + resolution: "safe-regex-test@npm:1.0.3" + dependencies: + call-bind: "npm:^1.0.6" + es-errors: "npm:^1.3.0" + is-regex: "npm:^1.1.4" + checksum: 900bf7c98dc58f08d8523b7012b468e4eb757afa624f198902c0643d7008ba777b0bdc35810ba0b758671ce887617295fb742b3f3968991b178ceca54cb07603 + languageName: node + linkType: hard + "safer-buffer@npm:>= 2.1.2 < 3.0.0": version: 2.1.2 resolution: "safer-buffer@npm:2.1.2" @@ -8987,7 +9358,7 @@ __metadata: languageName: node linkType: hard -"semver@npm:^7.3.5, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4": +"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4": version: 7.5.4 resolution: "semver@npm:7.5.4" dependencies: @@ -9027,6 +9398,20 @@ __metadata: languageName: node linkType: hard +"set-function-length@npm:^1.2.1": + version: 1.2.2 + resolution: "set-function-length@npm:1.2.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + function-bind: "npm:^1.1.2" + get-intrinsic: "npm:^1.2.4" + gopd: "npm:^1.0.1" + has-property-descriptors: "npm:^1.0.2" + checksum: 82850e62f412a258b71e123d4ed3873fa9377c216809551192bb6769329340176f109c2eeae8c22a8d386c76739855f78e8716515c818bcaef384b51110f0f3c + languageName: node + linkType: hard + "set-function-name@npm:^2.0.0, set-function-name@npm:^2.0.1": version: 2.0.1 resolution: "set-function-name@npm:2.0.1" @@ -9038,6 +9423,18 @@ __metadata: languageName: node linkType: hard +"set-function-name@npm:^2.0.2": + version: 2.0.2 + resolution: "set-function-name@npm:2.0.2" + dependencies: + define-data-property: "npm:^1.1.4" + es-errors: "npm:^1.3.0" + functions-have-names: "npm:^1.2.3" + has-property-descriptors: "npm:^1.0.2" + checksum: fce59f90696c450a8523e754abb305e2b8c73586452619c2bad5f7bf38c7b6b4651895c9db895679c5bef9554339cf3ef1c329b66ece3eda7255785fbe299316 + languageName: node + linkType: hard + "shebang-command@npm:^2.0.0": version: 2.0.0 resolution: "shebang-command@npm:2.0.0" @@ -9081,6 +9478,18 @@ __metadata: languageName: node linkType: hard +"side-channel@npm:^1.0.6": + version: 1.0.6 + resolution: "side-channel@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + get-intrinsic: "npm:^1.2.4" + object-inspect: "npm:^1.13.1" + checksum: d2afd163dc733cc0a39aa6f7e39bf0c436293510dbccbff446733daeaf295857dbccf94297092ec8c53e2503acac30f0b78830876f0485991d62a90e9cad305f + languageName: node + linkType: hard + "signal-exit@npm:^3.0.2, signal-exit@npm:^3.0.3, signal-exit@npm:^3.0.7": version: 3.0.7 resolution: "signal-exit@npm:3.0.7" @@ -9270,20 +9679,33 @@ __metadata: languageName: node linkType: hard -"string.prototype.matchall@npm:^4.0.8": - version: 4.0.10 - resolution: "string.prototype.matchall@npm:4.0.10" +"string.prototype.matchall@npm:^4.0.11": + version: 4.0.11 + resolution: "string.prototype.matchall@npm:4.0.11" dependencies: - call-bind: "npm:^1.0.2" - define-properties: "npm:^1.2.0" - es-abstract: "npm:^1.22.1" - get-intrinsic: "npm:^1.2.1" + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.2" + es-errors: "npm:^1.3.0" + es-object-atoms: "npm:^1.0.0" + get-intrinsic: "npm:^1.2.4" + gopd: "npm:^1.0.1" has-symbols: "npm:^1.0.3" - internal-slot: "npm:^1.0.5" - regexp.prototype.flags: "npm:^1.5.0" - set-function-name: "npm:^2.0.0" - side-channel: "npm:^1.0.4" - checksum: cd7495fb0de16d43efeee3887b98701941f3817bd5f09351ad1825b023d307720c86394d56d56380563d97767ab25bf5448db239fcecbb85c28e2180f23e324a + internal-slot: "npm:^1.0.7" + regexp.prototype.flags: "npm:^1.5.2" + set-function-name: "npm:^2.0.2" + side-channel: "npm:^1.0.6" + checksum: 915a2562ac9ab5e01b7be6fd8baa0b2b233a0a9aa975fcb2ec13cc26f08fb9a3e85d5abdaa533c99c6fc4c5b65b914eba3d80c4aff9792a4c9fed403f28f7d9d + languageName: node + linkType: hard + +"string.prototype.repeat@npm:^1.0.0": + version: 1.0.0 + resolution: "string.prototype.repeat@npm:1.0.0" + dependencies: + define-properties: "npm:^1.1.3" + es-abstract: "npm:^1.17.5" + checksum: 94c7978566cffa1327d470fd924366438af9b04b497c43a9805e476e2e908aa37a1fd34cc0911156c17556dab62159d12c7b92b3cc304c3e1281fe4c8e668f40 languageName: node linkType: hard @@ -9298,6 +9720,18 @@ __metadata: languageName: node linkType: hard +"string.prototype.trim@npm:^1.2.9": + version: 1.2.9 + resolution: "string.prototype.trim@npm:1.2.9" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-abstract: "npm:^1.23.0" + es-object-atoms: "npm:^1.0.0" + checksum: dcef1a0fb61d255778155006b372dff8cc6c4394bc39869117e4241f41a2c52899c0d263ffc7738a1f9e61488c490b05c0427faa15151efad721e1a9fb2663c2 + languageName: node + linkType: hard + "string.prototype.trimend@npm:^1.0.7": version: 1.0.7 resolution: "string.prototype.trimend@npm:1.0.7" @@ -9309,6 +9743,17 @@ __metadata: languageName: node linkType: hard +"string.prototype.trimend@npm:^1.0.8": + version: 1.0.8 + resolution: "string.prototype.trimend@npm:1.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: 0a0b54c17c070551b38e756ae271865ac6cc5f60dabf2e7e343cceae7d9b02e1a1120a824e090e79da1b041a74464e8477e2da43e2775c85392be30a6f60963c + languageName: node + linkType: hard + "string.prototype.trimstart@npm:^1.0.7": version: 1.0.7 resolution: "string.prototype.trimstart@npm:1.0.7" @@ -9320,6 +9765,17 @@ __metadata: languageName: node linkType: hard +"string.prototype.trimstart@npm:^1.0.8": + version: 1.0.8 + resolution: "string.prototype.trimstart@npm:1.0.8" + dependencies: + call-bind: "npm:^1.0.7" + define-properties: "npm:^1.2.1" + es-object-atoms: "npm:^1.0.0" + checksum: d53af1899959e53c83b64a5fd120be93e067da740e7e75acb433849aa640782fb6c7d4cd5b84c954c84413745a3764df135a8afeb22908b86a835290788d8366 + languageName: node + linkType: hard + "string_decoder@npm:^1.1.1": version: 1.3.0 resolution: "string_decoder@npm:1.3.0" @@ -9538,6 +9994,15 @@ __metadata: languageName: node linkType: hard +"ts-api-utils@npm:^1.3.0": + version: 1.3.0 + resolution: "ts-api-utils@npm:1.3.0" + peerDependencies: + typescript: ">=4.2.0" + checksum: f54a0ba9ed56ce66baea90a3fa087a484002e807f28a8ccb2d070c75e76bde64bd0f6dce98b3802834156306050871b67eec325cb4e918015a360a3f0868c77c + languageName: node + linkType: hard + "ts-jest@npm:^29.1.2": version: 29.1.2 resolution: "ts-jest@npm:29.1.2" @@ -9609,7 +10074,7 @@ __metadata: languageName: node linkType: hard -"tslib@npm:^1.11.1, tslib@npm:^1.8.1": +"tslib@npm:^1.11.1": version: 1.14.1 resolution: "tslib@npm:1.14.1" checksum: 69ae09c49eea644bc5ebe1bca4fa4cc2c82b7b3e02f43b84bd891504edf66dbc6b2ec0eef31a957042de2269139e4acff911e6d186a258fb14069cd7f6febce2 @@ -9623,17 +10088,6 @@ __metadata: languageName: node linkType: hard -"tsutils@npm:^3.21.0": - version: 3.21.0 - resolution: "tsutils@npm:3.21.0" - dependencies: - tslib: "npm:^1.8.1" - peerDependencies: - typescript: ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" - checksum: 02f19e458ec78ead8fffbf711f834ad8ecd2cc6ade4ec0320790713dccc0a412b99e7fd907c4cda2a1dc602c75db6f12e0108e87a5afad4b2f9e90a24cabd5a2 - languageName: node - linkType: hard - "tunnel@npm:^0.0.6": version: 0.0.6 resolution: "tunnel@npm:0.0.6" @@ -9678,13 +10132,6 @@ __metadata: languageName: node linkType: hard -"type-fest@npm:^0.20.2": - version: 0.20.2 - resolution: "type-fest@npm:0.20.2" - checksum: dea9df45ea1f0aaa4e2d3bed3f9a0bfe9e5b2592bddb92eb1bf06e50bcf98dbb78189668cd8bc31a0511d3fc25539b4cd5c704497e53e93e2d40ca764b10bfc3 - languageName: node - linkType: hard - "type-fest@npm:^0.21.3": version: 0.21.3 resolution: "type-fest@npm:0.21.3" @@ -9703,6 +10150,17 @@ __metadata: languageName: node linkType: hard +"typed-array-buffer@npm:^1.0.2": + version: 1.0.2 + resolution: "typed-array-buffer@npm:1.0.2" + dependencies: + call-bind: "npm:^1.0.7" + es-errors: "npm:^1.3.0" + is-typed-array: "npm:^1.1.13" + checksum: 9e043eb38e1b4df4ddf9dde1aa64919ae8bb909571c1cc4490ba777d55d23a0c74c7d73afcdd29ec98616d91bb3ae0f705fad4421ea147e1daf9528200b562da + languageName: node + linkType: hard + "typed-array-byte-length@npm:^1.0.0": version: 1.0.0 resolution: "typed-array-byte-length@npm:1.0.0" @@ -9715,6 +10173,19 @@ __metadata: languageName: node linkType: hard +"typed-array-byte-length@npm:^1.0.1": + version: 1.0.1 + resolution: "typed-array-byte-length@npm:1.0.1" + dependencies: + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + checksum: fcebeffb2436c9f355e91bd19e2368273b88c11d1acc0948a2a306792f1ab672bce4cfe524ab9f51a0505c9d7cd1c98eff4235c4f6bfef6a198f6cfc4ff3d4f3 + languageName: node + linkType: hard + "typed-array-byte-offset@npm:^1.0.0": version: 1.0.0 resolution: "typed-array-byte-offset@npm:1.0.0" @@ -9728,6 +10199,20 @@ __metadata: languageName: node linkType: hard +"typed-array-byte-offset@npm:^1.0.2": + version: 1.0.2 + resolution: "typed-array-byte-offset@npm:1.0.2" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + checksum: d2628bc739732072e39269389a758025f75339de2ed40c4f91357023c5512d237f255b633e3106c461ced41907c1bf9a533c7e8578066b0163690ca8bc61b22f + languageName: node + linkType: hard + "typed-array-length@npm:^1.0.4": version: 1.0.4 resolution: "typed-array-length@npm:1.0.4" @@ -9739,6 +10224,20 @@ __metadata: languageName: node linkType: hard +"typed-array-length@npm:^1.0.6": + version: 1.0.6 + resolution: "typed-array-length@npm:1.0.6" + dependencies: + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-proto: "npm:^1.0.3" + is-typed-array: "npm:^1.1.13" + possible-typed-array-names: "npm:^1.0.0" + checksum: 74253d7dc488eb28b6b2711cf31f5a9dcefc9c41b0681fd1c178ed0a1681b4468581a3626d39cd4df7aee3d3927ab62be06aa9ca74e5baf81827f61641445b77 + languageName: node + linkType: hard + "typescript@npm:^5.3.3": version: 5.3.3 resolution: "typescript@npm:5.3.3" @@ -10064,6 +10563,19 @@ __metadata: languageName: node linkType: hard +"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15": + version: 1.1.15 + resolution: "which-typed-array@npm:1.1.15" + dependencies: + available-typed-arrays: "npm:^1.0.7" + call-bind: "npm:^1.0.7" + for-each: "npm:^0.3.3" + gopd: "npm:^1.0.1" + has-tostringtag: "npm:^1.0.2" + checksum: 4465d5348c044032032251be54d8988270e69c6b7154f8fcb2a47ff706fe36f7624b3a24246b8d9089435a8f4ec48c1c1025c5d6b499456b9e5eff4f48212983 + languageName: node + linkType: hard + "which@npm:^2.0.1": version: 2.0.2 resolution: "which@npm:2.0.2"