From 93894e795c865e331bb075bb4e0da4e73b2aae14 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 6 Jan 2021 09:25:07 -0800 Subject: [PATCH 001/191] make modifyConfig async fix tests --- packages/core/src/auto.ts | 5 ++--- packages/core/src/utils/make-hooks.ts | 3 +-- plugins/cocoapods/__tests__/cocoapods.test.ts | 4 ++-- plugins/npm/__tests__/npm.test.ts | 6 +++--- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 4af2cdefa..a42bb36da 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -12,7 +12,6 @@ import { AsyncParallelHook, AsyncSeriesBailHook, SyncHook, - SyncWaterfallHook, AsyncSeriesHook, AsyncSeriesWaterfallHook, } from "tapable"; @@ -139,7 +138,7 @@ type PublishResponse = RestEndpointMethodTypes["repos"]["createRelease"]["respon export interface IAutoHooks { /** Modify what is in the config. You must return the config in this hook. */ - modifyConfig: SyncWaterfallHook<[LoadedAutoRc]>; + modifyConfig: AsyncSeriesWaterfallHook<[LoadedAutoRc]>; /** Validate what is in the config. You must return the config in this hook. */ validateConfig: ValidatePluginHook; /** Happens before anything is done. This is a great place to check for platform specific secrets. */ @@ -552,7 +551,7 @@ export default class Auto { }; this.loadPlugins(this.config!); this.loadDefaultBehavior(); - this.config = this.hooks.modifyConfig.call(this.config!); + this.config = await this.hooks.modifyConfig.promise(this.config!); this.labels = this.config.labels; this.semVerLabels = getVersionMap(this.config.labels); await this.hooks.beforeRun.promise(this.config); diff --git a/packages/core/src/utils/make-hooks.ts b/packages/core/src/utils/make-hooks.ts index 1c14291e0..c2abab99e 100644 --- a/packages/core/src/utils/make-hooks.ts +++ b/packages/core/src/utils/make-hooks.ts @@ -3,7 +3,6 @@ import { AsyncSeriesBailHook, AsyncSeriesWaterfallHook, SyncHook, - SyncWaterfallHook, AsyncSeriesHook, } from "tapable"; import { IAutoHooks } from "../auto"; @@ -15,7 +14,7 @@ import { InteractiveInitHooks } from "../init"; /** Make the hooks for "auto" */ export const makeHooks = (): IAutoHooks => ({ beforeRun: new AsyncSeriesHook(["config"]), - modifyConfig: new SyncWaterfallHook(["config"]), + modifyConfig: new AsyncSeriesWaterfallHook(["config"]), validateConfig: new AsyncSeriesBailHook(["name", "options"]), beforeShipIt: new AsyncSeriesHook(["context"]), afterChangelog: new AsyncSeriesHook(["context"]), diff --git a/plugins/cocoapods/__tests__/cocoapods.test.ts b/plugins/cocoapods/__tests__/cocoapods.test.ts index 094b1e7d7..b68bfd396 100644 --- a/plugins/cocoapods/__tests__/cocoapods.test.ts +++ b/plugins/cocoapods/__tests__/cocoapods.test.ts @@ -120,9 +120,9 @@ describe("Cocoapods Plugin", () => { }); }); describe("modifyConfig hook", () => { - test("should set noVersionPrefix to true", () => { + test("should set noVersionPrefix to true", async () => { const config = {}; - expect(hooks.modifyConfig.call(config as any)).toStrictEqual({ + expect(await hooks.modifyConfig.promise(config as any)).toStrictEqual({ noVersionPrefix: true, }); }); diff --git a/plugins/npm/__tests__/npm.test.ts b/plugins/npm/__tests__/npm.test.ts index 19da94255..ffa8b6e7f 100644 --- a/plugins/npm/__tests__/npm.test.ts +++ b/plugins/npm/__tests__/npm.test.ts @@ -405,7 +405,7 @@ describe("modifyConfig", () => { logger, } as Auto.Auto); - expect(hooks.modifyConfig.call({} as any)).toStrictEqual({}); + expect(await hooks.modifyConfig.promise({} as any)).toStrictEqual({}); }); test("should not modify config when tagVersionPrefix is not set", async () => { @@ -428,7 +428,7 @@ describe("modifyConfig", () => { } `; - expect(hooks.modifyConfig.call({} as any)).toStrictEqual({}); + expect(await hooks.modifyConfig.promise({} as any)).toStrictEqual({}); }); test("should modify config when tagVersionPrefix is set", async () => { @@ -452,7 +452,7 @@ describe("modifyConfig", () => { logger, } as Auto.Auto); - expect(hooks.modifyConfig.call({} as any)).toStrictEqual({ + expect(await hooks.modifyConfig.promise({} as any)).toStrictEqual({ noVersionPrefix: true, }); }); From 01f61f3ce5016a03678e9f4c15a15f6b16b2f90d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 6 Jan 2021 09:25:19 -0800 Subject: [PATCH 002/191] fix template readme --- scripts/template-plugin/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/template-plugin/README.md b/scripts/template-plugin/README.md index 3d9044a84..ead948b3a 100644 --- a/scripts/template-plugin/README.md +++ b/scripts/template-plugin/README.md @@ -17,7 +17,7 @@ yarn add -D @auto-it/{{kebab}} ```json { "plugins": [ - ["{{kebab}}"] + "{{kebab}}" // other plugins ] } From e25473ef69c82fd3029d77f5cedf4633d85d17f3 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 6 Jan 2021 09:25:32 -0800 Subject: [PATCH 003/191] Add magic-zero plugin --- plugins/magic-zero/README.md | 82 +++++++++++++ .../magic-zero/__tests__/magic-zero.test.ts | 112 ++++++++++++++++++ plugins/magic-zero/package.json | 44 +++++++ plugins/magic-zero/src/index.ts | 96 +++++++++++++++ plugins/magic-zero/tsconfig.json | 16 +++ tsconfig.dev.json | 3 + 6 files changed, 353 insertions(+) create mode 100644 plugins/magic-zero/README.md create mode 100644 plugins/magic-zero/__tests__/magic-zero.test.ts create mode 100644 plugins/magic-zero/package.json create mode 100644 plugins/magic-zero/src/index.ts create mode 100644 plugins/magic-zero/tsconfig.json diff --git a/plugins/magic-zero/README.md b/plugins/magic-zero/README.md new file mode 100644 index 000000000..6f0b28101 --- /dev/null +++ b/plugins/magic-zero/README.md @@ -0,0 +1,82 @@ +# Magic-Zero Plugin + +A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases. + +In the default `auto` experience the `patch`, `minor`, and `major` only increment the corresponding digit in the version. +The rules for incrementing version `< 1.0.0` are not as intuitive or [agreed upon](https://github.com/semver/semver/issues/221). +This plugin adds a new label (`graduate`) and changes `auto`'s behavior to do the following: + +**0.0.x:** + +_Starting version:_ `0.0.1` + +`patch` => `0.0.2` +`minor` => `0.0.2` +`major` => `0.0.2` +`graduate` => `0.1.0` + +**0.x.y:** + +_Starting version:_ `0.1.0` + +`patch` => `0.1.1` +`minor` => `0.1.1` +`major` => `0.2.0` +`graduate` => `1.0.0` + +Once you're project is `>= 1.0.0` this plugin effectively does nothing. + +## Installation + +This plugin is not included with the `auto` CLI installed via NPM. To install: + +```bash +npm i --save-dev @auto-it/magic-zero +# or +yarn add -D @auto-it/magic-zero +``` + +## Usage + +```json +{ + "plugins": [ + "magic-zero" + // other plugins + ] +} +``` + +## Options + +### `label` + +The label to graduate a version to the next left 0 digit. + +```json +{ + "plugins": [ + ["magic-zero", { "label": "super major" }] + // other plugins + ] +} +``` + +If you want to customize the label color/description you must define the label in your `.autorc`. + +```json +{ + "plugins": [ + ["magic-zero", { "label": "super major" }] + // other plugins + ], + "labels": [ + { + "name": "super major", + "description": "Graduate a version to the next left 0 digit", + "releaseType": "major", + "color": "#000" + } + ] +} +``` diff --git a/plugins/magic-zero/__tests__/magic-zero.test.ts b/plugins/magic-zero/__tests__/magic-zero.test.ts new file mode 100644 index 000000000..0ce729409 --- /dev/null +++ b/plugins/magic-zero/__tests__/magic-zero.test.ts @@ -0,0 +1,112 @@ +import { makeHooks } from "@auto-it/core/dist/utils/make-hooks"; +import { defaultLabels } from "@auto-it/core/dist/semver"; + +import MagicZero from "../src"; + +const setup = (version: string) => { + const plugin = new MagicZero(); + const hooks = makeHooks(); + + hooks.getPreviousVersion.tap("test", () => version); + + plugin.apply({ + hooks, + git: { getLatestRelease: () => undefined }, + } as any); + + return hooks; +}; + +describe("Magic-Zero Plugin", () => { + test("should downgrade major/minor => patch for 0.0.x", async () => { + const hooks = setup("0.0.1"); + const config = await hooks.modifyConfig.promise({ + labels: [...defaultLabels], + } as any); + + expect(config.labels).toStrictEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: "major", + releaseType: "patch", + }), + expect.objectContaining({ + name: "minor", + releaseType: "patch", + }), + expect.objectContaining({ + name: "graduate", + releaseType: "minor", + }), + ]) + ); + }); + + test("should downgrade major => minor for 0.x.y", async () => { + const hooks = setup("0.1.0"); + const config = await hooks.modifyConfig.promise({ + labels: [...defaultLabels], + } as any); + + expect(config.labels).toStrictEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: "major", + releaseType: "minor", + }), + expect.objectContaining({ + name: "graduate", + releaseType: "major", + }), + ]) + ); + }); + + test("should downgrade minor => patch for 0.x.y", async () => { + const hooks = setup("0.1.0"); + const config = await hooks.modifyConfig.promise({ + labels: [...defaultLabels], + } as any); + + expect(config.labels).toStrictEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: "minor", + releaseType: "patch", + }), + expect.objectContaining({ + name: "graduate", + releaseType: "major", + }), + ]) + ); + }); + + test("should do nothing for major/minor >= 1.0.0", async () => { + const hooks = setup("1.0.0"); + const config = await hooks.modifyConfig.promise({ + labels: [...defaultLabels], + } as any); + + expect(config.labels).toStrictEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: "minor", + releaseType: "minor", + }), + expect.objectContaining({ + name: "major", + releaseType: "major", + }), + ]) + ); + + expect(config.labels).not.toStrictEqual( + expect.arrayContaining([ + expect.objectContaining({ + name: "graduate", + }), + ]) + ); + }); +}); diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json new file mode 100644 index 000000000..65cf2907f --- /dev/null +++ b/plugins/magic-zero/package.json @@ -0,0 +1,44 @@ +{ + "name": "@auto-it/magic-zero", + "version": "10.5.0", + "main": "dist/index.js", + "description": "A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases", + "license": "MIT", + "author": { + "name": "Andrew Lisowski", + "email": "lisowski54@gmail.com" + }, + "publishConfig": { + "registry": "https://registry.npmjs.org/", + "access": "public" + }, + "repository": { + "type": "git", + "url": "https://github.com/intuit/auto" + }, + "files": [ + "dist" + ], + "keywords": [ + "automation", + "semantic", + "release", + "github", + "labels", + "automated", + "continuos integration", + "changelog" + ], + "scripts": { + "build": "tsc -b", + "start": "npm run build -- -w", + "lint": "eslint src --ext .ts", + "test": "jest --maxWorkers=2 --config ../../package.json" + }, + "dependencies": { + "@auto-it/core": "link:../../packages/core", + "fp-ts": "^2.5.3", + "io-ts": "^2.1.2", + "tslib": "1.10.0" + } +} diff --git a/plugins/magic-zero/src/index.ts b/plugins/magic-zero/src/index.ts new file mode 100644 index 000000000..3217ab945 --- /dev/null +++ b/plugins/magic-zero/src/index.ts @@ -0,0 +1,96 @@ +import { + Auto, + IPlugin, + SEMVER, + validatePluginConfiguration, +} from "@auto-it/core"; +import { satisfies } from "semver"; +import * as t from "io-ts"; + +const pluginOptions = t.partial({ + /** The label to graduate a version to the next left 0 digit */ + label: t.string, +}); + +export type IMagicZeroPluginOptions = t.TypeOf; + +const defaultOptions: Required = { + label: "graduate", +}; + +/** A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases */ +export default class MagicZeroPlugin implements IPlugin { + /** The name of the plugin */ + name = "magic-zero"; + + /** The options of the plugin */ + readonly options: Required; + + /** Initialize the plugin with it's options */ + constructor(options: IMagicZeroPluginOptions = {}) { + this.options = { ...defaultOptions, ...options }; + } + + /** Tap into auto plugin points. */ + apply(auto: Auto) { + auto.hooks.validateConfig.tapPromise(this.name, async (name, options) => { + // If it's a string thats valid config + if (name === this.name && typeof options !== "string") { + return validatePluginConfiguration(this.name, pluginOptions, options); + } + }); + + auto.hooks.modifyConfig.tapPromise(this.name, async (config) => { + const current = await auto.hooks.getPreviousVersion.promise(); + + if (satisfies(current, "< 1.0.0")) { + // Add special label for graduating releases + if (!config.labels.find((l) => l.name === this.options.label)) { + config.labels.push({ + name: this.options.label, + description: "Graduate a version to the next left 0 digit", + releaseType: SEMVER.major, + }); + } + + if (satisfies(current, "> 0.0.x")) { + // 0.x.y Versioning + // major resolves to minor + // minor resolves to patch + config.labels = config.labels.map((label) => { + let releaseType = label.releaseType; + + if (label.name !== this.options.label) { + if (releaseType === SEMVER.minor) { + releaseType = SEMVER.patch; + } else if (releaseType === SEMVER.major) { + releaseType = SEMVER.minor; + } + } + + return { ...label, releaseType }; + }); + } else { + // 0.0.x Versioning + // major/minor/patch all resolve to patch + config.labels = config.labels.map((label) => { + let releaseType = label.releaseType; + + if (label.name === this.options.label) { + releaseType = SEMVER.minor; + } else if ( + releaseType === SEMVER.minor || + releaseType === SEMVER.major + ) { + releaseType = SEMVER.patch; + } + + return { ...label, releaseType }; + }); + } + } + + return config; + }); + } +} diff --git a/plugins/magic-zero/tsconfig.json b/plugins/magic-zero/tsconfig.json new file mode 100644 index 000000000..bfbef6fc7 --- /dev/null +++ b/plugins/magic-zero/tsconfig.json @@ -0,0 +1,16 @@ +{ + "extends": "../../tsconfig.json", + "include": ["src/**/*", "../../typings/**/*"], + + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src", + "composite": true + }, + + "references": [ + { + "path": "../../packages/core" + } + ] +} diff --git a/tsconfig.dev.json b/tsconfig.dev.json index e8c71fdbc..c2d82b151 100644 --- a/tsconfig.dev.json +++ b/tsconfig.dev.json @@ -82,6 +82,9 @@ }, { "path": "packages/package-json-utils" + }, + { + "path": "plugins/magic-zero" } ] } \ No newline at end of file From e4e4f458a40c7dc667d0702bbdb0c8374b99f4a7 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 6 Jan 2021 09:32:47 -0800 Subject: [PATCH 004/191] add magic-zero to docs --- README.md | 3 ++- docs/pages/docs/_sidebar.mdx | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index eb4084923..4a874b242 100644 --- a/README.md +++ b/README.md @@ -46,8 +46,8 @@ Auto has an extensive plugin system and wide variety of official plugins. Make a - [brew](./plugins/brew) - Automate the creation of Homebrew formulae - [chrome](./plugins/chrome) - Publish code to Chrome Web Store -- [crates](./plugins/crates) - Publish Rust crates - [cocoapods](./plugins/cocoapods) - Version your [Cocoapod](https://cocoapods.org/), and push to your specs repository! +- [crates](./plugins/crates) - Publish Rust crates - [docker](./plugins/docker) - Publish images with Docker - [gem](./plugins/gem) - Publish ruby gems - [git-tag](./plugins/git-tag) - Manage your projects version through just a git tag (`default` when used with binary) @@ -64,6 +64,7 @@ Auto has an extensive plugin system and wide variety of official plugins. Make a - [first-time-contributor](./plugins/first-time-contributor) - Thank first time contributors for their work right in your release notes. - [gh-pages](./plugins/gh-pages) - Automate publishing to your gh-pages documentation website - [jira](./plugins/jira) - Include Jira story links in the changelog +- [magic-zero](./plugins/magic-zero) - A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases - [omit-commits](./plugins/omit-commits) - Ignore commits base on name, email, subject, labels, and username - [omit-release-notes](./plugins/omit-release-notes) - Ignore release notes in PRs made by certain accounts - [pr-body-labels](./plugins/pr-body-labels) - Allow outside contributors to indicate what semver label should be applied to the Pull Request diff --git a/docs/pages/docs/_sidebar.mdx b/docs/pages/docs/_sidebar.mdx index 25a84573a..b6a69bd15 100644 --- a/docs/pages/docs/_sidebar.mdx +++ b/docs/pages/docs/_sidebar.mdx @@ -66,6 +66,7 @@ Functionality Plugins - [First Time Contributor](./generated/first-time-contributor) - [GitHub Pages](./generated/gh-pages) - [Jira](./generated/jira) +- [Magic Zero](./generated/magic-zero) - [Omit Commits](./generated/omit-commits) - [Omit Release Notes](./generated/omit-release-notes) - [PR Body Labels](./generated/pr-body-labels) From b51746ed5dd300c2aa4babe9a4b05cb2d5fc677c Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 6 Jan 2021 09:33:48 -0800 Subject: [PATCH 005/191] add missing dep --- plugins/magic-zero/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json index 65cf2907f..c4fba6d83 100644 --- a/plugins/magic-zero/package.json +++ b/plugins/magic-zero/package.json @@ -39,6 +39,7 @@ "@auto-it/core": "link:../../packages/core", "fp-ts": "^2.5.3", "io-ts": "^2.1.2", + "semver": "^7.0.0", "tslib": "1.10.0" } } From 722f99478d9fa547627d20e7e50c168b1380b091 Mon Sep 17 00:00:00 2001 From: Lucas Shadler Date: Mon, 11 Jan 2021 16:12:03 -0800 Subject: [PATCH 006/191] fix: add debugging and error handling to exec --- plugins/exec/__tests__/exec.test.ts | 99 ++++++++++++++++++--------- plugins/exec/package.json | 1 + plugins/exec/src/index.ts | 100 +++++++++++++++++++++------- 3 files changed, 143 insertions(+), 57 deletions(-) diff --git a/plugins/exec/__tests__/exec.test.ts b/plugins/exec/__tests__/exec.test.ts index e523081a2..f2e535db6 100644 --- a/plugins/exec/__tests__/exec.test.ts +++ b/plugins/exec/__tests__/exec.test.ts @@ -9,6 +9,25 @@ import { execSync } from "child_process"; import Exec from "../src"; +const getMockAuto = () => { + const hooks = makeHooks(); + + return { + hooks, + logger: { + verbose: { + info: jest.fn(), + }, + veryVerbose: { + info: jest.fn(), + }, + log: { + error: jest.fn(), + }, + }, + }; +}; + const execSpy = execSync as jest.Mock; jest.mock("child_process"); execSpy.mockReturnValue(""); @@ -33,30 +52,42 @@ describe("Exec Plugin", () => { test("should handle SyncHook hooks", async () => { const plugins = new Exec({ beforeRun: "echo foo" }); - const hooks = makeHooks(); - plugins.apply({ hooks } as Auto); - await hooks.beforeRun.promise({} as any); + const mockAuto = getMockAuto(); + + plugins.apply(mockAuto); + await mockAuto.hooks.beforeRun.promise({} as any); expect(execSpy).toHaveBeenCalledWith("echo foo", expect.anything()); + expect(mockAuto.logger.verbose.info).toHaveBeenCalledWith( + "Running command: echo foo" + ); }); test("should handle AsyncParallelHook hooks", async () => { const plugins = new Exec({ version: "echo bar" }); - const hooks = makeHooks(); - plugins.apply({ hooks } as Auto); - await hooks.version.promise({ bump: SEMVER.patch }); + const mockAuto = getMockAuto(); + + plugins.apply(mockAuto); + await mockAuto.hooks.version.promise({ bump: SEMVER.patch }); + expect(mockAuto.logger.verbose.info).toHaveBeenCalledWith( + "Running command: echo bar" + ); expect(execSpy).toHaveBeenCalledWith("echo bar", expect.anything()); }); test("should handle AsyncSeriesHook hooks w/args", async () => { const plugins = new Exec({ beforeShipIt: "echo baz" }); - const hooks = makeHooks(); - plugins.apply({ hooks } as Auto); - await hooks.beforeShipIt.promise({ releaseType: "latest" }); + const mockAuto = getMockAuto(); + + plugins.apply(mockAuto); + await mockAuto.hooks.beforeShipIt.promise({ releaseType: "latest" }); + expect(mockAuto.logger.verbose.info).toHaveBeenCalledWith( + "Running command: echo baz" + ); expect(execSpy).toHaveBeenCalledWith( "echo baz", @@ -70,12 +101,13 @@ describe("Exec Plugin", () => { const plugins = new Exec({ getRepository: `echo "{ "repo": "foo", "owner": "bar" }"`, }); - const hooks = makeHooks(); execSpy.mockReturnValueOnce('{ "repo": "foo", "owner": "bar" }'); - plugins.apply({ hooks } as Auto); + const mockAuto = getMockAuto(); - expect(await hooks.getRepository.promise()).toStrictEqual({ + plugins.apply(mockAuto); + + expect(await mockAuto.hooks.getRepository.promise()).toStrictEqual({ repo: "foo", owner: "bar", }); @@ -87,13 +119,13 @@ describe("Exec Plugin", () => { const plugins = new Exec({ canary: `echo ${canaryVersion}`, }); - const hooks = makeHooks(); + const mockAuto = getMockAuto(); + plugins.apply(mockAuto); execSpy.mockReturnValueOnce(canaryVersion); - plugins.apply({ hooks } as Auto); expect( - await hooks.canary.promise({ + await mockAuto.hooks.canary.promise({ bump: SEMVER.patch, canaryIdentifier: "-canary", }) @@ -105,13 +137,13 @@ describe("Exec Plugin", () => { const plugins = new Exec({ canary: `echo ${JSON.stringify(canaryVersion)}`, }); - const hooks = makeHooks(); + const mockAuto = getMockAuto(); execSpy.mockReturnValueOnce(JSON.stringify(canaryVersion)); - plugins.apply({ hooks } as Auto); + plugins.apply(mockAuto); expect( - await hooks.canary.promise({ + await mockAuto.hooks.canary.promise({ bump: SEMVER.patch, canaryIdentifier: "-canary", }) @@ -124,12 +156,12 @@ describe("Exec Plugin", () => { const plugins = new Exec({ onCreateRelease: { createChangelogTitle: "echo here" }, }); - const hooks = makeHooks(); + const mockAuto = getMockAuto(); const releaseHooks = makeReleaseHooks(); execSpy.mockReturnValueOnce("here"); - plugins.apply({ hooks } as Auto); - hooks.onCreateRelease.call({ hooks: releaseHooks } as any); + plugins.apply(mockAuto); + mockAuto.hooks.onCreateRelease.call({ hooks: releaseHooks } as any); expect(await releaseHooks.createChangelogTitle.promise()).toBe("here"); }); @@ -140,12 +172,12 @@ describe("Exec Plugin", () => { const plugins = new Exec({ onCreateLogParse: { omitCommit: "echo true" }, }); - const hooks = makeHooks(); + const mockAuto = getMockAuto(); const logParsehooks = makeLogParseHooks(); execSpy.mockReturnValueOnce("true"); - plugins.apply({ hooks } as Auto); - hooks.onCreateLogParse.call({ hooks: logParsehooks } as any); + plugins.apply(mockAuto); + mockAuto.hooks.onCreateLogParse.call({ hooks: logParsehooks } as any); expect( await logParsehooks.omitCommit.promise({ @@ -162,11 +194,12 @@ describe("Exec Plugin", () => { const plugins = new Exec({ onCreateLogParse: { omitCommit: "echo" }, }); - const hooks = makeHooks(); + + const mockAuto = getMockAuto(); const logParsehooks = makeLogParseHooks(); - plugins.apply({ hooks } as Auto); - hooks.onCreateLogParse.call({ hooks: logParsehooks } as any); + plugins.apply(mockAuto); + mockAuto.hooks.onCreateLogParse.call({ hooks: logParsehooks } as any); expect( await logParsehooks.omitCommit.promise({ @@ -185,15 +218,15 @@ describe("Exec Plugin", () => { const plugins = new Exec({ onCreateChangelog: { omitReleaseNotes: "echo true" }, }); - const hooks = makeHooks(); + const mockAuto = getMockAuto(); const changelogHooks = makeChangelogHooks(); execSpy.mockReturnValueOnce("true"); - plugins.apply({ hooks } as Auto); - hooks.onCreateChangelog.call( - { hooks: changelogHooks } as any, - { bump: SEMVER.patch } - ); + plugins.apply(mockAuto); + + mockAuto.hooks.onCreateChangelog.call({ hooks: changelogHooks } as any, { + bump: SEMVER.patch, + }); expect( await changelogHooks.omitReleaseNotes.promise({ diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 253e67dcd..ce12d3636 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -37,6 +37,7 @@ }, "dependencies": { "@auto-it/core": "link:../../packages/core", + "endent": "^2.0.1", "fp-ts": "^2.5.3", "fromentries": "^1.2.0", "io-ts": "^2.1.2", diff --git a/plugins/exec/src/index.ts b/plugins/exec/src/index.ts index 82aea0b03..2cd19202d 100644 --- a/plugins/exec/src/index.ts +++ b/plugins/exec/src/index.ts @@ -9,7 +9,8 @@ import { } from "@auto-it/core/dist/utils/make-hooks"; import * as t from "io-ts"; import fromEntries from "fromentries"; -import { execSync } from "child_process"; +import endent from "endent"; +import { execSync, ExecSyncOptionsWithStringEncoding } from "child_process"; type CommandMap = Record; @@ -65,8 +66,44 @@ const createEnv = (args: any[]) => ({ ), }); +/** Wraps execSync around debugging and error handling */ +const runExecSync = ( + command: string, + options: ExecSyncOptionsWithStringEncoding | undefined, + auto: Auto +): string | undefined => { + let execResult; + + try { + auto.logger.verbose.info(`Running command: ${command}`); + auto.logger.veryVerbose.info(endent` + Supplied Environment: + + ${Object.entries(options?.env || {}) + .map(([key, value]) => `\t${key}=${value}`) + .join("\n")} + `); + + execResult = trim(execSync(command, options)); + } catch (e) { + if (e && e.code === "E2BIG") { + auto.logger.log.error(endent` + Received E2BIG from execSync. + + This usually occurs when the argument list is too large for the command you are trying to run. + + Please consider disabling your 'auto-exec' usage and following this issue for updates: https://github.com/intuit/auto/issues/1294 + `); + } else { + throw e; + } + } + + return execResult; +}; + /** Tap a hook if possible */ -const tapHook = (name: string, hook: any, command: string) => { +const tapHook = (name: string, hook: any, command: string, auto: Auto) => { if (!hook) { return; } @@ -89,11 +126,15 @@ const tapHook = (name: string, hook: any, command: string) => { ) { hook.tap(`exec ${name}`, (...args: any[]) => { const value = trim( - execSync(command, { - stdio: ["ignore", "pipe", "inherit"], - encoding: "utf8", - env: createEnv(args), - }) + runExecSync( + command, + { + stdio: ["ignore", "pipe", "inherit"], + encoding: "utf8", + env: createEnv(args), + }, + auto + ) ); if (!value) { @@ -114,11 +155,15 @@ const tapHook = (name: string, hook: any, command: string) => { } else if (name === "omitCommit" || name === "omitReleaseNotes") { hook.tap(`exec ${name}`, (...args: any[]) => { const value = trim( - execSync(command, { - stdio: ["ignore", "pipe", "inherit"], - encoding: "utf8", - env: createEnv(args), - }) + runExecSync( + command, + { + stdio: ["ignore", "pipe", "inherit"], + encoding: "utf8", + env: createEnv(args), + }, + auto + ) ); if (value === "true") { @@ -134,14 +179,18 @@ const tapHook = (name: string, hook: any, command: string) => { ) { hook.tap(`exec ${name}`, (...args: any[]) => trim( - execSync(command, { - encoding: "utf8", - env: createEnv(args), - stdio: - name === "createChangelogTitle" || name === "getPreviousVersion" - ? ["ignore", "pipe", "inherit"] - : "inherit", - }) + runExecSync( + command, + { + encoding: "utf8", + env: createEnv(args), + stdio: + name === "createChangelogTitle" || name === "getPreviousVersion" + ? ["ignore", "pipe", "inherit"] + : "inherit", + }, + auto + ) ) ); } @@ -186,7 +235,8 @@ export default class ExecPlugin implements IPlugin { tapHook( key, release.hooks[key as keyof typeof release.hooks], - command + command, + auto ) ); }); @@ -198,7 +248,8 @@ export default class ExecPlugin implements IPlugin { tapHook( key, changelog.hooks[key as keyof typeof changelog.hooks], - command + command, + auto ) ); }); @@ -210,12 +261,13 @@ export default class ExecPlugin implements IPlugin { tapHook( key, logParse.hooks[key as keyof typeof logParse.hooks], - command + command, + auto ) ); }); } else { - tapHook(name, auto.hooks[name], command as string); + tapHook(name, auto.hooks[name], command as string, auto); } } } From fb0cf3585124bf56c884c8ecedf8ac9a0c85d693 Mon Sep 17 00:00:00 2001 From: Lucas Shadler Date: Mon, 11 Jan 2021 17:36:11 -0800 Subject: [PATCH 007/191] chore: error cleanup and test coverage Sanitize logging output and add unit tests around error handling --- packages/cli/auto | 0 plugins/exec/__tests__/exec.test.ts | 57 ++++++++++++++++++++++++++++- plugins/exec/src/index.ts | 8 ++-- 3 files changed, 61 insertions(+), 4 deletions(-) create mode 100644 packages/cli/auto diff --git a/packages/cli/auto b/packages/cli/auto new file mode 100644 index 000000000..e69de29bb diff --git a/plugins/exec/__tests__/exec.test.ts b/plugins/exec/__tests__/exec.test.ts index f2e535db6..7e3144bc7 100644 --- a/plugins/exec/__tests__/exec.test.ts +++ b/plugins/exec/__tests__/exec.test.ts @@ -30,10 +30,10 @@ const getMockAuto = () => { const execSpy = execSync as jest.Mock; jest.mock("child_process"); -execSpy.mockReturnValue(""); describe("Exec Plugin", () => { beforeEach(() => { + execSpy.mockReturnValue(""); execSpy.mockClear(); }); @@ -64,6 +64,61 @@ describe("Exec Plugin", () => { ); }); + test("logs an E2BIG error with special handling", async () => { + const mockExit = jest.spyOn(process, "exit").mockImplementation(() => {}); + execSpy.mockImplementation(() => { + const error = new Error("E2BIG"); + error.code = "E2BIG"; + + throw error; + }); + + const plugins = new Exec({ beforeRun: "echo foo" }); + + const mockAuto = getMockAuto(); + + plugins.apply(mockAuto); + await mockAuto.hooks.beforeRun.promise({} as any); + + expect(execSpy).toHaveBeenCalledWith("echo foo", expect.anything()); + expect(mockAuto.logger.verbose.info).toHaveBeenCalledWith( + "Running command: echo foo" + ); + expect(mockAuto.logger.log.error).toHaveBeenCalledTimes(1); + expect(mockAuto.logger.log.error.mock.calls[0][0]).toStrictEqual( + expect.stringContaining("Received E2BIG from execSync.") + ); + expect(mockExit).toHaveBeenCalledWith(1); + }); + + test("logs other errors normally", async () => { + const mockExit = jest.spyOn(process, "exit").mockImplementation(() => {}); + execSpy.mockImplementation(() => { + const error = new Error("random error"); + error.code = "random"; + + throw error; + }); + + const plugins = new Exec({ beforeRun: "echo foo" }); + + const mockAuto = getMockAuto(); + + plugins.apply(mockAuto); + await mockAuto.hooks.beforeRun.promise({} as any); + + expect(execSpy).toHaveBeenCalledWith("echo foo", expect.anything()); + expect(mockAuto.logger.verbose.info).toHaveBeenCalledWith( + "Running command: echo foo" + ); + + expect(mockAuto.logger.log.error).toHaveBeenCalledTimes(1); + expect(mockAuto.logger.log.error.mock.calls[0][0].message).toStrictEqual( + expect.stringContaining("random error") + ); + expect(mockExit).toHaveBeenCalledWith(1); + }); + test("should handle AsyncParallelHook hooks", async () => { const plugins = new Exec({ version: "echo bar" }); diff --git a/plugins/exec/src/index.ts b/plugins/exec/src/index.ts index 2cd19202d..1e49b9324 100644 --- a/plugins/exec/src/index.ts +++ b/plugins/exec/src/index.ts @@ -77,10 +77,10 @@ const runExecSync = ( try { auto.logger.verbose.info(`Running command: ${command}`); auto.logger.veryVerbose.info(endent` - Supplied Environment: + Supplied Environment (name and char size): ${Object.entries(options?.env || {}) - .map(([key, value]) => `\t${key}=${value}`) + .map(([key, value]) => `\t${key}=${value ? value.length : 0}`) .join("\n")} `); @@ -95,8 +95,10 @@ const runExecSync = ( Please consider disabling your 'auto-exec' usage and following this issue for updates: https://github.com/intuit/auto/issues/1294 `); } else { - throw e; + auto.logger.log.error(e); } + + process.exit(1); } return execResult; From 411f0d7b6b579a86fe28316704ce090b0362b010 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 12 Jan 2021 11:23:47 -0800 Subject: [PATCH 008/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 17 +++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 17 +++++++++++++++++ plugins/exec/CHANGELOG.md | 18 ++++++++++++++++++ 4 files changed, 53 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 840c6d74e..b234c28e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# v10.6.1 (Tue Jan 12 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Lucas Shadler ([@lshadler](https://github.com/lshadler)), for all your work! + +#### 🐛 Bug Fix + +- `auto`, `@auto-it/exec` + - fix: add debugging and error handling to exec [#1710](https://github.com/intuit/auto/pull/1710) ([@lshadler](https://github.com/lshadler)) + +#### Authors: 1 + +- Lucas Shadler ([@lshadler](https://github.com/lshadler)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 262c944ed..8eea11524 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.6.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.6.1/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 9aa363184..c4d03efec 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,20 @@ +# v10.6.1 (Tue Jan 12 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Lucas Shadler ([@lshadler](https://github.com/lshadler)), for all your work! + +#### 🐛 Bug Fix + +- fix: add debugging and error handling to exec [#1710](https://github.com/intuit/auto/pull/1710) ([@lshadler](https://github.com/lshadler)) +- chore: error cleanup and test coverage ([@lshadler](https://github.com/lshadler)) + +#### Authors: 1 + +- Lucas Shadler ([@lshadler](https://github.com/lshadler)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index 73f18a22f..a1e8c9b4d 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,21 @@ +# v10.6.1 (Tue Jan 12 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Lucas Shadler ([@lshadler](https://github.com/lshadler)), for all your work! + +#### 🐛 Bug Fix + +- fix: add debugging and error handling to exec [#1710](https://github.com/intuit/auto/pull/1710) ([@lshadler](https://github.com/lshadler)) +- chore: error cleanup and test coverage ([@lshadler](https://github.com/lshadler)) +- fix: add debugging and error handling to exec ([@lshadler](https://github.com/lshadler)) + +#### Authors: 1 + +- Lucas Shadler ([@lshadler](https://github.com/lshadler)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: From a1efd5666f920169c7557151296810fae21c55c2 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 12 Jan 2021 11:23:48 -0800 Subject: [PATCH 009/191] Update contributors [skip ci] --- .all-contributorsrc | 3 ++- README.md | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.all-contributorsrc b/.all-contributorsrc index 57889384d..15b17c8b4 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -315,7 +315,8 @@ "avatar_url": "https://avatars1.githubusercontent.com/u/23409677?v=4", "profile": "https://lshadler.github.io/", "contributions": [ - "code" + "code", + "test" ] }, { diff --git a/README.md b/README.md index 213cdaff2..674b0539a 100644 --- a/README.md +++ b/README.md @@ -246,7 +246,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
Spencer Hamm

💻 -
Lucas Shadler

💻 +
Lucas Shadler

💻 ⚠️
David Stone

📖 ⚠️ 💻
Lucas Curti

💻
rachana

📖 ⚠️ 💻 From a873d79d2443f9222f721bcfdc54b618d999dc68 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 12 Jan 2021 11:23:50 -0800 Subject: [PATCH 010/191] Bump version to: v10.6.1 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index bdcc4a6fb..8aadba024 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.6.0", + "version": "10.6.1", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 430062747..a8edfbc8a 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.6.0", + "version": "10.6.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 268cb3039..108e7b379 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.6.0", + "version": "10.6.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 14d7379e3..5b90c6a9d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.6.0", + "version": "10.6.1", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 8e822fec5..2e4b5df4c 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.6.0", + "version": "10.6.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 6751713f6..57fd29f7a 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 532aec83e..8e1617bcc 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index ae40d4b71..4baad7f34 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 49558c4e8..6fadfa0c4 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index cd8abc12e..8bfd61ddb 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 35ee09b4d..d6a734b32 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 2991c457d..fc7b415c1 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index ce12d3636..8a3380b2a 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 752e9c189..46eba6716 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index d56be4299..f5a17fc5a 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 12cf2fd6a..a29f97be8 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 59063f979..a20ea1a54 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index f6245f42a..64a835cad 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 73a85cba7..0a5957ca1 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index ec7c1193a..a8c87a96a 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 7f3bdfb71..5f8bf572a 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 8077f08fd..50ecfef93 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 8b3b403cb..4c1d42be1 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index f51819e62..68fa0b471 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 9a513dcde..4aa119835 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index e9cfa928e..7e154c5bc 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index c2e8a0e5c..5112aa177 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index c14f233e1..360f30958 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 13b48aea6..4146f5d89 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 6f9f5449e..53fc3d04e 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 35f770e40..593968fb6 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.6.0", + "version": "10.6.1", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From e5be4709e3dd29af1b2460c29840db4087303ecb Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 12 Jan 2021 11:23:51 -0800 Subject: [PATCH 011/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 2d4bec1db..19b275c24 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.6.0/auto-macos.gz" - version "v10.6.0" - sha256 "54099fa76e594531a2ec17646e7912485694ba212af1910963eb1fdce9e07675" + url "https://github.com/intuit/auto/releases/download/v10.6.1/auto-macos.gz" + version "v10.6.1" + sha256 "e2d2e0c157be92b5d66719afbddcf8a6fd19a2a49c8bb9f05c78e52c1d9f7535" def install libexec.install Dir["*"] From edd05ac531ae29762967f4a3520d79ee283cc9a1 Mon Sep 17 00:00:00 2001 From: Harris Borawski Date: Wed, 13 Jan 2021 14:06:43 -0800 Subject: [PATCH 012/191] tap the next hook and tag prerelease versions for cocoapods --- plugins/cocoapods/__tests__/cocoapods.test.ts | 45 +++++++++++++++++ plugins/cocoapods/src/index.ts | 49 +++++++++++++++++++ 2 files changed, 94 insertions(+) diff --git a/plugins/cocoapods/__tests__/cocoapods.test.ts b/plugins/cocoapods/__tests__/cocoapods.test.ts index c327ee79b..f224a2817 100644 --- a/plugins/cocoapods/__tests__/cocoapods.test.ts +++ b/plugins/cocoapods/__tests__/cocoapods.test.ts @@ -78,6 +78,7 @@ describe("Cocoapods Plugin", () => { logger: logger, prefixRelease, git: { + getLastTagNotInBaseBranch: async () => undefined, getLatestRelease: async () => "0.0.1", getPullRequest: async () => ({ data: { @@ -438,6 +439,50 @@ describe("Cocoapods Plugin", () => { }); }); + describe("next hook", () => { + test("should return prerelease versions on dryrun", async () => { + mockPodspec(specWithVersion("0.0.1")); + + const versions = await hooks.next.promise(["0.0.1", "0.0.2"], { + bump: Auto.SEMVER.minor, + dryRun: true, + commits: [], + fullReleaseNotes: "", + releaseNotes: "", + }); + expect(versions).toStrictEqual(["0.0.1", "0.0.2", "0.1.0-next.0"]); + }); + test("should tag with next version", async () => { + jest.spyOn(Auto, "getCurrentBranch").mockReturnValue("next"); + let podSpec = specWithVersion("0.0.1"); + jest + .spyOn(utilities, "getPodspecContents") + .mockImplementation(() => podSpec); + const mock = jest + .spyOn(utilities, "writePodspecContents") + .mockImplementation((path, contents) => { + podSpec = contents; + }); + + const versions = await hooks.next.promise([], { + bump: Auto.SEMVER.major, + dryRun: false, + commits: [], + fullReleaseNotes: "", + releaseNotes: "", + }); + + expect(versions).toContain("1.0.0-next.0"); + expect(exec).toBeCalledTimes(2); + expect(exec).toHaveBeenCalledWith("git", ["checkout", "./Test.podspec"]); + + expect(mock).toHaveBeenLastCalledWith( + expect.any(String), + specWithVersion("1.0.0-next.0") + ); + }); + }); + describe("publish hook", () => { test("should push to trunk if no specsRepo in options", async () => { mockPodspec(specWithVersion("0.0.1")); diff --git a/plugins/cocoapods/src/index.ts b/plugins/cocoapods/src/index.ts index da2512cd0..d1a8eb8b1 100644 --- a/plugins/cocoapods/src/index.ts +++ b/plugins/cocoapods/src/index.ts @@ -5,6 +5,9 @@ import { validatePluginConfiguration, ILogger, getPrNumberFromEnv, + DEFAULT_PRERELEASE_BRANCHES, + getCurrentBranch, + determineNextVersion, } from "@auto-it/core"; import { inc, ReleaseType } from "semver"; @@ -277,6 +280,52 @@ export default class CocoapodsPlugin implements IPlugin { } ); + auto.hooks.next.tapPromise( + this.name, + async (preReleaseVersions, { bump, dryRun }) => { + if (!auto.git) { + return preReleaseVersions; + } + + const prereleaseBranches = + auto.config?.prereleaseBranches ?? DEFAULT_PRERELEASE_BRANCHES; + const branch = getCurrentBranch() || ""; + const prereleaseBranch = prereleaseBranches.includes(branch) + ? branch + : prereleaseBranches[0]; + const lastRelease = await auto.git.getLatestRelease(); + const current = + (await auto.git.getLastTagNotInBaseBranch(prereleaseBranch)) || + (await auto.getCurrentVersion(lastRelease)); + const prerelease = determineNextVersion( + lastRelease, + current, + bump, + prereleaseBranch + ); + + preReleaseVersions.push(prerelease); + + if (dryRun) { + return preReleaseVersions; + } + + await execPromise("git", [ + "tag", + prerelease, + "-m", + `"Tag pre-release: ${prerelease}"`, + ]); + + updatePodspecVersion(this.options.podspecPath, prerelease); + + // Reset changes to podspec file since it doesn't need to be committed + await execPromise("git", ["checkout", this.options.podspecPath]); + + return preReleaseVersions; + } + ); + auto.hooks.beforeShipIt.tapPromise(this.name, async ({ dryRun }) => { if (dryRun) { auto.logger.log.info(logMessage('dryRun - running "pod lib lint"')); From d57006db89cdc1ebaccda1460336e00148969b29 Mon Sep 17 00:00:00 2001 From: Harris Borawski Date: Wed, 13 Jan 2021 15:00:14 -0800 Subject: [PATCH 013/191] fix: actually call publish for the podspec --- plugins/cocoapods/__tests__/cocoapods.test.ts | 2 +- plugins/cocoapods/src/index.ts | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/cocoapods/__tests__/cocoapods.test.ts b/plugins/cocoapods/__tests__/cocoapods.test.ts index f224a2817..bc1833d0d 100644 --- a/plugins/cocoapods/__tests__/cocoapods.test.ts +++ b/plugins/cocoapods/__tests__/cocoapods.test.ts @@ -473,7 +473,7 @@ describe("Cocoapods Plugin", () => { }); expect(versions).toContain("1.0.0-next.0"); - expect(exec).toBeCalledTimes(2); + expect(exec).toBeCalledTimes(3); expect(exec).toHaveBeenCalledWith("git", ["checkout", "./Test.podspec"]); expect(mock).toHaveBeenLastCalledWith( diff --git a/plugins/cocoapods/src/index.ts b/plugins/cocoapods/src/index.ts index d1a8eb8b1..fe6652986 100644 --- a/plugins/cocoapods/src/index.ts +++ b/plugins/cocoapods/src/index.ts @@ -319,6 +319,9 @@ export default class CocoapodsPlugin implements IPlugin { updatePodspecVersion(this.options.podspecPath, prerelease); + // Publish the next podspec, committing it isn't needed for specs push + await this.publishPodSpec(podLogLevel); + // Reset changes to podspec file since it doesn't need to be committed await execPromise("git", ["checkout", this.options.podspecPath]); From d8a2c143b9668c3c95487cdaa7732fb199876858 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 16:19:48 -0800 Subject: [PATCH 014/191] upgrade ignite --- .gitignore | 3 +- docs/css/syntax-highlighting-overrides.css | 97 +- docs/pages/_app.js | 15 +- docs/pages/blog.js | 5 +- docs/plugins/home.js | 2 +- package.json | 2 +- yarn.lock | 2330 +++++++++----------- 7 files changed, 1002 insertions(+), 1452 deletions(-) diff --git a/.gitignore b/.gitignore index f98432194..2a817db61 100644 --- a/.gitignore +++ b/.gitignore @@ -214,4 +214,5 @@ GitHub.sublime-settings # Ignore all local history of files .history -# End of https://www.gitignore.io/api/node,intellij,sublimetext,visualstudiocode \ No newline at end of file +# End of https://www.gitignore.io/api/node,intellij,sublimetext,visualstudiocode +docs/public/search-index.json diff --git a/docs/css/syntax-highlighting-overrides.css b/docs/css/syntax-highlighting-overrides.css index a7c9eca48..95ae5d366 100644 --- a/docs/css/syntax-highlighting-overrides.css +++ b/docs/css/syntax-highlighting-overrides.css @@ -8,99 +8,4 @@ * { text-shadow: none !important; -} - -.algolia-autocomplete { - width: 100%; -} - -/* Highlighted text */ -.algolia-autocomplete .algolia-docsearch-suggestion--highlight { - color: var(--color-primary-600); - background: var(--color-gray-200); -} - -/* Highlighted text */ -.mode-dark .algolia-autocomplete .algolia-docsearch-suggestion--highlight { - color: var(--color-primary-400); - background: var(--color-gray-900); -} - -/* Main dropdown wrapper */ -.mode-dark - .algolia-autocomplete.algolia-autocomplete-left - .ds-dropdown-menu:before, -.mode-dark - .algolia-autocomplete.algolia-autocomplete-right - .ds-dropdown-menu:before, -.mode-dark .algolia-autocomplete .algolia-docsearch-suggestion, -.mode-dark .algolia-autocomplete .ds-dropdown-menu [class^="ds-dataset-"] { - background: #1b181a; - border-color: var(--color-gray-900); -} - -/* Main category (eg. Getting Started) */ -.mode-dark - .algolia-autocomplete - .algolia-docsearch-suggestion--category-header { - color: var(--color-gray-200); - border-color: var(--color-gray-800); -} - -/* Category (eg. Downloads) */ -.mode-dark - .algolia-autocomplete - .algolia-docsearch-suggestion--subcategory-column { - color: var(--color-gray-600); -} - -.mode-dark .algolia-autocomplete .algolia-docsearch-suggestion--content:before, -.mode-dark - .algolia-autocomplete - .algolia-docsearch-suggestion--subcategory-column:before { - background: var(--color-gray-800); -} - -/* Title (eg. Bootstrap CDN) */ -.mode-dark .algolia-autocomplete .algolia-docsearch-suggestion--title { - color: var(--color-gray-500); -} - -/* Cursor */ -.mode-dark - .algolia-autocomplete - .ds-dropdown-menu - .ds-suggestion.ds-cursor - .algolia-docsearch-suggestion:not(.suggestion-layout-simple) - .algolia-docsearch-suggestion--content { - background: var(--color-gray-900); -} - -.mode-dark - .algolia-autocomplete - .algolia-docsearch-suggestion--category-header - .algolia-docsearch-suggestion--category-header-lvl0 - .algolia-docsearch-suggestion--highlight { - box-shadow: inset 0 -2px 0 0 var(--color-primary-400); -} - -.algolia-autocomplete .ds-dropdown-menu { - width: 100% !important; - max-width: 100% !important; - min-width: 0 !important; -} - -@media (max-width: 768px) { - .algolia-autocomplete .algolia-docsearch-suggestion--subcategory-column { - display: none !important; - } - - .algolia-autocomplete .algolia-docsearch-suggestion--content { - width: 100% !important; - padding: 0 !important; - } - - .algolia-autocomplete .algolia-docsearch-suggestion--content:before { - display: none !important; - } -} +} \ No newline at end of file diff --git a/docs/pages/_app.js b/docs/pages/_app.js index 092698830..feee54ce9 100644 --- a/docs/pages/_app.js +++ b/docs/pages/_app.js @@ -16,7 +16,7 @@ config.autoAddCss = false; const components = { ...igniteComponents, img: (props) => { - if (props.alt && props.alt.includes("Logo")) { + if (props.alt?.includes("Logo")) { return ; } @@ -45,19 +45,6 @@ const components = { }; function MyApp({ Component, pageProps }) { - React.useEffect(() => { - if (window.docsearch) { - window.docsearch({ - apiKey: "9a3222c3fb6678852549109b167d0cef", - indexName: "intuit_auto", - inputSelector: "#search", - debug: false, - }); - } else { - console.warn("Search has failed to load"); - } - }); - return ( diff --git a/docs/pages/blog.js b/docs/pages/blog.js index e5c9a9d8a..e15ad9fae 100644 --- a/docs/pages/blog.js +++ b/docs/pages/blog.js @@ -1,3 +1,6 @@ import { BlogIndex } from "next-ignite"; -export default () => ; +/** The blog index */ +const Blog = () => ; + +export default Blog; \ No newline at end of file diff --git a/docs/plugins/home.js b/docs/plugins/home.js index 006274525..36c4550a2 100644 --- a/docs/plugins/home.js +++ b/docs/plugins/home.js @@ -299,7 +299,7 @@ const Home = () => (
-
+

Stop worrying about your release and hit that merge button!

diff --git a/package.json b/package.json index ed71db84b..9b29b1873 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "jest-snapshot-serializer-ansi": "^1.0.0", "lerna": "^3.13.4", "lint-staged": "^10.0.7", - "next-ignite": "^0.7.4", + "next-ignite": "^0.8.21", "prettier": "^2.0.1", "push-dir": "^0.4.1", "rimraf": "^3.0.0", diff --git a/yarn.lock b/yarn.lock index 6d673aaac..85ce503da 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2,56 +2,56 @@ # yarn lockfile v1 -"@ampproject/toolbox-core@^2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.6.0.tgz#9824d5f133d82106a9bf0774920843c69fa5c869" - integrity sha512-sDMnHj8WaX3tqJS5VsIHkeW98nq5WQ0C9RoFc1PPS3rmYIlS0vhAfHbrjJw6wtuxBTQFxccje+Ew+2OJ2D15kA== +"@ampproject/toolbox-core@2.7.4", "@ampproject/toolbox-core@^2.7.1-alpha.0": + version "2.7.4" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-core/-/toolbox-core-2.7.4.tgz#8355136f16301458ce942acf6c55952c9a415627" + integrity sha512-qpBhcS4urB7IKc+jx2kksN7BuvvwCo7Y3IstapWo+EW+COY5EYAUwb2pil37v3TsaqHKgX//NloFP1SKzGZAnw== dependencies: - cross-fetch "3.0.5" + cross-fetch "3.0.6" lru-cache "6.0.0" -"@ampproject/toolbox-optimizer@2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.6.0.tgz#e1bde0697d0fb25ab888bc0d0422998abaf6bad1" - integrity sha512-saToXVopb15a6zKK6kW4B1N/sYZZddkECcqmfTotRxJ2DaLE+wFB6jgWLbaPkgHwvLPQyA2IjV9BHJ/KUFuGzg== +"@ampproject/toolbox-optimizer@2.7.1-alpha.0": + version "2.7.1-alpha.0" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-optimizer/-/toolbox-optimizer-2.7.1-alpha.0.tgz#1571dcd02608223ff68f6b7223102a123e381197" + integrity sha512-WGPZKVQvHgNYJk1XVJCCmY+NVGTGJtvn0OALDyiegN4FJWOcilQUhCIcjMkZN59u1flz/u+sEKccM5qsROqVyg== dependencies: - "@ampproject/toolbox-core" "^2.6.0" - "@ampproject/toolbox-runtime-version" "^2.6.0" + "@ampproject/toolbox-core" "^2.7.1-alpha.0" + "@ampproject/toolbox-runtime-version" "^2.7.1-alpha.0" "@ampproject/toolbox-script-csp" "^2.5.4" - "@ampproject/toolbox-validator-rules" "^2.5.4" + "@ampproject/toolbox-validator-rules" "^2.7.1-alpha.0" abort-controller "3.0.0" - cross-fetch "3.0.5" - cssnano-simple "1.0.5" - dom-serializer "1.0.1" - domhandler "3.0.0" - domutils "2.1.0" - htmlparser2 "4.1.0" + cross-fetch "3.0.6" + cssnano-simple "1.2.1" + dom-serializer "1.1.0" + domhandler "3.3.0" + domutils "2.4.2" + htmlparser2 "5.0.1" https-proxy-agent "5.0.0" lru-cache "6.0.0" - node-fetch "2.6.0" + node-fetch "2.6.1" normalize-html-whitespace "1.0.0" postcss "7.0.32" postcss-safe-parser "4.0.2" - terser "4.8.0" + terser "5.5.1" -"@ampproject/toolbox-runtime-version@^2.6.0": - version "2.6.0" - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.6.0.tgz#c2a310840a6c60a7f5046d2ccaf45646a761bd4f" - integrity sha512-wT+Ehsoq2PRXqpgjebygHD01BpSlaAE4HfDEVxgPVT8oAsLzE4ywZgzI2VQZfaCdb8qLyO5+WXrLSoJXxDBo2Q== +"@ampproject/toolbox-runtime-version@^2.7.1-alpha.0": + version "2.7.4" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-runtime-version/-/toolbox-runtime-version-2.7.4.tgz#f49da0dab122101ef75ed3caed3a0142487b73e1" + integrity sha512-SAdOUOERp42thVNWaBJlnFvFVvnacMVnz5z9LyUZHSnoL1EqrAW5Sz5jv+Ly+gkA8NYsEaUxAdSCBAzE9Uzb4Q== dependencies: - "@ampproject/toolbox-core" "^2.6.0" + "@ampproject/toolbox-core" "2.7.4" "@ampproject/toolbox-script-csp@^2.5.4": version "2.5.4" resolved "https://registry.yarnpkg.com/@ampproject/toolbox-script-csp/-/toolbox-script-csp-2.5.4.tgz#d8b7b91a678ae8f263cb36d9b74e441b7d633aad" integrity sha512-+knTYetI5nWllRZ9wFcj7mYxelkiiFVRAAW/hl0ad8EnKHMH82tRlk40CapEnUHhp6Er5sCYkumQ8dngs3Q4zQ== -"@ampproject/toolbox-validator-rules@^2.5.4": - version "2.5.4" - resolved "https://registry.yarnpkg.com/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.5.4.tgz#7dee3a3edceefea459d060571db8cc6e7bbf0dd6" - integrity sha512-bS7uF+h0s5aiklc/iRaujiSsiladOsZBLrJ6QImJDXvubCAQtvE7om7ShlGSXixkMAO0OVMDWyuwLlEy8V1Ing== +"@ampproject/toolbox-validator-rules@^2.7.1-alpha.0": + version "2.7.4" + resolved "https://registry.yarnpkg.com/@ampproject/toolbox-validator-rules/-/toolbox-validator-rules-2.7.4.tgz#a58b5eca723f6c3557ac83b696de0247f5f03ce4" + integrity sha512-z3JRcpIZLLdVC9XVe7YTZuB3a/eR9s2SjElYB9AWRdyJyL5Jt7+pGNv4Uwh1uHVoBXsWEVQzNOWSNtrO3mSwZA== dependencies: - cross-fetch "3.0.5" + cross-fetch "3.0.6" "@atomist/slack-messages@~1.2.0": version "1.2.1" @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.5.0" + version "10.6.1" "@auto-it/core@link:packages/core": - version "10.5.0" + version "10.6.1" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.5.0" + version "10.6.1" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.5.0" + version "10.6.1" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.5.0" + version "10.6.1" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.5.0" + version "10.6.1" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -145,22 +145,20 @@ node-fetch "2.6.1" tslib "2.0.3" -"@babel/code-frame@7.10.4", "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.1", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.5.5", "@babel/code-frame@^7.8.3": +"@babel/code-frame@7.12.11": + version "7.12.11" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" + integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== + dependencies: + "@babel/highlight" "^7.10.4" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.10.1", "@babel/code-frame@^7.10.4", "@babel/code-frame@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.10.4.tgz#168da1a36e90da68ae8d49c0f1b48c7c6249213a" integrity sha512-vG6SvB6oYEhvgisZNFRmRCUkLz11c7rp+tbNTynGqc6mS1d5ATd/sGyV6W0KZZnXRKMTzZDRgQT3Ou9jhpAfUg== dependencies: "@babel/highlight" "^7.10.4" -"@babel/compat-data@^7.10.4", "@babel/compat-data@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.11.0.tgz#e9f73efe09af1355b723a7f39b11bad637d7c99c" - integrity sha512-TPSvJfv73ng0pfnEOh17bYMPQbI95+nGWc71Ss4vZdRBHTDqmM9Z8ZV4rYz8Ks7sfzc95n30k6ODIq5UGnXcYQ== - dependencies: - browserslist "^4.12.0" - invariant "^2.2.4" - semver "^5.5.0" - "@babel/core@7.11.1": version "7.11.1" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.1.tgz#2c55b604e73a40dc21b0e52650b11c65cf276643" @@ -183,26 +181,6 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/core@7.7.7": - version "7.7.7" - resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.7.7.tgz#ee155d2e12300bcc0cff6a8ad46f2af5063803e9" - integrity sha512-jlSjuj/7z138NLZALxVgrx13AOtqip42ATZP7+kYl53GvDV6+4dCek1mVUo8z8c8Xnw/mx2q3d9HWh3griuesQ== - dependencies: - "@babel/code-frame" "^7.5.5" - "@babel/generator" "^7.7.7" - "@babel/helpers" "^7.7.4" - "@babel/parser" "^7.7.7" - "@babel/template" "^7.7.4" - "@babel/traverse" "^7.7.4" - "@babel/types" "^7.7.4" - convert-source-map "^1.7.0" - debug "^4.1.0" - json5 "^2.1.0" - lodash "^4.17.13" - resolve "^1.3.2" - semver "^5.4.1" - source-map "^0.5.0" - "@babel/core@7.x": version "7.11.6" resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.11.6.tgz#3a9455dc7387ff1bac45770650bc13ba04a15651" @@ -266,7 +244,7 @@ semver "^5.4.1" source-map "^0.5.0" -"@babel/generator@^7.10.1", "@babel/generator@^7.7.7": +"@babel/generator@^7.10.1": version "7.10.2" resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.10.2.tgz#0fa5b5b2389db8bfdfcc3492b551ee20f5dd69a9" integrity sha512-AxfBNHNu99DTMvlUPlt1h2+Hn7knPpH5ayJ8OqDWSeLld+Fi2AYBTC/IejWDM9Edcii4UzZRCsbUt0WlSDsDsA== @@ -306,45 +284,6 @@ lodash "^4.17.13" source-map "^0.5.0" -"@babel/helper-annotate-as-pure@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.1.tgz#f6d08acc6f70bbd59b436262553fb2e259a1a268" - integrity sha512-ewp3rvJEwLaHgyWGe4wQssC2vjks3E80WiUe2BpMb0KhreTjMROCbxXcEovTrbeGVdQct5VjQfrv9EgC+xMzCw== - dependencies: - "@babel/types" "^7.10.1" - -"@babel/helper-annotate-as-pure@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.10.4.tgz#5bf0d495a3f757ac3bda48b5bf3b3ba309c72ba3" - integrity sha512-XQlqKQP4vXFB7BN8fEEerrmYvHp3fK/rBkRFz9jaJbzK0B1DSfej9Kc7ZzE8Z/OnId1jpJdNAZ3BFQjWG68rcA== - dependencies: - "@babel/types" "^7.10.4" - -"@babel/helper-builder-binary-assignment-operator-visitor@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.10.4.tgz#bb0b75f31bf98cbf9ff143c1ae578b87274ae1a3" - integrity sha512-L0zGlFrGWZK4PbT8AszSfLTM5sDU1+Az/En9VrdT8/LmEiJt4zXt+Jve9DCAnQcbqDhCI+29y/L93mrDzddCcg== - dependencies: - "@babel/helper-explode-assignable-expression" "^7.10.4" - "@babel/types" "^7.10.4" - -"@babel/helper-builder-react-jsx-experimental@^7.10.4", "@babel/helper-builder-react-jsx-experimental@^7.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx-experimental/-/helper-builder-react-jsx-experimental-7.11.5.tgz#4ea43dd63857b0a35cd1f1b161dc29b43414e79f" - integrity sha512-Vc4aPJnRZKWfzeCBsqTBnzulVNjABVdahSPhtdMD3Vs80ykx4a87jTHtF/VR+alSrDmNvat7l13yrRHauGcHVw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-module-imports" "^7.10.4" - "@babel/types" "^7.11.5" - -"@babel/helper-builder-react-jsx@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.10.4.tgz#8095cddbff858e6fa9c326daee54a2f2732c1d5d" - integrity sha512-5nPcIZ7+KKDxT1427oBivl9V9YTal7qk0diccnh7RrcgrT/pGFOjgGw1dgryyx1GvHEpXVfoDF6Ak3rTiWh8Rg== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/types" "^7.10.4" - "@babel/helper-call-delegate@^7.12.1": version "7.12.1" resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.12.1.tgz#0fa31fee33f7e9bf1e8ae711f5c3be7eda2fb657" @@ -353,63 +292,6 @@ "@babel/helper-hoist-variables" "^7.10.4" "@babel/types" "^7.12.1" -"@babel/helper-compilation-targets@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.10.4.tgz#804ae8e3f04376607cc791b9d47d540276332bd2" - integrity sha512-a3rYhlsGV0UHNDvrtOXBg8/OpfV0OKTkxKPzIplS1zpx7CygDcWWxckxZeDd3gzPzC4kUT0A4nVFDK0wGMh4MQ== - dependencies: - "@babel/compat-data" "^7.10.4" - browserslist "^4.12.0" - invariant "^2.2.4" - levenary "^1.1.1" - semver "^5.5.0" - -"@babel/helper-create-class-features-plugin@^7.10.4", "@babel/helper-create-class-features-plugin@^7.10.5": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.10.5.tgz#9f61446ba80e8240b0a5c85c6fdac8459d6f259d" - integrity sha512-0nkdeijB7VlZoLT3r/mY3bUkw3T8WG/hNw+FATs/6+pG2039IJWjTYL0VTISqsNHMUTEnwbVnc89WIJX9Qed0A== - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-member-expression-to-functions" "^7.10.5" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" - -"@babel/helper-create-regexp-features-plugin@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.1.tgz#1b8feeab1594cbcfbf3ab5a3bbcabac0468efdbd" - integrity sha512-Rx4rHS0pVuJn5pJOqaqcZR4XSgeF9G/pO/79t+4r7380tXFJdzImFnxMU19f83wjSrmKHq6myrM10pFHTGzkUA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.1" - "@babel/helper-regex" "^7.10.1" - regexpu-core "^4.7.0" - -"@babel/helper-create-regexp-features-plugin@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.10.4.tgz#fdd60d88524659a0b6959c0579925e425714f3b8" - integrity sha512-2/hu58IEPKeoLF45DBwx3XFqsbCXmkdAay4spVr2x0jYgRxrSNp+ePwvSsy9g6YSaNDcKIQVPXk1Ov8S2edk2g== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-regex" "^7.10.4" - regexpu-core "^4.7.0" - -"@babel/helper-define-map@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.10.5.tgz#b53c10db78a640800152692b13393147acb9bb30" - integrity sha512-fMw4kgFB720aQFXSVaXr79pjjcW5puTCM16+rECJ/plGS+zByelE8l9nCpV1GibxTnFVmUuYG9U8wYfQHdzOEQ== - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/types" "^7.10.5" - lodash "^4.17.19" - -"@babel/helper-explode-assignable-expression@^7.10.4": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.11.4.tgz#2d8e3470252cc17aba917ede7803d4a7a276a41b" - integrity sha512-ux9hm3zR4WV1Y3xXxXkdG/0gxF9nvI0YVmKVhvK9AfMoaQkemL3sJpXw+Xbz65azo8qJiEz2XVDUpK3KYhH3ZQ== - dependencies: - "@babel/types" "^7.10.4" - "@babel/helper-function-name@^7.10.1": version "7.10.1" resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.10.1.tgz#92bd63829bfc9215aca9d9defa85f56b539454f4" @@ -449,7 +331,7 @@ dependencies: "@babel/types" "^7.10.4" -"@babel/helper-member-expression-to-functions@^7.10.4", "@babel/helper-member-expression-to-functions@^7.10.5": +"@babel/helper-member-expression-to-functions@^7.10.4": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.11.0.tgz#ae69c83d84ee82f4b42f96e2a09410935a8f26df" integrity sha512-JbFlKHFntRV5qKw3YC0CvQnDZ4XMwgzzBbld7Ly4Mj4cbFy3KywcR8NtNctRToMWJOVvLINJv525Gd6wwVEx/Q== @@ -463,7 +345,7 @@ dependencies: "@babel/types" "^7.10.4" -"@babel/helper-module-transforms@^7.10.4", "@babel/helper-module-transforms@^7.10.5", "@babel/helper-module-transforms@^7.11.0": +"@babel/helper-module-transforms@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.11.0.tgz#b16f250229e47211abdd84b34b64737c2ab2d359" integrity sha512-02EVu8COMuTRO1TAzdMtpBPbe6aQ1w/8fePD2YgQmxZU4gpNWaL9gK3Jp7dxlkUlUCJOTaSeA+Hrm1BRQwqIhg== @@ -493,40 +375,11 @@ resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== -"@babel/helper-plugin-utils@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.10.1.tgz#ec5a5cf0eec925b66c60580328b122c01230a127" - integrity sha512-fvoGeXt0bJc7VMWZGCAEBEMo/HAjW2mP8apF5eXK0wSqwLAVHAISCWRoLMBMUs2kqeaG77jltVqu4Hn8Egl3nA== - "@babel/helper-plugin-utils@^7.8.0", "@babel/helper-plugin-utils@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.8.3.tgz#9ea293be19babc0f52ff8ca88b34c3611b208670" integrity sha512-j+fq49Xds2smCUNYmEHF9kGNkhbet6yVIBp4e6oeQpH1RUs/Ir06xUKzDjDkGcaaokPiTNs2JBWHjaE4csUkZQ== -"@babel/helper-regex@^7.10.1": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.1.tgz#021cf1a7ba99822f993222a001cc3fec83255b96" - integrity sha512-7isHr19RsIJWWLLFn21ubFt223PjQyg1HY7CZEMRr820HttHPpVvrsIN3bUOo44DEfFV4kBXO7Abbn9KTUZV7g== - dependencies: - lodash "^4.17.13" - -"@babel/helper-regex@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.10.5.tgz#32dfbb79899073c415557053a19bd055aae50ae0" - integrity sha512-68kdUAzDrljqBrio7DYAEgCoJHxppJOERHOgOrDN7WjOzP0ZQ1LsSDRXcemzVZaLvjaJsJEESb6qt+znNuENDg== - dependencies: - lodash "^4.17.19" - -"@babel/helper-remap-async-to-generator@^7.10.4": - version "7.11.4" - resolved "https://registry.yarnpkg.com/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.11.4.tgz#4474ea9f7438f18575e30b0cac784045b402a12d" - integrity sha512-tR5vJ/vBa9wFy3m5LLv2faapJLnDFxNWff2SAYkSE4rLUdbp7CdObYFgI7wK4T/Mj4UzpjPwzR8Pzmr5m7MHGA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-wrap-function" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/types" "^7.10.4" - "@babel/helper-replace-supers@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.10.4.tgz#d585cd9388ea06e6031e4cd44b6713cbead9e6cf" @@ -545,13 +398,6 @@ "@babel/template" "^7.10.4" "@babel/types" "^7.10.4" -"@babel/helper-skip-transparent-expression-wrappers@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.11.0.tgz#eec162f112c2f58d3af0af125e3bb57665146729" - integrity sha512-0XIdiQln4Elglgjbwo9wuJpL/K7AGCY26kmEt0+pRP0TAj4jjyNq1MjoRvikrTVqKcx4Gysxt4cXvVFXP/JO2Q== - dependencies: - "@babel/types" "^7.11.0" - "@babel/helper-split-export-declaration@^7.10.1": version "7.10.1" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.10.1.tgz#c6f4be1cbc15e3a868e4c64a17d5d31d754da35f" @@ -559,7 +405,7 @@ dependencies: "@babel/types" "^7.10.1" -"@babel/helper-split-export-declaration@^7.10.4", "@babel/helper-split-export-declaration@^7.11.0": +"@babel/helper-split-export-declaration@^7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.11.0.tgz#f8a491244acf6a676158ac42072911ba83ad099f" integrity sha512-74Vejvp6mHkGE+m+k5vHY93FX2cAtrw1zXrZXRlG4l410Nm9PxfEiVTn1PjDPV5SnmieiueY4AFg2xqhNFuuZg== @@ -581,16 +427,6 @@ resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.9.5.tgz#90977a8e6fbf6b431a7dc31752eee233bf052d80" integrity sha512-/8arLKUFq882w4tWGj9JYzRpAlZgiWUJ+dtteNTDqrRBz9Iguck9Rn3ykuBDoUwh2TO4tSAJlrxDUOXWklJe4g== -"@babel/helper-wrap-function@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/helper-wrap-function/-/helper-wrap-function-7.10.4.tgz#8a6f701eab0ff39f765b5a1cfef409990e624b87" - integrity sha512-6py45WvEF0MhiLrdxtRjKjufwLL1/ob2qDJgg5JgNdojBAZSAKnAjkyOCNug6n+OBl4VW76XjvgSFTdaMcW0Ug== - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/template" "^7.10.4" - "@babel/traverse" "^7.10.4" - "@babel/types" "^7.10.4" - "@babel/helpers@^7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.4.tgz#2abeb0d721aff7c0a97376b9e1f6f65d7a475044" @@ -609,15 +445,6 @@ "@babel/traverse" "^7.4.4" "@babel/types" "^7.4.4" -"@babel/helpers@^7.7.4": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.10.1.tgz#a6827b7cb975c9d9cef5fd61d919f60d8844a973" - integrity sha512-muQNHF+IdU6wGgkaJyhhEmI54MOZBKsFfsXFhboz1ybwJ1Kl7IHlbm2a++4jwrmY5UYsgitt5lfqo1wMFcHmyw== - dependencies: - "@babel/template" "^7.10.1" - "@babel/traverse" "^7.10.1" - "@babel/types" "^7.10.1" - "@babel/helpers@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.8.3.tgz#382fbb0382ce7c4ce905945ab9641d688336ce85" @@ -636,7 +463,7 @@ chalk "^2.0.0" js-tokens "^4.0.0" -"@babel/parser@^7.1.0", "@babel/parser@^7.10.1", "@babel/parser@^7.4.4", "@babel/parser@^7.7.5", "@babel/parser@^7.7.7", "@babel/parser@^7.8.3", "@babel/parser@^7.8.6", "@babel/parser@^7.9.4": +"@babel/parser@^7.1.0", "@babel/parser@^7.10.1", "@babel/parser@^7.4.4", "@babel/parser@^7.7.5", "@babel/parser@^7.8.3", "@babel/parser@^7.8.6", "@babel/parser@^7.9.4": version "7.10.2" resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.10.2.tgz#871807f10442b92ff97e4783b9b54f6a0ca812d0" integrity sha512-PApSXlNMJyB4JiGVhCOlzKIif+TKFTvu0aQAhnTvfP/z3vVSN6ZypH5bfUNwFXXjRQtUEBNFd2PtmCmG2Py3qQ== @@ -646,72 +473,7 @@ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037" integrity sha512-X9rD8qqm695vgmeaQ4fvz/o3+Wk4ZzQvSHkDBgpYKxpD4qTAUm88ZKtHkVqIOsYFFbIQ6wQYhC6q7pjqVK0E0Q== -"@babel/plugin-proposal-async-generator-functions@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.10.5.tgz#3491cabf2f7c179ab820606cec27fed15e0e8558" - integrity sha512-cNMCVezQbrRGvXJwm9fu/1sJj9bHdGAgKodZdLqOQIpfoH3raqmRPBM17+lh7CzhiKRRBrGtZL9WcjxSoGYUSg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-remap-async-to-generator" "^7.10.4" - "@babel/plugin-syntax-async-generators" "^7.8.0" - -"@babel/plugin-proposal-class-properties@7.10.4", "@babel/plugin-proposal-class-properties@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.10.4.tgz#a33bf632da390a59c7a8c570045d1115cd778807" - integrity sha512-vhwkEROxzcHGNu2mzUC0OFFNXdZ4M23ib8aRRcJSsW8BZK9pQMD7QB7csl97NBbgGZO7ZyHUyKDnxzOaP4IrCg== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-proposal-dynamic-import@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.10.4.tgz#ba57a26cb98b37741e9d5bca1b8b0ddf8291f17e" - integrity sha512-up6oID1LeidOOASNXgv/CFbgBqTuKJ0cJjz6An5tWD+NVBNlp3VNSBxv2ZdU7SYl3NxJC7agAQDApZusV6uFwQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" - -"@babel/plugin-proposal-export-namespace-from@7.10.4", "@babel/plugin-proposal-export-namespace-from@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.10.4.tgz#570d883b91031637b3e2958eea3c438e62c05f54" - integrity sha512-aNdf0LY6/3WXkhh0Fdb6Zk9j1NMD8ovj3F6r0+3j837Pn1S1PdNtcwJ5EG9WkVPNHPxyJDaxMaAOVq4eki0qbg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - -"@babel/plugin-proposal-json-strings@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.10.4.tgz#593e59c63528160233bd321b1aebe0820c2341db" - integrity sha512-fCL7QF0Jo83uy1K0P2YXrfX11tj3lkpN7l4dMv9Y9VkowkhkQDwFHFd8IiwyK5MZjE8UpbgokkgtcReH88Abaw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-json-strings" "^7.8.0" - -"@babel/plugin-proposal-logical-assignment-operators@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.11.0.tgz#9f80e482c03083c87125dee10026b58527ea20c8" - integrity sha512-/f8p4z+Auz0Uaf+i8Ekf1iM7wUNLcViFUGiPxKeXvxTSl63B875YPiVdUDdem7hREcI0E0kSpEhS8tF5RphK7Q== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - -"@babel/plugin-proposal-nullish-coalescing-operator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.10.4.tgz#02a7e961fc32e6d5b2db0649e01bf80ddee7e04a" - integrity sha512-wq5n1M3ZUlHl9sqT2ok1T2/MTt6AXE0e1Lz4WzWBr95LsAZ5qDXe4KnFuauYyEyLiohvXFMdbsOTMyLZs91Zlw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - -"@babel/plugin-proposal-numeric-separator@7.10.4", "@babel/plugin-proposal-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.10.4.tgz#ce1590ff0a65ad12970a609d78855e9a4c1aef06" - integrity sha512-73/G7QoRoeNkLZFxsoCCvlg4ezE4eM+57PnOqgaPOozd5myfj7p0muD1mRVJvbUWbOzD+q3No2bWbaKy+DJ8DA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - -"@babel/plugin-proposal-object-rest-spread@7.11.0", "@babel/plugin-proposal-object-rest-spread@^7.11.0": +"@babel/plugin-proposal-object-rest-spread@7.11.0": version "7.11.0" resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.11.0.tgz#bd81f95a1f746760ea43b6c2d3d62b11790ad0af" integrity sha512-wzch41N4yztwoRw0ak+37wxwJM2oiIiy6huGCoqkvSTA9acYWcPfn9Y4aJqmFFJ70KTJUu29f3DQ43uJ9HXzEA== @@ -720,68 +482,20 @@ "@babel/plugin-syntax-object-rest-spread" "^7.8.0" "@babel/plugin-transform-parameters" "^7.10.4" -"@babel/plugin-proposal-optional-catch-binding@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.10.4.tgz#31c938309d24a78a49d68fdabffaa863758554dd" - integrity sha512-LflT6nPh+GK2MnFiKDyLiqSqVHkQnVf7hdoAvyTnnKj9xB3docGRsdPuxp6qqqW19ifK3xgc9U5/FwrSaCNX5g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - -"@babel/plugin-proposal-optional-chaining@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.11.0.tgz#de5866d0646f6afdaab8a566382fe3a221755076" - integrity sha512-v9fZIu3Y8562RRwhm1BbMRxtqZNFmFA2EG+pT2diuU8PT3H6T/KXoZ54KgYisfOFZHV6PfvAiBIZ9Rcz+/JCxA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" - -"@babel/plugin-proposal-private-methods@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.10.4.tgz#b160d972b8fdba5c7d111a145fc8c421fc2a6909" - integrity sha512-wh5GJleuI8k3emgTg5KkJK6kHNsGEr0uBTDBuQUBJwckk9xs1ez79ioheEVVxMLyPscB0LfkbVHslQqIzWV6Bw== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-proposal-unicode-property-regex@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.4.tgz#4483cda53041ce3413b7fe2f00022665ddfaa75d" - integrity sha512-H+3fOgPnEXFL9zGYtKQe4IDOPKYlZdF1kqFDQRRb8PK4B8af1vAGK04tF5iQAAsui+mHNBQSAtd2/ndEDe9wuA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-proposal-unicode-property-regex@^7.4.4": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.10.1.tgz#dc04feb25e2dd70c12b05d680190e138fa2c0c6f" - integrity sha512-JjfngYRvwmPwmnbRZyNiPFI8zxCZb8euzbCG/LxyKdeTb59tVciKo9GK9bi6JYKInk1H11Dq9j/zRqIH4KigfQ== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.1" - "@babel/helper-plugin-utils" "^7.10.1" - -"@babel/plugin-syntax-async-generators@^7.8.0", "@babel/plugin-syntax-async-generators@^7.8.4": +"@babel/plugin-syntax-async-generators@^7.8.4": version "7.8.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-bigint@7.8.3", "@babel/plugin-syntax-bigint@^7.8.3": +"@babel/plugin-syntax-bigint@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-class-properties@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.10.4.tgz#6644e6a0baa55a61f9e3231f6c9eeb6ee46c124c" - integrity sha512-GCSBF7iUle6rNugfURwNmCGG3Z/2+opxAMLs1nND4bhEG5PuxTIggDBoeYYSujAlLtsupzOHYJQgPS3pivwXIA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-class-properties@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.8.3.tgz#6cb933a8872c8d359bfde69bbeaae5162fd1e8f7" @@ -789,20 +503,6 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-dynamic-import@7.8.3", "@babel/plugin-syntax-dynamic-import@^7.8.0": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz#62bf98b2da3cd21d626154fc96ee5b3cb68eacb3" - integrity sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-export-namespace-from@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz#028964a9ba80dbc094c915c487ad7c4e7a66465a" - integrity sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.3" - "@babel/plugin-syntax-import-meta@^7.8.3": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" @@ -810,27 +510,20 @@ dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-json-strings@^7.8.0", "@babel/plugin-syntax-json-strings@^7.8.3": +"@babel/plugin-syntax-json-strings@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-jsx@7.10.4", "@babel/plugin-syntax-jsx@^7.10.4": +"@babel/plugin-syntax-jsx@7.10.4": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.10.4.tgz#39abaae3cbf710c4373d8429484e6ba21340166c" integrity sha512-KCg9mio9jwiARCB7WAcQ7Y1q+qicILjoK8LP/VkPkEKaf5dkaZZK1EcTe91a3JJlZ3qy6L5s9X52boEYi8DM9g== dependencies: "@babel/helper-plugin-utils" "^7.10.4" -"@babel/plugin-syntax-logical-assignment-operators@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" - integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.8.3.tgz#3995d7d7ffff432f6ddc742b47e730c054599897" @@ -838,20 +531,13 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.0", "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": +"@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== dependencies: "@babel/helper-plugin-utils" "^7.8.0" -"@babel/plugin-syntax-numeric-separator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" - integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-numeric-separator@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.8.3.tgz#0e3fb63e09bea1b11e96467271c8308007e7c41f" @@ -859,501 +545,50 @@ dependencies: "@babel/helper-plugin-utils" "^7.8.3" -"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" - integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-catch-binding@^7.8.0", "@babel/plugin-syntax-optional-catch-binding@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" - integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-optional-chaining@^7.8.0", "@babel/plugin-syntax-optional-chaining@^7.8.3": - version "7.8.3" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" - integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== - dependencies: - "@babel/helper-plugin-utils" "^7.8.0" - -"@babel/plugin-syntax-top-level-await@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.10.4.tgz#4bbeb8917b54fcf768364e0a81f560e33a3ef57d" - integrity sha512-ni1brg4lXEmWyafKr0ccFWkJG0CeMt4WV1oyeBW6EFObF4oOHclbkj5cARxAPQyAQ2UTuplJyK4nfkXIMMFvsQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-top-level-await@^7.8.3": - version "7.12.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" - integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-syntax-typescript@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.10.4.tgz#2f55e770d3501e83af217d782cb7517d7bb34d25" - integrity sha512-oSAEz1YkBCAKr5Yiq8/BNtvSAPwkp/IyUnwZogd8p+F0RuYQQrLeRUzIQhueQTTBy/F+a40uS7OFKxnkRvmvFQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-arrow-functions@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.10.4.tgz#e22960d77e697c74f41c501d44d73dbf8a6a64cd" - integrity sha512-9J/oD1jV0ZCBcgnoFWFq1vJd4msoKb/TCpGNFyyLt0zABdcvgK3aYikZ8HjzB14c26bc7E3Q1yugpwGy2aTPNA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-async-to-generator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.10.4.tgz#41a5017e49eb6f3cda9392a51eef29405b245a37" - integrity sha512-F6nREOan7J5UXTLsDsZG3DXmZSVofr2tGNwfdrVwkDWHfQckbQXnXSPfD7iO+c/2HGqycwyLST3DnZ16n+cBJQ== - dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-remap-async-to-generator" "^7.10.4" - -"@babel/plugin-transform-block-scoped-functions@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.10.4.tgz#1afa595744f75e43a91af73b0d998ecfe4ebc2e8" - integrity sha512-WzXDarQXYYfjaV1szJvN3AD7rZgZzC1JtjJZ8dMHUyiK8mxPRahynp14zzNjU3VkPqPsO38CzxiWO1c9ARZ8JA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-block-scoping@^7.10.4": - version "7.11.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.11.1.tgz#5b7efe98852bef8d652c0b28144cd93a9e4b5215" - integrity sha512-00dYeDE0EVEHuuM+26+0w/SCL0BH2Qy7LwHuI4Hi4MH5gkC8/AqMN5uWFJIsoXZrAphiMm1iXzBw6L2T+eA0ew== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-classes@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.10.4.tgz#405136af2b3e218bc4a1926228bc917ab1a0adc7" - integrity sha512-2oZ9qLjt161dn1ZE0Ms66xBncQH4In8Sqw1YWgBUZuGVJJS5c0OFZXL6dP2MRHrkU/eKhWg8CzFJhRQl50rQxA== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-define-map" "^7.10.4" - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-optimise-call-expression" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - "@babel/helper-split-export-declaration" "^7.10.4" - globals "^11.1.0" - -"@babel/plugin-transform-computed-properties@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.10.4.tgz#9ded83a816e82ded28d52d4b4ecbdd810cdfc0eb" - integrity sha512-JFwVDXcP/hM/TbyzGq3l/XWGut7p46Z3QvqFMXTfk6/09m7xZHJUN9xHfsv7vqqD4YnfI5ueYdSJtXqqBLyjBw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-destructuring@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.10.4.tgz#70ddd2b3d1bea83d01509e9bb25ddb3a74fc85e5" - integrity sha512-+WmfvyfsyF603iPa6825mq6Qrb7uLjTOsa3XOFzlYcYDHSS4QmpOWOL0NNBY5qMbvrcf3tq0Cw+v4lxswOBpgA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-dotall-regex@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.4.tgz#469c2062105c1eb6a040eaf4fac4b488078395ee" - integrity sha512-ZEAVvUTCMlMFAbASYSVQoxIbHm2OkG2MseW6bV2JjIygOjdVv8tuxrCTzj1+Rynh7ODb8GivUy7dzEXzEhuPaA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-dotall-regex@^7.4.4": - version "7.10.1" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.10.1.tgz#920b9fec2d78bb57ebb64a644d5c2ba67cc104ee" - integrity sha512-19VIMsD1dp02RvduFUmfzj8uknaO3uiHHF0s3E1OHnVsNj8oge8EQ5RzHRbJjGSetRnkEuBYO7TG1M5kKjGLOA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.1" - "@babel/helper-plugin-utils" "^7.10.1" - -"@babel/plugin-transform-duplicate-keys@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.10.4.tgz#697e50c9fee14380fe843d1f306b295617431e47" - integrity sha512-GL0/fJnmgMclHiBTTWXNlYjYsA7rDrtsazHG6mglaGSTh0KsrW04qml+Bbz9FL0LcJIRwBWL5ZqlNHKTkU3xAA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-exponentiation-operator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.10.4.tgz#5ae338c57f8cf4001bdb35607ae66b92d665af2e" - integrity sha512-S5HgLVgkBcRdyQAHbKj+7KyuWx8C6t5oETmUuwz1pt3WTWJhsUV0WIIXuVvfXMxl/QQyHKlSCNNtaIamG8fysw== - dependencies: - "@babel/helper-builder-binary-assignment-operator-visitor" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-for-of@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.10.4.tgz#c08892e8819d3a5db29031b115af511dbbfebae9" - integrity sha512-ItdQfAzu9AlEqmusA/65TqJ79eRcgGmpPPFvBnGILXZH975G0LNjP1yjHvGgfuCxqrPPueXOPe+FsvxmxKiHHQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-function-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.10.4.tgz#6a467880e0fc9638514ba369111811ddbe2644b7" - integrity sha512-OcDCq2y5+E0dVD5MagT5X+yTRbcvFjDI2ZVAottGH6tzqjx/LKpgkUepu3hp/u4tZBzxxpNGwLsAvGBvQ2mJzg== - dependencies: - "@babel/helper-function-name" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-literals@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-literals/-/plugin-transform-literals-7.10.4.tgz#9f42ba0841100a135f22712d0e391c462f571f3c" - integrity sha512-Xd/dFSTEVuUWnyZiMu76/InZxLTYilOSr1UlHV+p115Z/Le2Fi1KXkJUYz0b42DfndostYlPub3m8ZTQlMaiqQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-member-expression-literals@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.10.4.tgz#b1ec44fcf195afcb8db2c62cd8e551c881baf8b7" - integrity sha512-0bFOvPyAoTBhtcJLr9VcwZqKmSjFml1iVxvPL0ReomGU53CX53HsM4h2SzckNdkQcHox1bpAqzxBI1Y09LlBSw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-modules-amd@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.10.5.tgz#1b9cddaf05d9e88b3aad339cb3e445c4f020a9b1" - integrity sha512-elm5uruNio7CTLFItVC/rIzKLfQ17+fX7EVz5W0TMgIHFo1zY0Ozzx+lgwhL4plzl8OzVn6Qasx5DeEFyoNiRw== - dependencies: - "@babel/helper-module-transforms" "^7.10.5" - "@babel/helper-plugin-utils" "^7.10.4" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-commonjs@7.10.4", "@babel/plugin-transform-modules-commonjs@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.10.4.tgz#66667c3eeda1ebf7896d41f1f16b17105a2fbca0" - integrity sha512-Xj7Uq5o80HDLlW64rVfDBhao6OX89HKUmb+9vWYaLXBZOma4gA6tw4Ni1O5qVDoZWUV0fxMYA0aYzOawz0l+1w== - dependencies: - "@babel/helper-module-transforms" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-simple-access" "^7.10.4" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-systemjs@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.10.5.tgz#6270099c854066681bae9e05f87e1b9cadbe8c85" - integrity sha512-f4RLO/OL14/FP1AEbcsWMzpbUz6tssRaeQg11RH1BP/XnPpRoVwgeYViMFacnkaw4k4wjRSjn3ip1Uw9TaXuMw== - dependencies: - "@babel/helper-hoist-variables" "^7.10.4" - "@babel/helper-module-transforms" "^7.10.5" - "@babel/helper-plugin-utils" "^7.10.4" - babel-plugin-dynamic-import-node "^2.3.3" - -"@babel/plugin-transform-modules-umd@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.10.4.tgz#9a8481fe81b824654b3a0b65da3df89f3d21839e" - integrity sha512-mohW5q3uAEt8T45YT7Qc5ws6mWgJAaL/8BfWD9Dodo1A3RKWli8wTS+WiQ/knF+tXlPirW/1/MqzzGfCExKECA== - dependencies: - "@babel/helper-module-transforms" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-named-capturing-groups-regex@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.10.4.tgz#78b4d978810b6f3bcf03f9e318f2fc0ed41aecb6" - integrity sha512-V6LuOnD31kTkxQPhKiVYzYC/Jgdq53irJC/xBSmqcNcqFGV+PER4l6rU5SH2Vl7bH9mLDHcc0+l9HUOe4RNGKA== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.4" - -"@babel/plugin-transform-new-target@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.10.4.tgz#9097d753cb7b024cb7381a3b2e52e9513a9c6888" - integrity sha512-YXwWUDAH/J6dlfwqlWsztI2Puz1NtUAubXhOPLQ5gjR/qmQ5U96DY4FQO8At33JN4XPBhrjB8I4eMmLROjjLjw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-object-super@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.10.4.tgz#d7146c4d139433e7a6526f888c667e314a093894" - integrity sha512-5iTw0JkdRdJvr7sY0vHqTpnruUpTea32JHmq/atIWqsnNussbRzjEDyWep8UNztt1B5IusBYg8Irb0bLbiEBCQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-replace-supers" "^7.10.4" - -"@babel/plugin-transform-parameters@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" - integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== - dependencies: - "@babel/helper-get-function-arity" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-property-literals@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.10.4.tgz#f6fe54b6590352298785b83edd815d214c42e3c0" - integrity sha512-ofsAcKiUxQ8TY4sScgsGeR2vJIsfrzqvFb9GvJ5UdXDzl+MyYCaBj/FGzXuv7qE0aJcjWMILny1epqelnFlz8g== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-react-display-name@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.10.4.tgz#b5795f4e3e3140419c3611b7a2a3832b9aef328d" - integrity sha512-Zd4X54Mu9SBfPGnEcaGcOrVAYOtjT2on8QZkLKEq1S/tHexG39d9XXGZv19VfRrDjPJzFmPfTAqOQS1pfFOujw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-react-jsx-development@^7.10.4": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.11.5.tgz#e1439e6a57ee3d43e9f54ace363fb29cefe5d7b6" - integrity sha512-cImAmIlKJ84sDmpQzm4/0q/2xrXlDezQoixy3qoz1NJeZL/8PRon6xZtluvr4H4FzwlDGI5tCcFupMnXGtr+qw== - dependencies: - "@babel/helper-builder-react-jsx-experimental" "^7.11.5" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" - -"@babel/plugin-transform-react-jsx-self@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.10.4.tgz#cd301a5fed8988c182ed0b9d55e9bd6db0bd9369" - integrity sha512-yOvxY2pDiVJi0axdTWHSMi5T0DILN+H+SaeJeACHKjQLezEzhLx9nEF9xgpBLPtkZsks9cnb5P9iBEi21En3gg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" - -"@babel/plugin-transform-react-jsx-source@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.10.5.tgz#34f1779117520a779c054f2cdd9680435b9222b4" - integrity sha512-wTeqHVkN1lfPLubRiZH3o73f4rfon42HpgxUSs86Nc+8QIcm/B9s8NNVXu/gwGcOyd7yDib9ikxoDLxJP0UiDA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" - -"@babel/plugin-transform-react-jsx@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.10.4.tgz#673c9f913948764a4421683b2bef2936968fddf2" - integrity sha512-L+MfRhWjX0eI7Js093MM6MacKU4M6dnCRa/QPDwYMxjljzSCzzlzKzj9Pk4P3OtrPcxr2N3znR419nr3Xw+65A== - dependencies: - "@babel/helper-builder-react-jsx" "^7.10.4" - "@babel/helper-builder-react-jsx-experimental" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-jsx" "^7.10.4" - -"@babel/plugin-transform-react-pure-annotations@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.10.4.tgz#3eefbb73db94afbc075f097523e445354a1c6501" - integrity sha512-+njZkqcOuS8RaPakrnR9KvxjoG1ASJWpoIv/doyWngId88JoFlPlISenGXjrVacZUIALGUr6eodRs1vmPnF23A== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-regenerator@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.10.4.tgz#2015e59d839074e76838de2159db421966fd8b63" - integrity sha512-3thAHwtor39A7C04XucbMg17RcZ3Qppfxr22wYzZNcVIkPHfpM9J0SO8zuCV6SZa265kxBJSrfKTvDCYqBFXGw== - dependencies: - regenerator-transform "^0.14.2" - -"@babel/plugin-transform-reserved-words@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.10.4.tgz#8f2682bcdcef9ed327e1b0861585d7013f8a54dd" - integrity sha512-hGsw1O6Rew1fkFbDImZIEqA8GoidwTAilwCyWqLBM9f+e/u/sQMQu7uX6dyokfOayRuuVfKOW4O7HvaBWM+JlQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-runtime@7.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.11.5.tgz#f108bc8e0cf33c37da031c097d1df470b3a293fc" - integrity sha512-9aIoee+EhjySZ6vY5hnLjigHzunBlscx9ANKutkeWTJTx6m5Rbq6Ic01tLvO54lSusR+BxV7u4UDdCmXv5aagg== - dependencies: - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - resolve "^1.8.1" - semver "^5.5.1" - -"@babel/plugin-transform-shorthand-properties@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.10.4.tgz#9fd25ec5cdd555bb7f473e5e6ee1c971eede4dd6" - integrity sha512-AC2K/t7o07KeTIxMoHneyX90v3zkm5cjHJEokrPEAGEy3UCp8sLKfnfOIGdZ194fyN4wfX/zZUWT9trJZ0qc+Q== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-spread@^7.11.0": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-spread/-/plugin-transform-spread-7.11.0.tgz#fa84d300f5e4f57752fe41a6d1b3c554f13f17cc" - integrity sha512-UwQYGOqIdQJe4aWNyS7noqAnN2VbaczPLiEtln+zPowRNlD+79w3oi2TWfYe0eZgd+gjZCbsydN7lzWysDt+gw== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-skip-transparent-expression-wrappers" "^7.11.0" - -"@babel/plugin-transform-sticky-regex@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.10.4.tgz#8f3889ee8657581130a29d9cc91d7c73b7c4a28d" - integrity sha512-Ddy3QZfIbEV0VYcVtFDCjeE4xwVTJWTmUtorAJkn6u/92Z/nWJNV+mILyqHKrUxXYKA2EoCilgoPePymKL4DvQ== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/helper-regex" "^7.10.4" - -"@babel/plugin-transform-template-literals@^7.10.4": - version "7.10.5" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.10.5.tgz#78bc5d626a6642db3312d9d0f001f5e7639fde8c" - integrity sha512-V/lnPGIb+KT12OQikDvgSuesRX14ck5FfJXt6+tXhdkJ+Vsd0lDCVtF6jcB4rNClYFzaB2jusZ+lNISDk2mMMw== - dependencies: - "@babel/helper-annotate-as-pure" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-typeof-symbol@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.10.4.tgz#9509f1a7eec31c4edbffe137c16cc33ff0bc5bfc" - integrity sha512-QqNgYwuuW0y0H+kUE/GWSR45t/ccRhe14Fs/4ZRouNNQsyd4o3PG4OtHiIrepbM2WKUBDAXKCAK/Lk4VhzTaGA== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-typescript@^7.10.4": - version "7.11.0" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.11.0.tgz#2b4879676af37342ebb278216dd090ac67f13abb" - integrity sha512-edJsNzTtvb3MaXQwj8403B7mZoGu9ElDJQZOKjGUnvilquxBA3IQoEIOvkX/1O8xfAsnHS/oQhe2w/IXrr+w0w== - dependencies: - "@babel/helper-create-class-features-plugin" "^7.10.5" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-syntax-typescript" "^7.10.4" - -"@babel/plugin-transform-unicode-escapes@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.10.4.tgz#feae523391c7651ddac115dae0a9d06857892007" - integrity sha512-y5XJ9waMti2J+e7ij20e+aH+fho7Wb7W8rNuu72aKRwCHFqQdhkdU2lo3uZ9tQuboEJcUFayXdARhcxLQ3+6Fg== - dependencies: - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/plugin-transform-unicode-regex@^7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.10.4.tgz#e56d71f9282fac6db09c82742055576d5e6d80a8" - integrity sha512-wNfsc4s8N2qnIwpO/WP2ZiSyjfpTamT2C9V9FDH/Ljub9zw6P3SjkXcFmc0RQUt96k2fmIvtla2MMjgTwIAC+A== - dependencies: - "@babel/helper-create-regexp-features-plugin" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - -"@babel/preset-env@7.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.11.5.tgz#18cb4b9379e3e92ffea92c07471a99a2914e4272" - integrity sha512-kXqmW1jVcnB2cdueV+fyBM8estd5mlNfaQi6lwLgRwCby4edpavgbFhiBNjmWA3JpB/yZGSISa7Srf+TwxDQoA== +"@babel/plugin-syntax-object-rest-spread@7.8.3", "@babel/plugin-syntax-object-rest-spread@^7.8.0", "@babel/plugin-syntax-object-rest-spread@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" + integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== dependencies: - "@babel/compat-data" "^7.11.0" - "@babel/helper-compilation-targets" "^7.10.4" - "@babel/helper-module-imports" "^7.10.4" - "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-proposal-async-generator-functions" "^7.10.4" - "@babel/plugin-proposal-class-properties" "^7.10.4" - "@babel/plugin-proposal-dynamic-import" "^7.10.4" - "@babel/plugin-proposal-export-namespace-from" "^7.10.4" - "@babel/plugin-proposal-json-strings" "^7.10.4" - "@babel/plugin-proposal-logical-assignment-operators" "^7.11.0" - "@babel/plugin-proposal-nullish-coalescing-operator" "^7.10.4" - "@babel/plugin-proposal-numeric-separator" "^7.10.4" - "@babel/plugin-proposal-object-rest-spread" "^7.11.0" - "@babel/plugin-proposal-optional-catch-binding" "^7.10.4" - "@babel/plugin-proposal-optional-chaining" "^7.11.0" - "@babel/plugin-proposal-private-methods" "^7.10.4" - "@babel/plugin-proposal-unicode-property-regex" "^7.10.4" - "@babel/plugin-syntax-async-generators" "^7.8.0" - "@babel/plugin-syntax-class-properties" "^7.10.4" - "@babel/plugin-syntax-dynamic-import" "^7.8.0" - "@babel/plugin-syntax-export-namespace-from" "^7.8.3" - "@babel/plugin-syntax-json-strings" "^7.8.0" - "@babel/plugin-syntax-logical-assignment-operators" "^7.10.4" - "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.0" - "@babel/plugin-syntax-numeric-separator" "^7.10.4" - "@babel/plugin-syntax-object-rest-spread" "^7.8.0" - "@babel/plugin-syntax-optional-catch-binding" "^7.8.0" - "@babel/plugin-syntax-optional-chaining" "^7.8.0" - "@babel/plugin-syntax-top-level-await" "^7.10.4" - "@babel/plugin-transform-arrow-functions" "^7.10.4" - "@babel/plugin-transform-async-to-generator" "^7.10.4" - "@babel/plugin-transform-block-scoped-functions" "^7.10.4" - "@babel/plugin-transform-block-scoping" "^7.10.4" - "@babel/plugin-transform-classes" "^7.10.4" - "@babel/plugin-transform-computed-properties" "^7.10.4" - "@babel/plugin-transform-destructuring" "^7.10.4" - "@babel/plugin-transform-dotall-regex" "^7.10.4" - "@babel/plugin-transform-duplicate-keys" "^7.10.4" - "@babel/plugin-transform-exponentiation-operator" "^7.10.4" - "@babel/plugin-transform-for-of" "^7.10.4" - "@babel/plugin-transform-function-name" "^7.10.4" - "@babel/plugin-transform-literals" "^7.10.4" - "@babel/plugin-transform-member-expression-literals" "^7.10.4" - "@babel/plugin-transform-modules-amd" "^7.10.4" - "@babel/plugin-transform-modules-commonjs" "^7.10.4" - "@babel/plugin-transform-modules-systemjs" "^7.10.4" - "@babel/plugin-transform-modules-umd" "^7.10.4" - "@babel/plugin-transform-named-capturing-groups-regex" "^7.10.4" - "@babel/plugin-transform-new-target" "^7.10.4" - "@babel/plugin-transform-object-super" "^7.10.4" - "@babel/plugin-transform-parameters" "^7.10.4" - "@babel/plugin-transform-property-literals" "^7.10.4" - "@babel/plugin-transform-regenerator" "^7.10.4" - "@babel/plugin-transform-reserved-words" "^7.10.4" - "@babel/plugin-transform-shorthand-properties" "^7.10.4" - "@babel/plugin-transform-spread" "^7.11.0" - "@babel/plugin-transform-sticky-regex" "^7.10.4" - "@babel/plugin-transform-template-literals" "^7.10.4" - "@babel/plugin-transform-typeof-symbol" "^7.10.4" - "@babel/plugin-transform-unicode-escapes" "^7.10.4" - "@babel/plugin-transform-unicode-regex" "^7.10.4" - "@babel/preset-modules" "^0.1.3" - "@babel/types" "^7.11.5" - browserslist "^4.12.0" - core-js-compat "^3.6.2" - invariant "^2.2.2" - levenary "^1.1.1" - semver "^5.5.0" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/preset-modules@0.1.4": - version "0.1.4" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.4.tgz#362f2b68c662842970fdb5e254ffc8fc1c2e415e" - integrity sha512-J36NhwnfdzpmH41M1DrnkkgAqhZaqr/NBdPfQ677mLzlaXo+oDiv1deyCDtgAhz8p328otdob0Du7+xgHGZbKg== +"@babel/plugin-syntax-optional-catch-binding@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" + integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/preset-modules@^0.1.3": - version "0.1.3" - resolved "https://registry.yarnpkg.com/@babel/preset-modules/-/preset-modules-0.1.3.tgz#13242b53b5ef8c883c3cf7dddd55b36ce80fbc72" - integrity sha512-Ra3JXOHBq2xd56xSF7lMKXdjBn3T772Y1Wet3yWnkDly9zHvJki029tAFzvAAK5cf4YV3yoxuP61crYRol6SVg== +"@babel/plugin-syntax-optional-chaining@^7.8.3": + version "7.8.3" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" + integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== dependencies: - "@babel/helper-plugin-utils" "^7.0.0" - "@babel/plugin-proposal-unicode-property-regex" "^7.4.4" - "@babel/plugin-transform-dotall-regex" "^7.4.4" - "@babel/types" "^7.4.4" - esutils "^2.0.2" + "@babel/helper-plugin-utils" "^7.8.0" -"@babel/preset-react@7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/preset-react/-/preset-react-7.10.4.tgz#92e8a66d816f9911d11d4cc935be67adfc82dbcf" - integrity sha512-BrHp4TgOIy4M19JAfO1LhycVXOPWdDbTRep7eVyatf174Hff+6Uk53sDyajqZPu8W1qXRBiYOfIamek6jA7YVw== +"@babel/plugin-syntax-top-level-await@^7.8.3": + version "7.12.1" + resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.12.1.tgz#dd6c0b357ac1bb142d98537450a319625d13d2a0" + integrity sha512-i7ooMZFS+a/Om0crxZodrTzNEPJHZrlMVGMTEpFAj6rYY/bKCddB0Dk/YxfPuYXOopuhKk/e1jV6h+WUU9XN3A== dependencies: "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-transform-react-display-name" "^7.10.4" - "@babel/plugin-transform-react-jsx" "^7.10.4" - "@babel/plugin-transform-react-jsx-development" "^7.10.4" - "@babel/plugin-transform-react-jsx-self" "^7.10.4" - "@babel/plugin-transform-react-jsx-source" "^7.10.4" - "@babel/plugin-transform-react-pure-annotations" "^7.10.4" - -"@babel/preset-typescript@7.10.4": - version "7.10.4" - resolved "https://registry.yarnpkg.com/@babel/preset-typescript/-/preset-typescript-7.10.4.tgz#7d5d052e52a682480d6e2cc5aa31be61c8c25e36" - integrity sha512-SdYnvGPv+bLlwkF2VkJnaX/ni1sMNetcGI1+nThF1gyv6Ph8Qucc4ZZAjM5yZcE/AKRXIOTZz7eSRDWOEjPyRQ== + +"@babel/plugin-transform-parameters@^7.10.4": + version "7.10.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.10.5.tgz#59d339d58d0b1950435f4043e74e2510005e2c4a" + integrity sha512-xPHwUj5RdFV8l1wuYiu5S9fqWGM2DrYc24TMvUiRrPVm+SM3XeqU9BcokQX/kEUe+p2RBwy+yoiR1w/Blq6ubw== dependencies: + "@babel/helper-get-function-arity" "^7.10.4" "@babel/helper-plugin-utils" "^7.10.4" - "@babel/plugin-transform-typescript" "^7.10.4" -"@babel/runtime@7.11.2": - version "7.11.2" - resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.11.2.tgz#f549c13c754cc40b87644b9fa9f09a6a95fe0736" - integrity sha512-TeWkU52so0mPtDcaCTxNBI/IHiz0pZgr8VEFqXFtZWpYD08ZB6FaSwVAS8MKRQAP3bYKiVjwysOJgMFY28o6Tw== +"@babel/runtime@7.12.5": + version "7.12.5" + resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.12.5.tgz#410e7e487441e1b360c29be715d870d9b985882e" + integrity sha512-plcc+hbExy3McchJCEQG3knOsuh3HH+Prx1P6cLIkET/0dLuQDEnrT+s27Axgc9bqfsmNUNHfscgMUdBpC9xfg== dependencies: regenerator-runtime "^0.13.4" -"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.3.1", "@babel/runtime@^7.7.6", "@babel/runtime@^7.8.4", "@babel/runtime@^7.9.2": +"@babel/runtime@^7.1.2", "@babel/runtime@^7.10.3", "@babel/runtime@^7.3.1", "@babel/runtime@^7.7.6", "@babel/runtime@^7.9.2": version "7.10.4" resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.10.4.tgz#a6724f1a6b8d2f6ea5236dbfe58c7d7ea9c5eb99" integrity sha512-UpTN5yUJr9b4EX2CnGNWIvER7Ab83ibv0pcvvHc4UOdrBI5jb8bj+32cCwPX6xu0mt2daFNjYhoi+X7beH0RSw== @@ -1405,7 +640,7 @@ "@babel/parser" "^7.8.3" "@babel/types" "^7.8.3" -"@babel/traverse@^7.1.0", "@babel/traverse@^7.10.1", "@babel/traverse@^7.4.4", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3": +"@babel/traverse@^7.1.0", "@babel/traverse@^7.4.4", "@babel/traverse@^7.7.4", "@babel/traverse@^7.8.3": version "7.10.1" resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.10.1.tgz#bbcef3031e4152a6c0b50147f4958df54ca0dd27" integrity sha512-C/cTuXeKt85K+p08jN6vMDz8vSV0vZcI0wmQ36o6mjbuo++kPMdpOYw23W2XH04dbRt9/nMEfA4W3eR21CD+TQ== @@ -1435,15 +670,6 @@ globals "^11.1.0" lodash "^4.17.19" -"@babel/types@7.11.5", "@babel/types@^7.10.4", "@babel/types@^7.10.5", "@babel/types@^7.11.0", "@babel/types@^7.11.5": - version "7.11.5" - resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" - integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== - dependencies: - "@babel/helper-validator-identifier" "^7.10.4" - lodash "^4.17.19" - to-fast-properties "^2.0.0" - "@babel/types@7.8.3", "@babel/types@^7.8.3": version "7.8.3" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.8.3.tgz#5a383dffa5416db1b73dedffd311ffd0788fb31c" @@ -1462,7 +688,7 @@ lodash "^4.17.11" to-fast-properties "^2.0.0" -"@babel/types@^7.10.1", "@babel/types@^7.10.2", "@babel/types@^7.7.4": +"@babel/types@^7.10.1", "@babel/types@^7.10.2": version "7.10.2" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.10.2.tgz#30283be31cad0dbf6fb00bd40641ca0ea675172d" integrity sha512-AD3AwWBSz0AWF0AkCN9VPiWrvldXq+/e3cHa4J89vo4ymjz1XwrBFFVZmkJTsQIPNk+ZVomPSXUJqq8yyjZsng== @@ -1471,6 +697,15 @@ lodash "^4.17.13" to-fast-properties "^2.0.0" +"@babel/types@^7.10.4", "@babel/types@^7.11.0", "@babel/types@^7.11.5": + version "7.11.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d" + integrity sha512-bvM7Qz6eKnJVFIn+1LPtjlBFPVN5jNDc1XmN15vWe7Q3DPBufWWsLiIvUu7xW87uTG6QoggpIDnUgLQvPheU+Q== + dependencies: + "@babel/helper-validator-identifier" "^7.10.4" + lodash "^4.17.19" + to-fast-properties "^2.0.0" + "@babel/types@^7.12.1": version "7.12.7" resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.12.7.tgz#6039ff1e242640a29452c9ae572162ec9a8f5d13" @@ -1628,6 +863,13 @@ dependencies: prop-types "^15.7.2" +"@fullhuman/postcss-purgecss@^3.0.0": + version "3.1.3" + resolved "https://registry.yarnpkg.com/@fullhuman/postcss-purgecss/-/postcss-purgecss-3.1.3.tgz#47af7b87c9bfb3de4bc94a38f875b928fffdf339" + integrity sha512-kwOXw8fZ0Lt1QmeOOrd+o4Ibvp4UTEBFQbzvWldjlKv5n+G9sXfIPn1hh63IQIL8K8vbvv1oYMJiIUbuy9bGaA== + dependencies: + purgecss "^3.1.3" + "@hapi/accept@5.0.1": version "5.0.1" resolved "https://registry.yarnpkg.com/@hapi/accept/-/accept-5.0.1.tgz#068553e867f0f63225a506ed74e899441af53e10" @@ -2702,36 +1944,37 @@ dependencies: webpack-bundle-analyzer "3.6.1" -"@next/env@9.5.5": - version "9.5.5" - resolved "https://registry.yarnpkg.com/@next/env/-/env-9.5.5.tgz#db993649ec6e619e34a36de90dc2baa52fc5280f" - integrity sha512-N9wdjU6XoqLqNQWtrGiWtp1SUuJsYK1cNrZ24A6YD+4w5CNV5SkZX6aewKZCCLP5Y8UNfTij2FkJiSYUfBjX8g== +"@next/env@10.0.5": + version "10.0.5" + resolved "https://registry.yarnpkg.com/@next/env/-/env-10.0.5.tgz#446e59ee7a8d05061be784b24732c369653038ab" + integrity sha512-dw6Q7PALIo7nTFfaB4OnRDte3EikrApGtjX/4cRmYXLh+uudDI50aS39MaGeKKZ2mxPKoNiFcY6Slv1f6KIPOw== -"@next/polyfill-module@9.5.5": - version "9.5.5" - resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-9.5.5.tgz#d9c65679a66664ab4859078f58997113c9d01f10" - integrity sha512-itqYFeHo3yN4ccpHq2uNFC2UVQm12K6DxUVwYdui9MJiiueT0pSGb2laYEjf/G5+vVq7M2vb+DkjkOkPMBVfeg== +"@next/polyfill-module@10.0.5": + version "10.0.5" + resolved "https://registry.yarnpkg.com/@next/polyfill-module/-/polyfill-module-10.0.5.tgz#f2de3deee8694cc75094fea4e91225724b3a21e1" + integrity sha512-R6ySTTIl6yqyO3Xft7h+QR9Z4e6epEw+AGO125CrwPmCDQ8ASLGltsHYvSHBP7Eae7xaorkXHW0jeI8NewLpew== -"@next/react-dev-overlay@9.5.5": - version "9.5.5" - resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-9.5.5.tgz#11b36813d75c43b7bd9d5e478bded1ed5391d03a" - integrity sha512-B1nDANxjXr2oyohv+tX0OXZTmJtO5qEWmisNPGnqQ2Z32IixfaAgyNYVuCVf20ap6EUz5elhgNUwRIFh/e26mQ== +"@next/react-dev-overlay@10.0.5": + version "10.0.5" + resolved "https://registry.yarnpkg.com/@next/react-dev-overlay/-/react-dev-overlay-10.0.5.tgz#f0006e56d8c8b4269f341ff22233e4a7e1176b52" + integrity sha512-olqIaaRvFezzi02V/AYwvmrGbShUNrJDvyZTGNahxXEkiYsuu67llY5IKFM5Oya93/eRqaCCKMn89vpvYtvDcw== dependencies: - "@babel/code-frame" "7.10.4" - ally.js "1.4.1" + "@babel/code-frame" "7.12.11" anser "1.4.9" chalk "4.0.0" classnames "2.2.6" - data-uri-to-buffer "3.0.0" + css.escape "1.5.1" + data-uri-to-buffer "3.0.1" + platform "1.3.6" shell-quote "1.7.2" source-map "0.8.0-beta.0" stacktrace-parser "0.1.10" strip-ansi "6.0.0" -"@next/react-refresh-utils@9.5.5": - version "9.5.5" - resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-9.5.5.tgz#fe559b5ca51c038cb7840e0d669a6d7ef01fe4eb" - integrity sha512-Gz5z0+ID+KAGto6Tkgv1a340damEw3HG6ANLKwNi5/QSHqQ3JUAVxMuhz3qnL54505I777evpzL89ofWEMIWKw== +"@next/react-refresh-utils@10.0.5": + version "10.0.5" + resolved "https://registry.yarnpkg.com/@next/react-refresh-utils/-/react-refresh-utils-10.0.5.tgz#c1ca664c4ffe2f79d14383323d783368833d503b" + integrity sha512-Eo+nvW1ZhdkuxBWSsKHGDLNspUaJJQClld9R+H+EtiIuAQtTa8f2rhcQeyUOtvUNQoPyq7Em2PwUqOQD6LOOMA== "@nodelib/fs.scandir@2.1.3": version "2.1.3" @@ -2759,13 +2002,6 @@ "@nodelib/fs.scandir" "2.1.3" fastq "^1.6.0" -"@npmcli/move-file@^1.0.1": - version "1.0.1" - resolved "https://registry.yarnpkg.com/@npmcli/move-file/-/move-file-1.0.1.tgz#de103070dac0f48ce49cf6693c23af59c0f70464" - integrity sha512-Uv6h1sT+0DrblvIrolFtbvM1FgWm+/sy4B3pvLp67Zys+thcukzS5ekn7HsZFGpWP4Q3fYJCljbWQE/XivMRLw== - dependencies: - mkdirp "^1.0.4" - "@octokit/auth-token@^2.4.0": version "2.4.2" resolved "https://registry.yarnpkg.com/@octokit/auth-token/-/auth-token-2.4.2.tgz#10d0ae979b100fa6b72fa0e8e63e27e6d0dbff8a" @@ -2945,6 +2181,35 @@ dependencies: "@types/node" ">= 8" +"@opentelemetry/api@0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/api/-/api-0.14.0.tgz#4e17d8d2f1da72b19374efa7b6526aa001267cae" + integrity sha512-L7RMuZr5LzMmZiQSQDy9O1jo0q+DaLy6XpYJfIGfYSfoJA5qzYwUP3sP1uMIQ549DvxAgM3ng85EaPTM/hUHwQ== + dependencies: + "@opentelemetry/context-base" "^0.14.0" + +"@opentelemetry/context-base@^0.14.0": + version "0.14.0" + resolved "https://registry.yarnpkg.com/@opentelemetry/context-base/-/context-base-0.14.0.tgz#c67fc20a4d891447ca1a855d7d70fa79a3533001" + integrity sha512-sDOAZcYwynHFTbLo6n8kIbLiVF3a3BLkrmehJUyEbT9F+Smbi47kLGS2gG2g0fjBLR/Lr1InPD7kXL7FaTqEkw== + +"@reach/skip-nav@^0.12.1": + version "0.12.1" + resolved "https://registry.yarnpkg.com/@reach/skip-nav/-/skip-nav-0.12.1.tgz#082b7f22b8ab50e6bff6297137c13d0ad5a4bb64" + integrity sha512-LlnkUaVSQpo9grWbOHKC4Tc6ppwV7uiL+KhQ8388AB7sCbxL6zFo6WlZVNNHW5ahzQR86b3tQE9stf9rX2aJHw== + dependencies: + "@reach/utils" "0.12.1" + tslib "^2.0.0" + +"@reach/utils@0.12.1": + version "0.12.1" + resolved "https://registry.yarnpkg.com/@reach/utils/-/utils-0.12.1.tgz#02b9c15ba5cddf23e16f2d2ca77aef98a9702607" + integrity sha512-5uH4OgO+GupAzZuf3b6Wv/9uC6NdMBlxS6FSKD6YqSxP4QJ0vjD34RVon6N/RMRORacCLyD/aaZIA7283YgeOg== + dependencies: + "@types/warning" "^3.0.0" + tslib "^2.0.0" + warning "^4.0.3" + "@react-hook/passive-layout-effect@^1.2.0": version "1.2.0" resolved "https://registry.yarnpkg.com/@react-hook/passive-layout-effect/-/passive-layout-effect-1.2.0.tgz#1232f0b08f9bfd9f87a2898a3ae50d5f7731d806" @@ -2964,6 +2229,34 @@ dependencies: "@sinonjs/commons" "^1.7.0" +"@tailwindcss/postcss7-compat@^2.0.2", "tailwindcss@npm:@tailwindcss/postcss7-compat": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@tailwindcss/postcss7-compat/-/postcss7-compat-2.0.2.tgz#49cb21703dfb4447620fceab5cef3285cff8c69d" + integrity sha512-KM8kjG5dd8qoXBX2a6r3r1TOqhFh8NtFBheG9qpVPwSjrD8wRdoM7s+Xz56HEA1XmeN64gEKqjmY6vm55DiS3Q== + dependencies: + "@fullhuman/postcss-purgecss" "^3.0.0" + autoprefixer "^9" + bytes "^3.0.0" + chalk "^4.1.0" + color "^3.1.3" + detective "^5.2.0" + didyoumean "^1.2.1" + fs-extra "^9.0.1" + html-tags "^3.1.0" + lodash "^4.17.20" + modern-normalize "^1.0.0" + node-emoji "^1.8.1" + object-hash "^2.0.3" + postcss "^7" + postcss-functions "^3" + postcss-js "^2" + postcss-nested "^4" + postcss-selector-parser "^6.0.4" + postcss-value-parser "^4.1.0" + pretty-hrtime "^1.0.3" + reduce-css-calc "^2.1.6" + resolve "^1.19.0" + "@tokenizer/token@^0.1.0", "@tokenizer/token@^0.1.1": version "0.1.1" resolved "https://registry.yarnpkg.com/@tokenizer/token/-/token-0.1.1.tgz#f0d92c12f87079ddfd1b29f614758b9696bc29e3" @@ -3203,7 +2496,7 @@ resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.5.tgz#dcce4430e64b443ba8945f0290fb564ad5bac6dd" integrity sha512-7+2BITlgjgDhH0vvwZU/HZJVyk+2XUlvxXe8dFMedNX/aMkaOq++rMAFXc0tM7ij15QaWlbdQASBR9dihi+bDQ== -"@types/json-schema@^7.0.5": +"@types/json-schema@^7.0.5", "@types/json-schema@^7.0.6": version "7.0.6" resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.6.tgz#f4c7ec43e81b319a9815115031709f26987891f0" integrity sha512-3c+yGKvVP5Y9TYBEibGNR+kLtijnj7mYrXRg+WpFb2X9xm04g/DXYkfg4hmzJQosc9snFNUPkbYIhu+KAm6jJw== @@ -3342,6 +2635,11 @@ resolved "https://registry.yarnpkg.com/@types/user-home/-/user-home-2.0.0.tgz#17d49bd734f5826c6f7f06ac4b2ef59162fe6583" integrity sha1-F9Sb1zT1gmxvfwasSy71kWL+ZYM= +"@types/warning@^3.0.0": + version "3.0.0" + resolved "https://registry.yarnpkg.com/@types/warning/-/warning-3.0.0.tgz#0d2501268ad8f9962b740d387c4654f5f8e23e52" + integrity sha1-DSUBJorY+ZYrdA04fEZU9fjiPlI= + "@types/yargs-parser@*": version "13.0.0" resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-13.0.0.tgz#453743c5bbf9f1bed61d959baab5b06be029b2d0" @@ -3674,6 +2972,20 @@ acorn-jsx@^5.3.1: resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== +acorn-node@^1.6.1: + version "1.8.2" + resolved "https://registry.yarnpkg.com/acorn-node/-/acorn-node-1.8.2.tgz#114c95d64539e53dede23de8b9d96df7c7ae2af8" + integrity sha512-8mt+fslDufLYntIoPAaIMUe/lrbrehIiwmR3t2k9LljIzoigEPF27eLk2hy8zSGzmR/ogr7zbRKINMo1u0yh5A== + dependencies: + acorn "^7.0.0" + acorn-walk "^7.0.0" + xtend "^4.0.2" + +acorn-walk@^7.0.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" + integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== + acorn-walk@^7.1.1: version "7.1.1" resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.1.1.tgz#345f0dffad5c735e7373d2fec9a1023e6a44b83e" @@ -3684,6 +2996,11 @@ acorn@^6.4.1: resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.4.1.tgz#531e58ba3f51b9dacb9a6646ca4debf5b14ca474" integrity sha512-ZVA9k326Nwrj3Cj9jlh3wGFutC2ZornPNARZwsNYqQYgN0EsV2d53w5RN/co65Ohn4sUAUtb1rSUAOD6XN9idA== +acorn@^7.0.0: + version "7.4.1" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" + integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== + acorn@^7.1.1, acorn@^7.4.0: version "7.4.0" resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.0.tgz#e1ad486e6c54501634c6c397c5c121daa383607c" @@ -3694,16 +3011,13 @@ add-stream@^1.0.0: resolved "https://registry.yarnpkg.com/add-stream/-/add-stream-1.0.0.tgz#6a7990437ca736d5e1288db92bd3266d5f5cb2aa" integrity sha1-anmQQ3ynNtXhKI25K9MmbV9csqo= -adjust-sourcemap-loader@2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-2.0.0.tgz#6471143af75ec02334b219f54bc7970c52fb29a4" - integrity sha512-4hFsTsn58+YjrU9qKzML2JSSDqKvN8mUGQ0nNIrfPi8hmIONT4L3uUaT6MKdMsZ9AjsU6D2xDkZxCkbQPxChrA== +adjust-sourcemap-loader@3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/adjust-sourcemap-loader/-/adjust-sourcemap-loader-3.0.0.tgz#5ae12fb5b7b1c585e80bbb5a63ec163a1a45e61e" + integrity sha512-YBrGyT2/uVQ/c6Rr+t6ZJXniY03YtHGMJQYal368burRGYKqhx9qGTWqcBU5s1CwYY9E/ri63RYyG1IacMZtqw== dependencies: - assert "1.4.1" - camelcase "5.0.0" - loader-utils "1.2.3" - object-path "0.11.4" - regex-parser "2.2.10" + loader-utils "^2.0.0" + regex-parser "^2.2.11" agent-base@4, agent-base@^4.1.0: version "4.3.0" @@ -3771,6 +3085,16 @@ ajv@^6.1.0, ajv@^6.10.0, ajv@^6.10.2, ajv@^6.12.2, ajv@^6.12.4, ajv@^6.5.5: json-schema-traverse "^0.4.1" uri-js "^4.2.2" +ajv@^6.12.5: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + all-contributors-cli@6.19.0, all-contributors-cli@^6.4.0: version "6.19.0" resolved "https://registry.yarnpkg.com/all-contributors-cli/-/all-contributors-cli-6.19.0.tgz#7e4550973afede2476b62bd159fee6d72a1ad802" @@ -3787,14 +3111,6 @@ all-contributors-cli@6.19.0, all-contributors-cli@^6.4.0: pify "^5.0.0" yargs "^15.0.1" -ally.js@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/ally.js/-/ally.js-1.4.1.tgz#9fb7e6ba58efac4ee9131cb29aa9ee3b540bcf1e" - integrity sha1-n7fmuljvrE7pExyymqnuO1QLzx4= - dependencies: - css.escape "^1.5.0" - platform "1.3.3" - amator@^1.1.0: version "1.1.0" resolved "https://registry.yarnpkg.com/amator/-/amator-1.1.0.tgz#08c6b60bc93aec2b61bbfc0c4d677d30323cc0f1" @@ -3964,6 +3280,11 @@ array-flatten@1.1.1: resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-1.1.1.tgz#9a5f699051b1e7073328f2a008968b64ea2955d2" integrity sha1-ml9pkFGx5wczKPKgCJaLZOopVdI= +array-flatten@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/array-flatten/-/array-flatten-3.0.0.tgz#6428ca2ee52c7b823192ec600fa3ed2f157cd541" + integrity sha512-zPMVc3ZYlGLNk4mpK1NzP2wg0ml9t7fUgDsayR5Y5rSzxQilzR9FGu/EH2jQOcKSAeAfWeylyW8juy3OkWRvNA== + array-ify@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/array-ify/-/array-ify-1.0.0.tgz#9e528762b4a9066ad163a6962a364418e9626ece" @@ -4049,13 +3370,6 @@ assert-plus@1.0.0, assert-plus@^1.0.0: resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525" integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU= -assert@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91" - integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE= - dependencies: - util "0.10.3" - assert@^1.1.1: version "1.5.0" resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb" @@ -4119,6 +3433,19 @@ author-regex@^1.0.0: resolved "https://registry.yarnpkg.com/author-regex/-/author-regex-1.0.0.tgz#d08885be6b9bbf9439fe087c76287245f0a81450" integrity sha1-0IiFvmubv5Q5/gh8dihyRfCoFFA= +autoprefixer@^9: + version "9.8.6" + resolved "https://registry.yarnpkg.com/autoprefixer/-/autoprefixer-9.8.6.tgz#3b73594ca1bf9266320c5acf1588d74dea74210f" + integrity sha512-XrvP4VVHdRBCdX1S3WXVD8+RyG9qeb1D5Sn1DeLiG2xfSpzellk5k54xbUERJ3M5DggQxes39UGOTP8CFrEGbg== + dependencies: + browserslist "^4.12.0" + caniuse-lite "^1.0.30001109" + colorette "^1.2.1" + normalize-range "^0.1.2" + num2fraction "^1.2.2" + postcss "^7.0.32" + postcss-value-parser "^4.1.0" + await-to-js@^2.1.1: version "2.1.1" resolved "https://registry.yarnpkg.com/await-to-js/-/await-to-js-2.1.1.tgz#c2093cd5a386f2bb945d79b292817bbc3f41b31b" @@ -4188,13 +3515,6 @@ babel-plugin-apply-mdx-type-prop@1.6.17: "@babel/helper-plugin-utils" "7.10.4" "@mdx-js/util" "1.6.17" -babel-plugin-dynamic-import-node@^2.3.3: - version "2.3.3" - resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.3.tgz#84fda19c976ec5c6defef57f9427b3def66e17a3" - integrity sha512-jZVI+s9Zg3IqA/kdi0i6UDCybUI3aSBLnglhYbSSjKlV7yF1F/5LWv8MakQmvYpnbJDS6fcBL2KzHSxNCMtWSQ== - dependencies: - object.assign "^4.1.0" - babel-plugin-extract-import-names@1.6.17: version "1.6.17" resolved "https://registry.yarnpkg.com/babel-plugin-extract-import-names/-/babel-plugin-extract-import-names-1.6.17.tgz#7a73aabee065360d6d998984e366b48eac4cf322" @@ -4317,6 +3637,11 @@ base64-js@^1.0.2: resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.3.0.tgz#cab1e6118f051095e58b5281aea8c1cd22bfc0e3" integrity sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw== +base64-js@^1.3.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/base64-js/-/base64-js-1.5.1.tgz#1b1b440160a5bf7ad40b650f095963481903930a" + integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA== + base@^0.11.1: version "0.11.2" resolved "https://registry.yarnpkg.com/base/-/base-0.11.2.tgz#7bde5ced145b6d551a90db87f83c558b4eb48a8f" @@ -4372,6 +3697,15 @@ binary-extensions@^2.0.0: resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.0.0.tgz#23c0df14f6a88077f5f986c0d167ec03c3d5537c" integrity sha512-Phlt0plgpIIBOGTT/ehfFnbNlfsDEiqmzE2KRXoX1bLIlir4X/MR+zSyBEkL05ffWgnRSf/DXv+WrUAVr93/ow== +bl@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/bl/-/bl-4.0.3.tgz#12d6287adc29080e22a705e5764b2a9522cdc489" + integrity sha512-fs4G6/Hu4/EE+F75J8DuN/0IpQqNjAdC7aEQv7Qt8MHGUH7Ckv2MwTEEeN9QehD0pfIDkMI1bkHYkKy7xHyKIg== + dependencies: + buffer "^5.5.0" + inherits "^2.0.4" + readable-stream "^3.4.0" + bluebird@^3.5.1, bluebird@^3.5.3: version "3.5.4" resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.4.tgz#d6cc661595de30d5b3af5fcedd3c0b3ef6ec5714" @@ -4408,7 +3742,7 @@ body-parser@1.19.0: raw-body "2.4.0" type-is "~1.6.17" -boolbase@~1.0.0: +boolbase@^1.0.0, boolbase@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24= @@ -4523,17 +3857,17 @@ browserify-zlib@^0.2.0: dependencies: pako "~1.0.5" -browserslist@4.13.0: - version "4.13.0" - resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.13.0.tgz#42556cba011e1b0a2775b611cba6a8eca18e940d" - integrity sha512-MINatJ5ZNrLnQ6blGvePd/QOz9Xtu+Ne+x29iQSCHfkU5BugKVJwZKn/iiL8UbpIpa3JhviKjz+XxMo0m2caFQ== +browserslist@4.14.6: + version "4.14.6" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.14.6.tgz#97702a9c212e0c6b6afefad913d3a1538e348457" + integrity sha512-zeFYcUo85ENhc/zxHbiIp0LGzzTrE2Pv2JhxvS7kpUb9Q9D38kUX6Bie7pGutJ/5iF5rOxE7CepAuWD56xJ33A== dependencies: - caniuse-lite "^1.0.30001093" - electron-to-chromium "^1.3.488" - escalade "^3.0.1" - node-releases "^1.1.58" + caniuse-lite "^1.0.30001154" + electron-to-chromium "^1.3.585" + escalade "^3.1.1" + node-releases "^1.1.65" -browserslist@^4.12.0, browserslist@^4.8.5: +browserslist@^4.12.0: version "4.12.0" resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.12.0.tgz#06c6d5715a1ede6c51fc39ff67fd647f740b656d" integrity sha512-UH2GkcEDSI0k/lRkuDSzFl9ZZ87skSy9w2XAn1MsZnL+4c4rqbBd3e82UWHbYDpztABrPBhZsTEeuxVfHppqDg== @@ -4567,7 +3901,7 @@ buffer-crc32@~0.2.3: resolved "https://registry.yarnpkg.com/buffer-crc32/-/buffer-crc32-0.2.13.tgz#0d333e3f00eac50aa1454abd30ef8c2a5d9a7242" integrity sha1-DTM+PwDqxQqhRUq9MO+MKl2ackI= -buffer-from@1.x, buffer-from@^1.0.0, buffer-from@^1.1.1: +buffer-from@1.x, buffer-from@^1.0.0: version "1.1.1" resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== @@ -4594,6 +3928,14 @@ buffer@^4.3.0: ieee754 "^1.1.4" isarray "^1.0.0" +buffer@^5.5.0: + version "5.7.1" + resolved "https://registry.yarnpkg.com/buffer/-/buffer-5.7.1.tgz#ba62e7c13133053582197160851a8f648e99eed0" + integrity sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ== + dependencies: + base64-js "^1.3.1" + ieee754 "^1.1.13" + builtin-status-codes@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz#85982878e21b98e1c66425e03d0174788f569ee8" @@ -4614,34 +3956,11 @@ byte-size@^5.0.1: resolved "https://registry.yarnpkg.com/byte-size/-/byte-size-5.0.1.tgz#4b651039a5ecd96767e71a3d7ed380e48bed4191" integrity sha512-/XuKeqWocKsYa/cBY1YbSJSWWqTi4cFgr9S6OyM7PBaPbr9zvNGwWP33vt0uqGhwDdN+y3yhbXVILEUpnwEWGw== -bytes@3.1.0: +bytes@3.1.0, bytes@^3.0.0: version "3.1.0" resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6" integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg== -cacache@15.0.5: - version "15.0.5" - resolved "https://registry.yarnpkg.com/cacache/-/cacache-15.0.5.tgz#69162833da29170d6732334643c60e005f5f17d0" - integrity sha512-lloiL22n7sOjEEXdL8NAjTgv9a1u43xICE9/203qonkZUCj5X1UEWIdf2/Y0d6QcCtMzbKQyhrcDbdvlZTs/+A== - dependencies: - "@npmcli/move-file" "^1.0.1" - chownr "^2.0.0" - fs-minipass "^2.0.0" - glob "^7.1.4" - infer-owner "^1.0.4" - lru-cache "^6.0.0" - minipass "^3.1.1" - minipass-collect "^1.0.2" - minipass-flush "^1.0.5" - minipass-pipeline "^1.2.2" - mkdirp "^1.0.3" - p-map "^4.0.0" - promise-inflight "^1.0.1" - rimraf "^3.0.2" - ssri "^8.0.0" - tar "^6.0.2" - unique-filename "^1.1.1" - cacache@^12.0.0: version "12.0.2" resolved "https://registry.yarnpkg.com/cacache/-/cacache-12.0.2.tgz#8db03205e36089a3df6954c66ce92541441ac46c" @@ -4744,7 +4063,7 @@ camel-case@^4.1.1: pascal-case "^3.1.1" tslib "^1.10.0" -camelcase-css@2.0.1: +camelcase-css@2.0.1, camelcase-css@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/camelcase-css/-/camelcase-css-2.0.1.tgz#ee978f6947914cc30c6b44741b6ed1df7f043fd5" integrity sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA== @@ -4775,11 +4094,6 @@ camelcase-keys@^6.2.2: map-obj "^4.0.0" quick-lru "^4.0.1" -camelcase@5.0.0: - version "5.0.0" - resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.0.0.tgz#03295527d58bd3cd4aa75363f35b2e8d97be2f42" - integrity sha512-faqwZqnWxbxn+F1d399ygeamQNy3lPp/H9H6rNrqYh4FSVCtcY+3cub1MxA8o9mDd55mM8Aghuu/kuyYA6VTsA== - camelcase@5.3.1, camelcase@^5.0.0, camelcase@^5.3.1: version "5.3.1" resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" @@ -4810,6 +4124,11 @@ caniuse-lite@^1.0.30001093, caniuse-lite@^1.0.30001113: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001135.tgz#995b1eb94404a3c9a0d7600c113c9bb27f2cd8aa" integrity sha512-ziNcheTGTHlu9g34EVoHQdIu5g4foc8EsxMGC7Xkokmvw0dqNtX8BS8RgCgFBaAiSp2IdjvBxNdh0ssib28eVQ== +caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001154: + version "1.0.30001176" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001176.tgz#e44bac506d4656bae4944a1417f41597bd307335" + integrity sha512-VWdkYmqdkDLRe0lvfJlZQ43rnjKqIGKHWhWWRbkqMsJIUaYDNf/K/sdZZcVO6YKQklubokdkJY+ujArsuJ5cag== + capital-case@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.3.tgz#339bd77e8fab6cf75111d4fca509b3edf7c117c8" @@ -4841,6 +4160,15 @@ ccount@^1.0.0, ccount@^1.0.3: resolved "https://registry.yarnpkg.com/ccount/-/ccount-1.0.5.tgz#ac82a944905a65ce204eb03023157edf29425c17" integrity sha512-MOli1W+nfbPLlKEhInaxhRdp7KVLFxLN5ykwzHgLsLI3H3gs5jjFAK4Eoj3OzzcxCtumDaI8onoVDeQyWaNTkw== +chalk@2.4.2, chalk@^2.0.0, chalk@^2.3.1, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + chalk@4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.0.0.tgz#6e98081ed2d17faab615eb52ac66ec1fe6209e72" @@ -4860,15 +4188,6 @@ chalk@^1.1.1, chalk@^1.1.3: strip-ansi "^3.0.0" supports-color "^2.0.0" -chalk@^2.0.0, chalk@^2.3.1, chalk@^2.3.2, chalk@^2.4.1, chalk@^2.4.2: - version "2.4.2" - resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" - integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== - dependencies: - ansi-styles "^3.2.1" - escape-string-regexp "^1.0.5" - supports-color "^5.3.0" - chalk@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/chalk/-/chalk-3.0.0.tgz#3f73c2bf526591f574cc492c51e2456349f844e4" @@ -4938,6 +4257,17 @@ check-types@^8.0.3: resolved "https://registry.yarnpkg.com/check-types/-/check-types-8.0.3.tgz#3356cca19c889544f2d7a95ed49ce508a0ecf552" integrity sha512-YpeKZngUmG65rLudJ4taU7VLkOCTMhNl/u4ctNC56LQS/zJTyNH0Lrtwm1tfTsbLlwvlfsA2d1c8vCf/Kh2KwQ== +cheerio-select-tmp@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/cheerio-select-tmp/-/cheerio-select-tmp-0.1.1.tgz#55bbef02a4771710195ad736d5e346763ca4e646" + integrity sha512-YYs5JvbpU19VYJyj+F7oYrIE2BOll1/hRU7rEy/5+v9BzkSo3bK81iAeeQEMI92vRIxz677m72UmJUiVwwgjfQ== + dependencies: + css-select "^3.1.2" + css-what "^4.0.0" + domelementtype "^2.1.0" + domhandler "^4.0.0" + domutils "^2.4.4" + cheerio@^1.0.0-rc.1: version "1.0.0-rc.3" resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.3.tgz#094636d425b2e9c0f4eb91a46c05630c9a1a8bf6" @@ -4950,7 +4280,35 @@ cheerio@^1.0.0-rc.1: lodash "^4.15.0" parse5 "^3.0.1" -chokidar@2.1.8, chokidar@^2.1.8: +cheerio@^1.0.0-rc.5: + version "1.0.0-rc.5" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.0.0-rc.5.tgz#88907e1828674e8f9fee375188b27dadd4f0fa2f" + integrity sha512-yoqps/VCaZgN4pfXtenwHROTp8NG6/Hlt4Jpz2FEP0ZJQ+ZUkVDd0hAPDNKhj3nakpfPt/CNs57yEtxD1bXQiw== + dependencies: + cheerio-select-tmp "^0.1.0" + dom-serializer "~1.2.0" + domhandler "^4.0.0" + entities "~2.1.0" + htmlparser2 "^6.0.0" + parse5 "^6.0.0" + parse5-htmlparser2-tree-adapter "^6.0.0" + +chokidar@3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.4.3.tgz#c1df38231448e45ca4ac588e6c79573ba6a57d5b" + integrity sha512-DtM3g7juCXQxFVSNPNByEC2+NImtBuxQQvWlHunpJIS5Ocr0lG306cC7FCi7cEA0fzmybPUIl4txBIobk1gGOQ== + dependencies: + anymatch "~3.1.1" + braces "~3.0.2" + glob-parent "~5.1.0" + is-binary-path "~2.1.0" + is-glob "~4.0.1" + normalize-path "~3.0.0" + readdirp "~3.5.0" + optionalDependencies: + fsevents "~2.1.2" + +chokidar@^2.1.8: version "2.1.8" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.8.tgz#804b3a7b6a99358c3c5c61e71d8728f041cff917" integrity sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg== @@ -4989,11 +4347,6 @@ chownr@^1.1.1: resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494" integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g== -chownr@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/chownr/-/chownr-2.0.0.tgz#15bfbe53d2eab4cf70f18a8cd68ebe5b3cb1dece" - integrity sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ== - chrome-trace-event@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4" @@ -5182,7 +4535,7 @@ collection-visit@^1.0.0: map-visit "^1.0.0" object-visit "^1.0.0" -color-convert@^1.9.0: +color-convert@^1.9.0, color-convert@^1.9.1: version "1.9.3" resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== @@ -5201,11 +4554,32 @@ color-name@1.1.3: resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= -color-name@~1.1.4: +color-name@^1.0.0, color-name@~1.1.4: version "1.1.4" resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== +color-string@^1.5.4: + version "1.5.4" + resolved "https://registry.yarnpkg.com/color-string/-/color-string-1.5.4.tgz#dd51cd25cfee953d138fe4002372cc3d0e504cb6" + integrity sha512-57yF5yt8Xa3czSEW1jfQDE79Idk0+AkN/4KWad6tbdxUmAs3MvjxlWSWD4deYytcRfoZ9nhKyFl1kj5tBvidbw== + dependencies: + color-name "^1.0.0" + simple-swizzle "^0.2.2" + +color@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/color/-/color-3.1.3.tgz#ca67fb4e7b97d611dcde39eceed422067d91596e" + integrity sha512-xgXAcTHa2HeFCGLE9Xs/R82hujGtu9Jd9x4NW3T34+OMs7VoPsjwzRczKHvTAHeJwWFwX5j15+MgAppE8ztObQ== + dependencies: + color-convert "^1.9.1" + color-string "^1.5.4" + +colorette@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/colorette/-/colorette-1.2.1.tgz#4d0b921325c14faf92633086a536db6e89564b1b" + integrity sha512-puCDz0CzydiSYOrnXpz/PKd69zRrribezjtE9yd4zvytoRc8+RY/KJPvtPFKZS3E3wP6neGyMe0vOTlHO5L3Pw== + columnify@^1.5.4: version "1.5.4" resolved "https://registry.yarnpkg.com/columnify/-/columnify-1.5.4.tgz#4737ddf1c7b69a8a7c340570782e947eec8e78bb" @@ -5310,7 +4684,7 @@ commander@^2.18.0, commander@^2.20.0, commander@~2.20.3: resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== -commander@^6.1.0, commander@^6.2.0: +commander@^6.0.0, commander@^6.1.0, commander@^6.2.0: version "6.2.1" resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== @@ -5624,14 +4998,6 @@ copy-to-clipboard@^3.2.0: dependencies: toggle-selection "^1.0.6" -core-js-compat@^3.6.2: - version "3.6.5" - resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.6.5.tgz#2a51d9a4e25dfd6e690251aa81f99e3c05481f1c" - integrity sha512-7ItTKOhOZbznhXAQ2g/slGg1PJV5zDO/WdkTwi7UEOJmkvsE32PWvx6mKtDjiMpjnR2CNf6BAD6sSxIlv7ptng== - dependencies: - browserslist "^4.8.5" - semver "7.0.0" - core-js@^2.5.0: version "2.6.11" resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.11.tgz#38831469f9922bded8ee21c9dc46985e0399308c" @@ -5712,12 +5078,12 @@ create-hmac@^1.1.0, create-hmac@^1.1.2, create-hmac@^1.1.4: safe-buffer "^5.0.1" sha.js "^2.4.8" -cross-fetch@3.0.5: - version "3.0.5" - resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.5.tgz#2739d2981892e7ab488a7ad03b92df2816e03f4c" - integrity sha512-FFLcLtraisj5eteosnX1gf01qYDCOc4fDy0+euOt8Kn9YBY2NtXL/pCoYPavw24NIQkQqm5ZOLsGD5Zzj0gyew== +cross-fetch@3.0.6: + version "3.0.6" + resolved "https://registry.yarnpkg.com/cross-fetch/-/cross-fetch-3.0.6.tgz#3a4040bc8941e653e0e9cf17f29ebcd177d3365c" + integrity sha512-KBPUbqgFjzWlVcURG+Svp9TlhA5uliYtiNx/0r8nv0pdypeQCRJ9IaSIc3q/x3q8t3F75cHuwxVql1HFGHCNJQ== dependencies: - node-fetch "2.6.0" + node-fetch "2.6.1" cross-spawn@^5.0.1: version "5.1.0" @@ -5791,6 +5157,17 @@ css-loader@4.3.0: schema-utils "^2.7.1" semver "^7.3.2" +css-select@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-3.1.2.tgz#d52cbdc6fee379fba97fb0d3925abbd18af2d9d8" + integrity sha512-qmss1EihSuBNWNNhHjxzxSfJoFBM/lERB/Q4EnsJQQC62R2evJDW481091oAdOr9uh46/0n4nrg0It5cAnj1RA== + dependencies: + boolbase "^1.0.0" + css-what "^4.0.0" + domhandler "^4.0.0" + domutils "^2.4.3" + nth-check "^2.0.0" + css-select@~1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.2.0.tgz#2b3a110539c5355f1cd8d314623e870b121ec858" @@ -5809,12 +5186,22 @@ css-tree@^1.0.0-alpha.28: mdn-data "2.0.6" source-map "^0.6.1" +css-unit-converter@^1.1.1: + version "1.1.2" + resolved "https://registry.yarnpkg.com/css-unit-converter/-/css-unit-converter-1.1.2.tgz#4c77f5a1954e6dbff60695ecb214e3270436ab21" + integrity sha512-IiJwMC8rdZE0+xiEZHeru6YoONC4rfPMqGm2W85jMIbkFvv5nFTwJVFHam2eFrN6txmoUYFAFXiv8ICVeTO0MA== + css-what@2.1: version "2.1.3" resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2" integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg== -css.escape@^1.5.0: +css-what@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-4.0.0.tgz#35e73761cab2eeb3d3661126b23d7aa0e8432233" + integrity sha512-teijzG7kwYfNVsUh2H/YN62xW3KK9YhXEgSlbxMlcyjPNvdKJqFx5lrwlJgoFP1ZHlB89iGDlo/JyshKeRhv5A== + +css.escape@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/css.escape/-/css.escape-1.5.1.tgz#42e27d4fa04ae32f931a4b4d4191fa9cddee97cb" integrity sha1-QuJ9T6BK4y+TGktNQZH6nN3ul8s= @@ -5834,35 +5221,20 @@ cssesc@^3.0.0: resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== -cssnano-preset-simple@1.1.4: - version "1.1.4" - resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.1.4.tgz#7b287a31df786348565d02342df71af8f758ac82" - integrity sha512-EYKDo65W+AxMViUijv/hvhbEnxUjmu3V7omcH1MatPOwjRLrAgVArUOE8wTUyc1ePFEtvV8oCT4/QSRJDorm/A== - dependencies: - postcss "^7.0.32" - -cssnano-preset-simple@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.2.0.tgz#afcf13eb076e8ebd91c4f311cd449781c14c7371" - integrity sha512-zojGlY+KasFeQT/SnD/WqYXHcKddz2XHRDtIwxrWpGqGHp5IyLWsWFS3UW7pOf3AWvfkpYSRdxOSlYuJPz8j8g== +cssnano-preset-simple@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/cssnano-preset-simple/-/cssnano-preset-simple-1.2.1.tgz#8976013114b1fc4718253d30f21aaed1780fb80e" + integrity sha512-B2KahOIFTV6dw5Ioy9jHshTh/vAYNnUB2enyWRgnAEg3oJBjI/035ExpePaMqS2SwpbH7gCgvQqwpMBH6hTJSw== dependencies: caniuse-lite "^1.0.30001093" postcss "^7.0.32" -cssnano-simple@1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.0.5.tgz#66ee528f3a4e60754e2625ea9f51ac315f5f0a92" - integrity sha512-NJjx2Er1C3pa75v1GwMKm0w6xAp1GsW2Ql1As4CWPNFxTgYFN5e8wblYeHfna13sANAhyIdSIPqKJjBO4CU5Eg== - dependencies: - cssnano-preset-simple "1.1.4" - postcss "^7.0.32" - -cssnano-simple@1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.2.0.tgz#b8cc5f52c2a52e6513b4636d0da165ec9d48d327" - integrity sha512-pton9cZ70/wOCWMAbEGHO1ACsW1KggTB6Ikj7k71uOEsz6SfByH++86+WAmXjRSc9q/g9gxkpFP9bDX9vRotdA== +cssnano-simple@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/cssnano-simple/-/cssnano-simple-1.2.1.tgz#6de5d9dd75774bc8f31767573410a952c7dd8a12" + integrity sha512-9vOyjw8Dj/T12kIOnXPZ5VnEIo6F3YMaIn0wqJXmn277R58cWpI3AvtdlCBtohX7VAUNYcyk2d0dKcXXkb5I6Q== dependencies: - cssnano-preset-simple "1.2.0" + cssnano-preset-simple "1.2.1" postcss "^7.0.32" cssom@^0.4.4: @@ -5920,12 +5292,10 @@ dashdash@^1.12.0: dependencies: assert-plus "^1.0.0" -data-uri-to-buffer@3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.0.tgz#8a3088a5efd3f53c3682343313c6895d498eb8d7" - integrity sha512-MJ6mFTZ+nPQO+39ua/ltwNePXrfdF3Ww0wP1Od7EePySXN1cP9XNqRQOG3FxTfipp8jx898LUCgBCEP11Qw/ZQ== - dependencies: - buffer-from "^1.1.1" +data-uri-to-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/data-uri-to-buffer/-/data-uri-to-buffer-3.0.1.tgz#594b8973938c5bc2c33046535785341abc4f3636" + integrity sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og== data-urls@^2.0.0: version "2.0.0" @@ -6007,6 +5377,20 @@ decode-uri-component@^0.2.0: resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545" integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU= +decompress-response@^4.2.0: + version "4.2.1" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-4.2.1.tgz#414023cc7a302da25ce2ec82d0d5238ccafd8986" + integrity sha512-jOSne2qbyE+/r8G1VU+G/82LBs2Fs4LAsTiLSHOCOMZQl2OKZ6i8i4IyHemTe+/yIXOtTcRQMzPcgyhoFlqPkw== + dependencies: + mimic-response "^2.0.0" + +decompress-response@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-6.0.0.tgz#ca387612ddb7e104bd16d85aab00d5ecf09c66fc" + integrity sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ== + dependencies: + mimic-response "^3.1.0" + dedent@^0.7.0: version "0.7.0" resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" @@ -6063,6 +5447,11 @@ define-property@^2.0.2: is-descriptor "^1.0.2" isobject "^3.0.1" +defined@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/defined/-/defined-1.0.0.tgz#c98d9bcef75674188e110969151199e39b1fa693" + integrity sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM= + delayed-stream@~1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" @@ -6118,7 +5507,7 @@ detect-indent@^5.0.0: resolved "https://registry.yarnpkg.com/detect-indent/-/detect-indent-5.0.0.tgz#3871cc0a6a002e8c3e5b3cf7f336264675f06b9d" integrity sha1-OHHMCmoALow+Wzz38zYmRnXwa50= -detect-libc@^1.0.2: +detect-libc@^1.0.2, detect-libc@^1.0.3: version "1.0.3" resolved "https://registry.yarnpkg.com/detect-libc/-/detect-libc-1.0.3.tgz#fa137c4bd698edf55cd5cd02ac559f91a4c4ba9b" integrity sha1-+hN8S9aY7fVc1c0CrFWfkaTEups= @@ -6128,6 +5517,15 @@ detect-newline@^3.0.0: resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== +detective@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/detective/-/detective-5.2.0.tgz#feb2a77e85b904ecdea459ad897cc90a99bd2a7b" + integrity sha512-6SsIx+nUUbuK0EthKjv0zrdnajCCXVYGmbYYiYjFVpzcjwEs/JMDZ8tPRG29J/HhN56t3GJp2cGSWDRjjot8Pg== + dependencies: + acorn-node "^1.6.1" + defined "^1.0.0" + minimist "^1.1.1" + dezalgo@^1.0.0: version "1.0.3" resolved "https://registry.yarnpkg.com/dezalgo/-/dezalgo-1.0.3.tgz#7f742de066fc748bc8db820569dddce49bf0d456" @@ -6194,7 +5592,7 @@ doctrine@^3.0.0: dependencies: esutils "^2.0.2" -dom-serializer@0, dom-serializer@^0.2.1: +dom-serializer@0: version "0.2.2" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.2.2.tgz#1afb81f533717175d478655debc5e332d9f9bb51" integrity sha512-2/xPb3ORsQ42nHYiSunXkDjPLBaEj/xTwUO4B7XCZQTRk7EBtTOPaygh10YAAh2OI1Qrp6NWfpAhzswj0ydt9g== @@ -6202,15 +5600,24 @@ dom-serializer@0, dom-serializer@^0.2.1: domelementtype "^2.0.1" entities "^2.0.0" -dom-serializer@1.0.1: - version "1.0.1" - resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.0.1.tgz#79695eb49af3cd8abc8d93a73da382deb1ca0795" - integrity sha512-1Aj1Qy3YLbdslkI75QEOfdp9TkQ3o8LRISAzxOibjBs/xWwr1WxZFOQphFkZuepHFGo+kB8e5FVJSS0faAJ4Rw== +dom-serializer@1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.1.0.tgz#5f7c828f1bfc44887dc2a315ab5c45691d544b58" + integrity sha512-ox7bvGXt2n+uLWtCRLybYx60IrOlWL/aCebWJk1T0d4m3y2tzf4U3ij9wBMUb6YJZpz06HCCYuyCDveE2xXmzQ== dependencies: domelementtype "^2.0.1" domhandler "^3.0.0" entities "^2.0.0" +dom-serializer@^1.0.1, dom-serializer@~1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.2.0.tgz#3433d9136aeb3c627981daa385fc7f32d27c48f1" + integrity sha512-n6kZFH/KlCrqs/1GHMOd5i2fd/beQHuehKdWvNNffbGHTr/almdhuVvTVFb3V7fglz+nC50fFusu3lY33h12pA== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + entities "^2.0.0" + dom-serializer@~0.1.1: version "0.1.1" resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-0.1.1.tgz#1ec4059e284babed36eec2941d4a970a189ce7c0" @@ -6234,6 +5641,11 @@ domelementtype@^2.0.1: resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.0.1.tgz#1f8bdfe91f5a78063274e803b4bdcedf6e94f94d" integrity sha512-5HOHUDsYZWV8FGWN0Njbr/Rn7f/eWSQi1v7+HsUVwXgn8nWWlL64zKDkS0n8ZmQ3mlWOMuXOnR+7Nx/5tMO5AQ== +domelementtype@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.1.0.tgz#a851c080a6d1c3d94344aed151d99f669edf585e" + integrity sha512-LsTgx/L5VpD+Q8lmsXSHW2WpA+eBlZ9HPf3erD1IoPF00/3JKHZ3BknUVA2QGDNu69ZNmyFmCWBSO45XjYKC5w== + domexception@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" @@ -6241,10 +5653,10 @@ domexception@^2.0.1: dependencies: webidl-conversions "^5.0.0" -domhandler@3.0.0, domhandler@^3.0.0: - version "3.0.0" - resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" - integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== +domhandler@3.3.0, domhandler@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.3.0.tgz#6db7ea46e4617eb15cf875df68b2b8524ce0037a" + integrity sha512-J1C5rIANUbuYK+FuFL98650rihynUOEzRLxW+90bKZRWB6A1X1Tf82GxR1qAWLyfNPRvjqfip3Q5tdYlmAa9lA== dependencies: domelementtype "^2.0.1" @@ -6255,6 +5667,20 @@ domhandler@^2.3.0: dependencies: domelementtype "1" +domhandler@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-3.0.0.tgz#51cd13efca31da95bbb0c5bee3a48300e333b3e9" + integrity sha512-eKLdI5v9m67kbXQbJSNn1zjh0SDzvzWVWtX+qEI3eMjZw8daH9k8rlj1FZY9memPwjiskQFbe7vHVVJIAqoEhw== + dependencies: + domelementtype "^2.0.1" + +domhandler@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.0.0.tgz#01ea7821de996d85f69029e81fa873c21833098e" + integrity sha512-KPTbnGQ1JeEMQyO1iYXoagsI6so/C96HZiFyByU3T6iAzpXn8EGEvct6unm1ZGoed8ByO2oirxgwxBmqKF9haA== + dependencies: + domelementtype "^2.1.0" + domutils@1.5.1: version "1.5.1" resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf" @@ -6263,14 +5689,14 @@ domutils@1.5.1: dom-serializer "0" domelementtype "1" -domutils@2.1.0, domutils@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.1.0.tgz#7ade3201af43703fde154952e3a868eb4b635f16" - integrity sha512-CD9M0Dm1iaHfQ1R/TI+z3/JWp/pgub0j4jIQKH89ARR4ATAV2nbaOQS5XxU9maJP5jHaPdDDQSEHuE2UmpUTKg== +domutils@2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.2.tgz#7ee5be261944e1ad487d9aa0616720010123922b" + integrity sha512-NKbgaM8ZJOecTZsIzW5gSuplsX2IWW2mIK7xVr8hTQF2v1CJWTmLZ1HOCh5sH+IzVPAGE5IucooOkvwBRAdowA== dependencies: - dom-serializer "^0.2.1" + dom-serializer "^1.0.1" domelementtype "^2.0.1" - domhandler "^3.0.0" + domhandler "^3.3.0" domutils@^1.5.1: version "1.7.0" @@ -6280,6 +5706,15 @@ domutils@^1.5.1: dom-serializer "0" domelementtype "1" +domutils@^2.4.2, domutils@^2.4.3, domutils@^2.4.4: + version "2.4.4" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.4.4.tgz#282739c4b150d022d34699797369aad8d19bbbd3" + integrity sha512-jBC0vOsECI4OMdD0GC9mGn7NXPLb+Qt6KW1YDQzeQYRUFKmNG8lh7mO5HiELfr+lLQE7loDVI4QcAxV80HS+RA== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.0.1" + domhandler "^4.0.0" + dot-case@^3.0.3: version "3.0.3" resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" @@ -6357,10 +5792,10 @@ electron-to-chromium@^1.3.413: resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.465.tgz#d692e5c383317570c2bd82092a24a0308c6ccf29" integrity sha512-K/lUeT3NLAsJ5SHRDhK3/zd0tw7OUllYD8w+fTOXm6ljCPsp2qq+vMzxpLo8u1M27ZjZAjRbsA6rirvne2nAMQ== -electron-to-chromium@^1.3.488: - version "1.3.571" - resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.571.tgz#e57977f1569f8326ae2a7905e26f3943536ba28f" - integrity sha512-UYEQ2Gtc50kqmyOmOVtj6Oqi38lm5yRJY3pLuWt6UIot0No1L09uu6Ja6/1XKwmz/p0eJFZTUZi+khd1PV1hHA== +electron-to-chromium@^1.3.585: + version "1.3.637" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.637.tgz#be46f77acc217cdecf633bbd25292f6a36cc689b" + integrity sha512-924WXYMYquYybc+7pNApGlhY2RWg3MY3he4BrZ5BUmM2n1MGBsrS+PZxrlo6UAsWuNl4NE66fqFdwsWkBUGgkA== elliptic@^6.0.0: version "6.5.3" @@ -6434,6 +5869,13 @@ end-of-stream@^1.0.0, end-of-stream@^1.1.0: dependencies: once "^1.4.0" +end-of-stream@^1.4.1: + version "1.4.4" + resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.4.tgz#5ae64a5f45057baf3626ec14da0ca5e4b2431eb0" + integrity sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q== + dependencies: + once "^1.4.0" + endent@^2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/endent/-/endent-2.0.1.tgz#fb18383a3f37ae3213a5d9f6c4a880d1061eb4c5" @@ -6469,6 +5911,11 @@ entities@^2.0.0, entities@~2.0.0: resolved "https://registry.yarnpkg.com/entities/-/entities-2.0.3.tgz#5c487e5742ab93c15abb5da22759b8590ec03b7f" integrity sha512-MyoZ0jgnLvB2X3Lg5HqpFmn1kybDiIfEQmKzTb5apr51Rb+T3KdmMiqa70T+bhGnyv7bQ6WMj2QMHpGMmlrUYQ== +entities@~2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.1.0.tgz#992d3129cf7df6870b96c57858c249a120f8b8b5" + integrity sha512-hCx1oky9PFrJ611mf0ifBLBRW8lUUVRlFolb5gWRfIELabBlbp9xZvrqZLZAs+NxFnbfQoeGd8wDkygjg7U85w== + env-ci@^5.0.1: version "5.0.2" resolved "https://registry.yarnpkg.com/env-ci/-/env-ci-5.0.2.tgz#48b6687f8af8cdf5e31b8fcf2987553d085249d9" @@ -6595,10 +6042,10 @@ es6-symbol@^3.1.1, es6-symbol@~3.1.1: d "1" es5-ext "~0.10.14" -escalade@^3.0.1: - version "3.1.0" - resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.0.tgz#e8e2d7c7a8b76f6ee64c2181d6b8151441602d4e" - integrity sha512-mAk+hPSO8fLDkhV7V0dXazH5pDc6MrjBTPyD3VeKzxnVFjH1MIxbCdqGZB9O8+EwWakZs3ZCbDS4IpRt79V1ig== +escalade@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" + integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== escape-html@~1.0.3: version "1.0.3" @@ -6829,7 +6276,7 @@ esutils@^2.0.2: resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.2.tgz#0abf4f1caa5bcb1f7a9d8acc6dea4faaa04bac9b" integrity sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs= -etag@~1.8.1: +etag@1.8.1, etag@~1.8.1: version "1.8.1" resolved "https://registry.yarnpkg.com/etag/-/etag-1.8.1.tgz#41ae2eeb65efa62268aebfea83ac7d79299b0887" integrity sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc= @@ -7129,6 +6576,13 @@ fd-slicer@~1.1.0: dependencies: pend "~1.2.0" +feed@^4.2.1: + version "4.2.1" + resolved "https://registry.yarnpkg.com/feed/-/feed-4.2.1.tgz#b246ef891051c7dbf088ca203341d9fb0444baee" + integrity sha512-l28KKcK1J/u3iq5dRDmmoB2p7dtBfACC2NqJh4dI2kFptxH0asfjmOfcxqh5Sv8suAlVa73gZJ4REY5RrafVvg== + dependencies: + xml-js "^1.6.11" + figgy-pudding@^3.4.1, figgy-pudding@^3.5.1: version "3.5.1" resolved "https://registry.yarnpkg.com/figgy-pudding/-/figgy-pudding-3.5.1.tgz#862470112901c727a0e495a80744bd5baa1d6790" @@ -7374,6 +6828,11 @@ fromentries@^1.2.0: resolved "https://registry.yarnpkg.com/fromentries/-/fromentries-1.3.2.tgz#e4bca6808816bf8f93b52750f1127f5a6fd86e3a" integrity sha512-cHEpEQHUg0f8XdtZCc2ZAhrHzKzT0MrFUTcvx+hfxYu7rGMDc5SKoXFh+n4YigxsHXRzc6OrCshdR1bWH6HHyg== +fs-constants@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs-constants/-/fs-constants-1.0.0.tgz#6be0de9be998ce16af8afc24497b9ee9b7ccd9ad" + integrity sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow== + fs-extra@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-8.1.0.tgz#49d43c45a88cd9677668cb7be1b46efdb8d2e1c0" @@ -7400,13 +6859,6 @@ fs-minipass@^1.2.5: dependencies: minipass "^2.2.1" -fs-minipass@^2.0.0: - version "2.1.0" - resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-2.1.0.tgz#7f5036fdbf12c63c169190cbe4199c852271f9fb" - integrity sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg== - dependencies: - minipass "^3.0.0" - fs-write-stream-atomic@^1.0.8: version "1.0.10" resolved "https://registry.yarnpkg.com/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz#b47df53493ef911df75731e70a9ded0189db40c9" @@ -7625,6 +7077,11 @@ gitconfiglocal@^1.0.0: dependencies: ini "^1.3.2" +github-from-package@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/github-from-package/-/github-from-package-0.0.0.tgz#97fb5d96bfde8973313f20e8288ef9a167fa64ce" + integrity sha1-l/tdlr/eiXMxPyDoKI75oWf6ZM4= + github-slugger@^1.1.1: version "1.3.0" resolved "https://registry.yarnpkg.com/github-slugger/-/github-slugger-1.3.0.tgz#9bd0a95c5efdfc46005e82a906ef8e2a059124c9" @@ -8109,19 +7566,24 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.0.tgz#71e87f931de3fe09e56661ab9a29aadec707b491" integrity sha512-a4u9BeERWGu/S8JiWEAQcdrg9v4QArtP9keViQjGMdff20fBdd8waotXaNmODqBe6uZ3Nafi7K/ho4gCQHV3Ig== +html-tags@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/html-tags/-/html-tags-3.1.0.tgz#7b5e6f7e665e9fb41f30007ed9e0d41e97fb2140" + integrity sha512-1qYz89hW3lFDEazhjW0yVAV87lw8lVkrJocr72XmBkMKsoSVJCQx3W8BXsC7hO2qAt8BoVjYjtAcZ9perqGnNg== + html-void-elements@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/html-void-elements/-/html-void-elements-1.0.5.tgz#ce9159494e86d95e45795b166c2021c2cfca4483" integrity sha512-uE/TxKuyNIcx44cIWnjr/rfIATDH7ZaOMmstu0CwhFG1Dunhlp4OC6/NMbhiwoq5BpW0ubi303qnEk/PZj614w== -htmlparser2@4.1.0: - version "4.1.0" - resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-4.1.0.tgz#9a4ef161f2e4625ebf7dfbe6c0a2f52d18a59e78" - integrity sha512-4zDq1a1zhE4gQso/c5LP1OtrhYTncXNSpvJYtWJBtXAETPlMfi3IFNjGuQbYLuVY4ZR0QMqRVvo4Pdy9KLyP8Q== +htmlparser2@5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-5.0.1.tgz#7daa6fc3e35d6107ac95a4fc08781f091664f6e7" + integrity sha512-vKZZra6CSe9qsJzh0BjBGXo8dvzNsq/oGvsjfRdOrrryfeD9UOBEEQdeoqCRmKZchF5h2zOBMQ6YuQ0uRUmdbQ== dependencies: domelementtype "^2.0.1" - domhandler "^3.0.0" - domutils "^2.0.0" + domhandler "^3.3.0" + domutils "^2.4.2" entities "^2.0.0" htmlparser2@^3.9.1: @@ -8136,6 +7598,16 @@ htmlparser2@^3.9.1: inherits "^2.0.1" readable-stream "^3.1.1" +htmlparser2@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-6.0.0.tgz#c2da005030390908ca4c91e5629e418e0665ac01" + integrity sha512-numTQtDZMoh78zJpaNdJ9MXb2cv5G3jwUoe3dMQODubZvLoGvTE/Ofp6sHvH8OGKcN/8A47pGLi/k58xHP/Tfw== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.0.0" + domutils "^2.4.4" + entities "^2.0.0" + http-cache-semantics@^3.8.1: version "3.8.1" resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2" @@ -8152,7 +7624,7 @@ http-errors@1.7.2: statuses ">= 1.5.0 < 2" toidentifier "1.0.0" -http-errors@~1.7.2: +http-errors@1.7.3, http-errors@~1.7.2: version "1.7.3" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06" integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw== @@ -8360,7 +7832,7 @@ indexes-of@^1.0.1: resolved "https://registry.yarnpkg.com/indexes-of/-/indexes-of-1.0.1.tgz#f30f716c8e2bd346c7b67d3df3915566a7c05607" integrity sha1-8w9xbI4r00bHtn0985FVZqfAVgc= -infer-owner@^1.0.3, infer-owner@^1.0.4: +infer-owner@^1.0.3: version "1.0.4" resolved "https://registry.yarnpkg.com/infer-owner/-/infer-owner-1.0.4.tgz#c4cefcaa8e51051c2a40ba2ce8a3d27295af9467" integrity sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A== @@ -8373,7 +7845,7 @@ inflight@^1.0.4: once "^1.3.0" wrappy "1" -inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: +inherits@2, inherits@2.0.4, inherits@^2.0.0, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.1, inherits@~2.0.3, inherits@~2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== @@ -8471,13 +7943,6 @@ into-stream@^5.1.1: from2 "^2.3.0" p-is-promise "^3.0.0" -invariant@^2.2.2, invariant@^2.2.4: - version "2.2.4" - resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" - integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== - dependencies: - loose-envify "^1.0.0" - invert-kv@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/invert-kv/-/invert-kv-1.0.0.tgz#104a8e4aaca6d3d8cd157a8ef8bfab2d7a3ffdb6" @@ -8535,6 +8000,11 @@ is-arrayish@^0.2.1: resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" integrity sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0= +is-arrayish@^0.3.1: + version "0.3.2" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.3.2.tgz#4574a2ae56f7ab206896fb431eaeed066fdf8f03" + integrity sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ== + is-binary-path@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-1.0.1.tgz#75f16642b480f187a711c814161fd3a4a7655898" @@ -9752,11 +9222,6 @@ jsesc@^2.5.1: resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== -jsesc@~0.5.0: - version "0.5.0" - resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" - integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= - json-fixer@^1.5.1: version "1.5.3" resolved "https://registry.yarnpkg.com/json-fixer/-/json-fixer-1.5.3.tgz#863198368f03ab07026652ae8a82f9b6cef49316" @@ -9875,7 +9340,7 @@ kleur@^3.0.2: resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== -klona@^2.0.3: +klona@^2.0.4: version "2.0.4" resolved "https://registry.yarnpkg.com/klona/-/klona-2.0.4.tgz#7bb1e3affb0cb8624547ef7e8f6708ea2e39dfc0" integrity sha512-ZRbnvdg/NxqzC7L9Uyqzf4psi1OM4Cuc+sJAkQPjO6XkQIJTNbfK2Rsmbw8fx1p2mkZdp2FZYo2+LwXYY/uwIA== @@ -9916,13 +9381,6 @@ leven@^3.1.0: resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== -levenary@^1.1.1: - version "1.1.1" - resolved "https://registry.yarnpkg.com/levenary/-/levenary-1.1.1.tgz#842a9ee98d2075aa7faeedbe32679e9205f46f77" - integrity sha512-mkAdOIt79FD6irqjYSs4rdbnlT5vRonMEvBVPVb3XmevfS8kgRXwfes0dhPdEtzTWD/1eNE/Bm/G1iRt6DcnQQ== - dependencies: - leven "^3.1.0" - levn@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" @@ -9939,6 +9397,14 @@ levn@~0.3.0: prelude-ls "~1.1.2" type-check "~0.3.2" +line-column@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/line-column/-/line-column-1.0.2.tgz#d25af2936b6f4849172b312e4792d1d987bc34a2" + integrity sha1-0lryk2tvSEkXKzEuR5LR2Ye8NKI= + dependencies: + isarray "^1.0.0" + isobject "^2.0.0" + lines-and-columns@^1.1.6: version "1.1.6" resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.1.6.tgz#1c00c743b433cd0a4e80758f7b64a57440d9ff00" @@ -10336,6 +9802,11 @@ markdown-it@^10.0.0: mdurl "^1.0.1" uc.micro "^1.0.5" +markdown-to-jsx@^7.1.1: + version "7.1.1" + resolved "https://registry.yarnpkg.com/markdown-to-jsx/-/markdown-to-jsx-7.1.1.tgz#269145a585650258691a9a1ec9fb4b273ed2d32a" + integrity sha512-PJgNmvdKM7f7dFDgr4N2ZQv5OuJ2dwwBZvKel61BO7JLh2QQLDs880uQO+OjsEKNmhCZ0ZOIKkCXFEuY9G0yEA== + maxstache-stream@^1.0.0: version "1.0.4" resolved "https://registry.yarnpkg.com/maxstache-stream/-/maxstache-stream-1.0.4.tgz#9c7f5cab7e5fdd2d90da86143b4e9631ea328040" @@ -10586,6 +10057,16 @@ mimic-fn@^2.1.0: resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== +mimic-response@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-2.1.0.tgz#d13763d35f613d09ec37ebb30bac0469c0ee8f43" + integrity sha512-wXqjST+SLt7R009ySCglWBCFpjUygmCIfD790/kVbiGmUgfYGuB14PiTd5DwVxSV4NcYHjzMkoj5LjQZwTQLEA== + +mimic-response@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-3.1.0.tgz#2d1d59af9c1b129815accc2c46a022a5ce1fa3c9" + integrity sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ== + min-indent@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/min-indent/-/min-indent-1.0.1.tgz#a63f681673b30571fbe8bc25686ae746eefa9869" @@ -10625,32 +10106,11 @@ minimist-options@^3.0.1: arrify "^1.0.1" is-plain-obj "^1.1.0" -minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.5: +minimist@^1.1.1, minimist@^1.1.3, minimist@^1.2.0, minimist@^1.2.3, minimist@^1.2.5: version "1.2.5" resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.5.tgz#67d66014b66a6a8aaa0c083c5fd58df4e4e97602" integrity sha512-FM9nNUYrRBAELZQT3xeZQ7fmMOBg6nWNmJKTcgsJeaLstP/UODVpGsr5OhXhhXg6f+qtJ8uiZ+PUxkDWcgIXLw== -minipass-collect@^1.0.2: - version "1.0.2" - resolved "https://registry.yarnpkg.com/minipass-collect/-/minipass-collect-1.0.2.tgz#22b813bf745dc6edba2576b940022ad6edc8c617" - integrity sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA== - dependencies: - minipass "^3.0.0" - -minipass-flush@^1.0.5: - version "1.0.5" - resolved "https://registry.yarnpkg.com/minipass-flush/-/minipass-flush-1.0.5.tgz#82e7135d7e89a50ffe64610a787953c4c4cbb373" - integrity sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw== - dependencies: - minipass "^3.0.0" - -minipass-pipeline@^1.2.2: - version "1.2.3" - resolved "https://registry.yarnpkg.com/minipass-pipeline/-/minipass-pipeline-1.2.3.tgz#55f7839307d74859d6e8ada9c3ebe72cec216a34" - integrity sha512-cFOknTvng5vqnwOpDsZTWhNll6Jf8o2x+/diplafmxpuIymAjzoOolZG0VvQf3V2HgqzJNhnuKHYp2BqDgz8IQ== - dependencies: - minipass "^3.0.0" - minipass@^2.2.1, minipass@^2.3.4, minipass@^2.3.5: version "2.3.5" resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848" @@ -10659,13 +10119,6 @@ minipass@^2.2.1, minipass@^2.3.4, minipass@^2.3.5: safe-buffer "^5.1.2" yallist "^3.0.0" -minipass@^3.0.0, minipass@^3.1.1: - version "3.1.3" - resolved "https://registry.yarnpkg.com/minipass/-/minipass-3.1.3.tgz#7d42ff1f39635482e15f9cdb53184deebd5815fd" - integrity sha512-Mgd2GdMVzY+x3IJ+oHnVM+KG3lA5c8tnabyJKmHSaG2kAGpudxuOf8ToDkhumF7UzME7DecbQE9uOZhNm7PuJg== - dependencies: - yallist "^4.0.0" - minizlib@^1.1.1, minizlib@^1.2.1: version "1.2.1" resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614" @@ -10673,14 +10126,6 @@ minizlib@^1.1.1, minizlib@^1.2.1: dependencies: minipass "^2.2.1" -minizlib@^2.1.1: - version "2.1.2" - resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-2.1.2.tgz#e90d3466ba209b932451508a11ce3d3632145931" - integrity sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg== - dependencies: - minipass "^3.0.0" - yallist "^4.0.0" - mississippi@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/mississippi/-/mississippi-3.0.0.tgz#ea0a3291f97e0b5e8776b363d5f0a12d94c67022" @@ -10705,6 +10150,11 @@ mixin-deep@^1.2.0: for-in "^1.0.2" is-extendable "^1.0.1" +mkdirp-classic@^0.5.2, mkdirp-classic@^0.5.3: + version "0.5.3" + resolved "https://registry.yarnpkg.com/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz#fa10c9115cc6d8865be221ba47ee9bed78601113" + integrity sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A== + mkdirp-promise@^5.0.1: version "5.0.1" resolved "https://registry.yarnpkg.com/mkdirp-promise/-/mkdirp-promise-5.0.1.tgz#e9b8f68e552c68a9c1713b84883f7a1dd039b8a1" @@ -10712,18 +10162,11 @@ mkdirp-promise@^5.0.1: dependencies: mkdirp "*" -mkdirp@*, mkdirp@1.x, mkdirp@^1.0.3, mkdirp@^1.0.4: +mkdirp@*, mkdirp@1.x: version "1.0.4" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-1.0.4.tgz#3eb5ed62622756d79a5f0e2a221dfebad75c2f7e" integrity sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw== -mkdirp@0.5.3: - version "0.5.3" - resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.3.tgz#5a514b7179259287952881e94410ec5465659f8c" - integrity sha512-P+2gwrFqx8lhew375MQHHeTlY8AuOJSrGf0R5ddkEndUkmwpgUob/vQuBD1V22/Cw1/lJr4x+EjllSezBThzBg== - dependencies: - minimist "^1.2.5" - mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3: version "0.5.5" resolved "https://registry.yarnpkg.com/mkdirp/-/mkdirp-0.5.5.tgz#d91cefd62d1436ca0f41620e251288d420099def" @@ -10731,6 +10174,11 @@ mkdirp@^0.5.0, mkdirp@^0.5.1, mkdirp@^0.5.3: dependencies: minimist "^1.2.5" +modern-normalize@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/modern-normalize/-/modern-normalize-1.0.0.tgz#539d84a1e141338b01b346f3e27396d0ed17601e" + integrity sha512-1lM+BMLGuDfsdwf3rsgBSrxJwAZHFIrQ8YR61xIqdHo0uNKI9M52wNpHSrliZATJp51On6JD0AfRxd4YGSU0lw== + modify-values@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/modify-values/-/modify-values-1.0.1.tgz#b3939fa605546474e3e3e3c63d64bd43b4ee6022" @@ -10824,6 +10272,11 @@ nano-css@^5.2.1: stacktrace-js "^2.0.0" stylis "3.5.0" +nanoid@^3.1.16, nanoid@^3.1.20: + version "3.1.20" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" + integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== + nanomatch@^1.2.9: version "1.2.13" resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119" @@ -10841,6 +10294,11 @@ nanomatch@^1.2.9: snapdragon "^0.8.1" to-regex "^3.0.1" +napi-build-utils@^1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/napi-build-utils/-/napi-build-utils-1.0.2.tgz#b1fddc0b2c46e380a0b7a76f984dd47c41a13806" + integrity sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg== + native-url@0.3.4: version "0.3.4" resolved "https://registry.yarnpkg.com/native-url/-/native-url-0.3.4.tgz#29c943172aed86c63cee62c8c04db7f5756661f8" @@ -10867,7 +10325,7 @@ negotiator@0.6.2: resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb" integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw== -neo-async@2.6.1, neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: +neo-async@^2.5.0, neo-async@^2.6.0, neo-async@^2.6.1: version "2.6.1" resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c" integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw== @@ -10877,38 +10335,50 @@ neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -next-ignite@^0.7.4: - version "0.7.4" - resolved "https://registry.yarnpkg.com/next-ignite/-/next-ignite-0.7.4.tgz#ee2d7b2943818adc269bd06df31791fc7cca4888" - integrity sha512-A8u0b42Ad+qBU81sVn65WFRgs0zdN5waD7sXXyJKxaHoh9Mahz1G1Z/dY2YHk0ra7wpkkBTDh3YoSbBbWZ+bCw== +next-ignite@^0.8.21: + version "0.8.21" + resolved "https://registry.yarnpkg.com/next-ignite/-/next-ignite-0.8.21.tgz#8ea6620701eb6a8b359c939389e0707a98e1de7a" + integrity sha512-2QeaoU7muEsIVM1JUGVzDQplg6HQh2Bd2zfOfl0PFCsC0wZGGM+CNFQrYxOI7KomSqoHBwlUrlCsDZE4+u83WA== dependencies: "@babel/helper-call-delegate" "^7.12.1" "@mapbox/rehype-prism" "^0.4.0" "@next/bundle-analyzer" "^9.4.0" + "@reach/skip-nav" "^0.12.1" "@react-hook/passive-layout-effect" "^1.2.0" + "@tailwindcss/postcss7-compat" "^2.0.2" + cheerio "^1.0.0-rc.5" clsx "^1.1.0" command-line-application "^0.9.6" copy-template-dir "^1.4.0" cosmiconfig "^6.0.0" dotenv "^8.2.0" fast-glob "^3.2.2" + feed "^4.2.1" gravatar "^1.8.0" + markdown-to-jsx "^7.1.1" mdx-prism "^0.3.1" - next "^9.5.5" + next "^10.0.5" next-mdx-enhanced "^4.0.0" next-prefixed "^0.0.11" nextjs-sitemap-generator "^1.0.0" parse-github-url "^1.0.2" + pretty-bytes "^5.5.0" + purgecss "^3.1.3" push-dir "^0.4.1" react "16.13.0" react-dom "16.13.0" + react-merge-refs "^1.1.0" rehype "^9.0.1" rehype-accessible-emojis "^0.3.2" rehype-autolink-headings "^3.0.0" rehype-slug "^3.0.0" remark-emoji "^2.0.2" scroll-lock "^2.1.4" + tailwindcss "npm:@tailwindcss/postcss7-compat" title-case "^3.0.2" + url-join "^4.0.1" + use-click-outside "^2.0.0" + use-debounce "^5.2.0" next-mdx-enhanced@^4.0.0: version "4.0.0" @@ -10935,71 +10405,59 @@ next-tick@^1.0.0: resolved "https://registry.yarnpkg.com/next-tick/-/next-tick-1.0.0.tgz#ca86d1fe8828169b0120208e3dc8424b9db8342c" integrity sha1-yobR/ogoFpsBICCOPchCS524NCw= -next@^9.5.5: - version "9.5.5" - resolved "https://registry.yarnpkg.com/next/-/next-9.5.5.tgz#37a37095e7c877ed6c94ba82e34ab9ed02b4eb33" - integrity sha512-KF4MIdTYeI6YIGODNw27w9HGzCll4CXbUpkP6MNvyoHlpsunx8ybkQHm/hYa7lWMozmsn58LwaXJOhe4bSrI0g== - dependencies: - "@ampproject/toolbox-optimizer" "2.6.0" - "@babel/code-frame" "7.10.4" - "@babel/core" "7.7.7" - "@babel/plugin-proposal-class-properties" "7.10.4" - "@babel/plugin-proposal-export-namespace-from" "7.10.4" - "@babel/plugin-proposal-numeric-separator" "7.10.4" - "@babel/plugin-proposal-object-rest-spread" "7.11.0" - "@babel/plugin-syntax-bigint" "7.8.3" - "@babel/plugin-syntax-dynamic-import" "7.8.3" - "@babel/plugin-syntax-jsx" "7.10.4" - "@babel/plugin-transform-modules-commonjs" "7.10.4" - "@babel/plugin-transform-runtime" "7.11.5" - "@babel/preset-env" "7.11.5" - "@babel/preset-modules" "0.1.4" - "@babel/preset-react" "7.10.4" - "@babel/preset-typescript" "7.10.4" - "@babel/runtime" "7.11.2" - "@babel/types" "7.11.5" +next@^10.0.5: + version "10.0.5" + resolved "https://registry.yarnpkg.com/next/-/next-10.0.5.tgz#8071e0aa1883266c91943aa7c6b73deadb064793" + integrity sha512-yr7ap2TLugf0aMHz+3JoKFP9CCkFE+k6jCfdUymORhptjLYZbD3YGlTcUC1CRl+b5Phlbl7m/WUIPde0VcguiA== + dependencies: + "@ampproject/toolbox-optimizer" "2.7.1-alpha.0" + "@babel/runtime" "7.12.5" "@hapi/accept" "5.0.1" - "@next/env" "9.5.5" - "@next/polyfill-module" "9.5.5" - "@next/react-dev-overlay" "9.5.5" - "@next/react-refresh-utils" "9.5.5" + "@next/env" "10.0.5" + "@next/polyfill-module" "10.0.5" + "@next/react-dev-overlay" "10.0.5" + "@next/react-refresh-utils" "10.0.5" + "@opentelemetry/api" "0.14.0" ast-types "0.13.2" babel-plugin-transform-define "2.0.0" babel-plugin-transform-react-remove-prop-types "0.4.24" - browserslist "4.13.0" + browserslist "4.14.6" buffer "5.6.0" - cacache "15.0.5" caniuse-lite "^1.0.30001113" - chokidar "2.1.8" + chalk "2.4.2" + chokidar "3.4.3" crypto-browserify "3.12.0" css-loader "4.3.0" - cssnano-simple "1.2.0" + cssnano-simple "1.2.1" + etag "1.8.1" find-cache-dir "3.3.1" jest-worker "24.9.0" loader-utils "2.0.0" - mkdirp "0.5.3" native-url "0.3.4" - neo-async "2.6.1" - node-html-parser "^1.2.19" + node-fetch "2.6.1" + node-html-parser "1.4.9" + p-limit "3.1.0" path-browserify "1.0.1" pnp-webpack-plugin "1.6.4" - postcss "7.0.32" + postcss "8.1.7" process "0.11.10" prop-types "15.7.2" + raw-body "2.4.1" react-is "16.13.1" react-refresh "0.8.3" - resolve-url-loader "3.1.1" - sass-loader "10.0.2" + resolve-url-loader "3.1.2" + sass-loader "10.0.5" schema-utils "2.7.1" stream-browserify "3.0.0" style-loader "1.2.1" - styled-jsx "3.3.0" - use-subscription "1.4.1" + styled-jsx "3.3.2" + use-subscription "1.5.1" vm-browserify "1.1.2" watchpack "2.0.0-beta.13" - web-vitals "0.2.4" webpack "4.44.1" webpack-sources "1.4.3" + optionalDependencies: + sharp "0.26.3" nextjs-sitemap-generator@^1.0.0: version "1.0.0" @@ -11026,7 +10484,19 @@ no-case@^3.0.3: lower-case "^2.0.1" tslib "^1.10.0" -node-emoji@^1.10.0: +node-abi@^2.7.0: + version "2.19.3" + resolved "https://registry.yarnpkg.com/node-abi/-/node-abi-2.19.3.tgz#252f5dcab12dad1b5503b2d27eddd4733930282d" + integrity sha512-9xZrlyfvKhWme2EXFKQhZRp1yNWT/uI1luYPr3sFl+H4keYY4xR+1jO7mvTTijIsHf1M+QDe9uWuKeEpLInIlg== + dependencies: + semver "^5.4.1" + +node-addon-api@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/node-addon-api/-/node-addon-api-3.1.0.tgz#98b21931557466c6729e51cb77cd39c965f42239" + integrity sha512-flmrDNB06LIl5lywUz7YlNGZH/5p0M7W28k8hzd9Lshtdh1wshD2Y+U4h9LD6KObOy1f+fEVdgprPrEymjM5uw== + +node-emoji@^1.10.0, node-emoji@^1.8.1: version "1.10.0" resolved "https://registry.yarnpkg.com/node-emoji/-/node-emoji-1.10.0.tgz#8886abd25d9c7bb61802a658523d1f8d2a89b2da" integrity sha512-Yt3384If5H6BYGVHiHwTL+99OzJKHhgp82S8/dktEK73T26BazdgZ4JZh92xSVtGNJvz9UbXdNAc5hcrXV42vw== @@ -11042,11 +10512,6 @@ node-fetch-npm@^2.0.2: json-parse-better-errors "^1.0.0" safe-buffer "^5.1.1" -node-fetch@2.6.0: - version "2.6.0" - resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd" - integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA== - node-fetch@2.6.1, node-fetch@^2.3.0, node-fetch@^2.5.0, node-fetch@^2.6.0: version "2.6.1" resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.1.tgz#045bd323631f76ed2e2b55573394416b639a0052" @@ -11069,10 +10534,10 @@ node-gyp@^5.0.2: tar "^4.4.8" which "1" -node-html-parser@^1.2.19: - version "1.2.21" - resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.2.21.tgz#93b074d877007c7148d594968a642cd65d254daa" - integrity sha512-6vDhgen6J332syN5HUmeT4FfBG7m6bFRrPN+FXY8Am7FGuVpsIxTASVbeoO5PF2IHbX2s+WEIudb1hgxOjllNQ== +node-html-parser@1.4.9: + version "1.4.9" + resolved "https://registry.yarnpkg.com/node-html-parser/-/node-html-parser-1.4.9.tgz#3c8f6cac46479fae5800725edb532e9ae8fd816c" + integrity sha512-UVcirFD1Bn0O+TSmloHeHqZZCxHjvtIeGdVdGMhyZ8/PWlEiZaZ5iJzR189yKZr8p0FXN58BUeC7RHRkf/KYGw== dependencies: he "1.2.0" @@ -11148,16 +10613,21 @@ node-releases@^1.1.53: resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.58.tgz#8ee20eef30fa60e52755fcc0942def5a734fe935" integrity sha512-NxBudgVKiRh/2aPWMgPR7bPTX0VPmGx5QBwCtdHitnqFE5/O8DeBXuIMH1nwNnw/aMo6AjOrpsHzfY3UbUJ7yg== -node-releases@^1.1.58: - version "1.1.61" - resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.61.tgz#707b0fca9ce4e11783612ba4a2fcba09047af16e" - integrity sha512-DD5vebQLg8jLCOzwupn954fbIiZht05DAZs0k2u8NStSe6h9XdsuIQL8hSRKYiU8WUQRznmSDrKGbv3ObOmC7g== +node-releases@^1.1.65: + version "1.1.69" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.69.tgz#3149dbde53b781610cd8b486d62d86e26c3725f6" + integrity sha512-DGIjo79VDEyAnRlfSqYTsy+yoHd2IOjJiKUozD2MV2D85Vso6Bug56mb9tT/fY5Urt0iqk01H7x+llAruDR2zA== nodeify-ts@1.0.6: version "1.0.6" resolved "https://registry.yarnpkg.com/nodeify-ts/-/nodeify-ts-1.0.6.tgz#ceef172c4fad1a45a1ae60a31c7e295150b5e221" integrity sha512-jq+8sqVG1aLqy5maMTceL8NUJ1CvarWztlxvrYh3G0aao9BsVeoVmVedUnrUSBLetP7oLIAJrPrw4+iIo7v3GA== +noop-logger@^0.1.1: + version "0.1.1" + resolved "https://registry.yarnpkg.com/noop-logger/-/noop-logger-0.1.1.tgz#94a2b1633c4f1317553007d8966fd0e841b6a4c2" + integrity sha1-lKKxYzxPExdVMAfYlm/Q6EG2pMI= + noop2@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/noop2/-/noop2-2.0.0.tgz#4b636015e9882b54783c02b412f699d8c5cd0a5b" @@ -11215,6 +10685,11 @@ normalize-path@^3.0.0, normalize-path@~3.0.0: resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== +normalize-range@^0.1.2: + version "0.1.2" + resolved "https://registry.yarnpkg.com/normalize-range/-/normalize-range-0.1.2.tgz#2d10c06bdfd312ea9777695a4d28439456b75942" + integrity sha1-LRDAa9/TEuqXd2laTShDlFa3WUI= + normalize-url@^3.3.0: version "3.3.0" resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-3.3.0.tgz#b2e1c4dc4f7c6d57743df733a4f5978d18650559" @@ -11288,7 +10763,7 @@ npm-run-path@^4.0.0: dependencies: path-key "^3.0.0" -"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.2, npmlog@^4.1.2: +"npmlog@0 || 1 || 2 || 3 || 4", npmlog@^4.0.1, npmlog@^4.0.2, npmlog@^4.1.2: version "4.1.2" resolved "https://registry.yarnpkg.com/npmlog/-/npmlog-4.1.2.tgz#08a7f2a8bf734604779a9efa4ad5cc717abb954b" integrity sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg== @@ -11298,6 +10773,13 @@ npm-run-path@^4.0.0: gauge "~2.7.3" set-blocking "~2.0.0" +nth-check@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.0.0.tgz#1bb4f6dac70072fc313e8c9cd1417b5074c0a125" + integrity sha512-i4sc/Kj8htBrAiH1viZ0TgU8Y5XqCaV/FziYK6TBczxmeKm3AEFWqqF3195yKudrarqy7Zu80Ra5dobFjn9X/Q== + dependencies: + boolbase "^1.0.0" + nth-check@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c" @@ -11305,6 +10787,11 @@ nth-check@~1.0.1: dependencies: boolbase "~1.0.0" +num2fraction@^1.2.2: + version "1.2.2" + resolved "https://registry.yarnpkg.com/num2fraction/-/num2fraction-1.2.2.tgz#6f682b6a027a4e9ddfa4564cd2589d1d4e669ede" + integrity sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4= + number-is-nan@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d" @@ -11339,6 +10826,11 @@ object-copy@^0.1.0: define-property "^0.2.5" kind-of "^3.0.3" +object-hash@^2.0.3: + version "2.1.1" + resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-2.1.1.tgz#9447d0279b4fcf80cff3259bf66a1dc73afabe09" + integrity sha512-VOJmgmS+7wvXf8CjbQmimtCnEx3IAoLxI3fp2fbWehxrWBcAQFbk+vcwb6vzR0VZv/eNCJ/27j151ZTwqW/JeQ== + object-inspect@^1.7.0: version "1.7.0" resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.7.0.tgz#f4f6bd181ad77f006b5ece60bd0b6f398ff74a67" @@ -11354,11 +10846,6 @@ object-keys@^1.0.11, object-keys@^1.0.12, object-keys@^1.1.1: resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== -object-path@0.11.4: - version "0.11.4" - resolved "https://registry.yarnpkg.com/object-path/-/object-path-0.11.4.tgz#370ae752fbf37de3ea70a861c23bba8915691949" - integrity sha1-NwrnUvvzfePqcKhhwju6iRVpGUk= - object-visit@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/object-visit/-/object-visit-1.0.1.tgz#f79c4493af0c5377b59fe39d395e41042dd045bb" @@ -11550,6 +11037,13 @@ p-is-promise@^3.0.0: resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971" integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== +p-limit@3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + p-limit@^1.1.0: version "1.3.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8" @@ -11789,6 +11283,13 @@ parse-url@^5.0.0: parse-path "^4.0.0" protocols "^1.4.0" +parse5-htmlparser2-tree-adapter@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz#2cdf9ad823321140370d4dbf5d3e92c7c8ddc6e6" + integrity sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA== + dependencies: + parse5 "^6.0.1" + parse5@5.1.1, parse5@^5.0.0: version "5.1.1" resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.1.tgz#f68e4e5ba1852ac2cadc00f4555fff6c2abb6178" @@ -11801,7 +11302,7 @@ parse5@^3.0.1: dependencies: "@types/node" "*" -parse5@^6.0.0: +parse5@^6.0.0, parse5@^6.0.1: version "6.0.1" resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== @@ -12064,10 +11565,10 @@ pkg@^4.4.0: resolve "^1.15.1" stream-meter "^1.0.4" -platform@1.3.3: - version "1.3.3" - resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.3.tgz#646c77011899870b6a0903e75e997e8e51da7461" - integrity sha1-ZGx3ARiZhwtqCQPnXpl+jlHadGE= +platform@1.3.6: + version "1.3.6" + resolved "https://registry.yarnpkg.com/platform/-/platform-1.3.6.tgz#48b4ce983164b209c2d45a107adb31f473a6e7a7" + integrity sha512-fnWVljUchTro6RiCFvCXBbNhJc2NijN7oIQxbwsyL0buWJPG85v81ehlHI9fXrJsMNgTofEoWIQeClKpgxFLrg== please-upgrade-node@^3.2.0: version "3.2.0" @@ -12106,6 +11607,24 @@ posix-character-classes@^0.1.0: resolved "https://registry.yarnpkg.com/posix-character-classes/-/posix-character-classes-0.1.1.tgz#01eac0fe3b5af71a2a6c02feabb8c1fef7e00eab" integrity sha1-AerA/jta9xoqbAL+q7jB/vfgDqs= +postcss-functions@^3: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-functions/-/postcss-functions-3.0.0.tgz#0e94d01444700a481de20de4d55fb2640564250e" + integrity sha1-DpTQFERwCkgd4g3k1V+yZAVkJQ4= + dependencies: + glob "^7.1.2" + object-assign "^4.1.1" + postcss "^6.0.9" + postcss-value-parser "^3.3.0" + +postcss-js@^2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/postcss-js/-/postcss-js-2.0.3.tgz#a96f0f23ff3d08cec7dc5b11bf11c5f8077cdab9" + integrity sha512-zS59pAk3deu6dVHyrGqmC3oDXBdNdajk4k1RyxeVXCrcEDBUBHoIhE4QTsmhxgzXxsaqFDAkUZfmMa5f/N/79w== + dependencies: + camelcase-css "^2.0.1" + postcss "^7.0.18" + postcss-modules-extract-imports@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-2.0.0.tgz#818719a1ae1da325f9832446b01136eeb493cd7e" @@ -12139,6 +11658,14 @@ postcss-modules-values@^3.0.0: icss-utils "^4.0.0" postcss "^7.0.6" +postcss-nested@^4: + version "4.2.3" + resolved "https://registry.yarnpkg.com/postcss-nested/-/postcss-nested-4.2.3.tgz#c6f255b0a720549776d220d00c4b70cd244136f6" + integrity sha512-rOv0W1HquRCamWy2kFl3QazJMMe1ku6rCFoAAH+9AcxdbpDeBr6k968MLWuLjvjMcGEip01ak09hKOEgpK9hvw== + dependencies: + postcss "^7.0.32" + postcss-selector-parser "^6.0.2" + postcss-safe-parser@4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/postcss-safe-parser/-/postcss-safe-parser-4.0.2.tgz#a6d4e48f0f37d9f7c11b2a581bf00f8ba4870b96" @@ -12155,6 +11682,21 @@ postcss-selector-parser@^6.0.0, postcss-selector-parser@^6.0.2: indexes-of "^1.0.1" uniq "^1.0.1" +postcss-selector-parser@^6.0.4: + version "6.0.4" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.4.tgz#56075a1380a04604c38b063ea7767a129af5c2b3" + integrity sha512-gjMeXBempyInaBqpp8gODmwZ52WaYsVOsfr4L4lDQ7n3ncD6mEyySiDtgzCT+NYC0mmeOLvtsF8iaEf0YT6dBw== + dependencies: + cssesc "^3.0.0" + indexes-of "^1.0.1" + uniq "^1.0.1" + util-deprecate "^1.0.2" + +postcss-value-parser@^3.3.0: + version "3.3.1" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz#9ff822547e2893213cf1c30efa51ac5fd1ba8281" + integrity sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ== + postcss-value-parser@^4.1.0: version "4.1.0" resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz#443f6a20ced6481a2bda4fa8532a6e55d789a2cb" @@ -12178,6 +11720,34 @@ postcss@7.0.32, postcss@^7.0.26: source-map "^0.6.1" supports-color "^6.1.0" +postcss@8.1.7: + version "8.1.7" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.1.7.tgz#ff6a82691bd861f3354fd9b17b2332f88171233f" + integrity sha512-llCQW1Pz4MOPwbZLmOddGM9eIJ8Bh7SZ2Oj5sxZva77uVaotYDsYTch1WBTNu7fUY0fpWp0fdt7uW40D4sRiiQ== + dependencies: + colorette "^1.2.1" + line-column "^1.0.2" + nanoid "^3.1.16" + source-map "^0.6.1" + +postcss@^6.0.9: + version "6.0.23" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-6.0.23.tgz#61c82cc328ac60e677645f979054eb98bc0e3324" + integrity sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag== + dependencies: + chalk "^2.4.1" + source-map "^0.6.1" + supports-color "^5.4.0" + +postcss@^7, postcss@^7.0.18: + version "7.0.35" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.35.tgz#d2be00b998f7f211d8a276974079f2e92b970e24" + integrity sha512-3QT8bBJeX/S5zKTTjTCIjRF3If4avAT6kqxcASlTWEtAFCb9NH0OUxNDfgZSWdP5fJnBYCMEWkIFfWeugjzYMg== + dependencies: + chalk "^2.4.2" + source-map "^0.6.1" + supports-color "^6.1.0" + postcss@^7.0.14, postcss@^7.0.5, postcss@^7.0.6: version "7.0.16" resolved "https://registry.yarnpkg.com/postcss/-/postcss-7.0.16.tgz#48f64f1b4b558cb8b52c88987724359acb010da2" @@ -12196,6 +11766,36 @@ postcss@^7.0.32: source-map "^0.6.1" supports-color "^6.1.0" +postcss@^8.2.1: + version "8.2.4" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.2.4.tgz#20a98a39cf303d15129c2865a9ec37eda0031d04" + integrity sha512-kRFftRoExRVXZlwUuay9iC824qmXPcQQVzAjbCCgjpXnkdMCJYBu2gTwAaFBzv8ewND6O8xFb3aELmEkh9zTzg== + dependencies: + colorette "^1.2.1" + nanoid "^3.1.20" + source-map "^0.6.1" + +prebuild-install@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/prebuild-install/-/prebuild-install-6.0.0.tgz#669022bcde57c710a869e39c5ca6bf9cd207f316" + integrity sha512-h2ZJ1PXHKWZpp1caLw0oX9sagVpL2YTk+ZwInQbQ3QqNd4J03O6MpFNmMTJlkfgPENWqe5kP0WjQLqz5OjLfsw== + dependencies: + detect-libc "^1.0.3" + expand-template "^2.0.3" + github-from-package "0.0.0" + minimist "^1.2.3" + mkdirp-classic "^0.5.3" + napi-build-utils "^1.0.1" + node-abi "^2.7.0" + noop-logger "^0.1.1" + npmlog "^4.0.1" + pump "^3.0.0" + rc "^1.2.7" + simple-get "^3.0.3" + tar-fs "^2.0.0" + tunnel-agent "^0.6.0" + which-pm-runs "^1.0.0" + prebuild-webpack-plugin@1.1.1: version "1.1.1" resolved "https://registry.yarnpkg.com/prebuild-webpack-plugin/-/prebuild-webpack-plugin-1.1.1.tgz#8857853738d22409e93d4b8af4148b9700465218" @@ -12232,6 +11832,11 @@ prettier@^2.0.1, prettier@^2.0.5: resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== +pretty-bytes@^5.5.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.5.0.tgz#0cecda50a74a941589498011cf23275aa82b339e" + integrity sha512-p+T744ZyjjiaFlMUZZv6YPC5JrkNj8maRmPaQCWFJFplUAzpIUTRaTcS+7wmZtUoFXHtESJb23ISliaWyz3SHA== + pretty-format@^25.2.1, pretty-format@^25.5.0: version "25.5.0" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" @@ -12262,6 +11867,11 @@ pretty-format@^26.6.2: ansi-styles "^4.0.0" react-is "^17.0.1" +pretty-hrtime@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz#b7e3ea42435a4c9b2759d99e0f201eb195802ee1" + integrity sha1-t+PqQkNaTJsnWdmeDyAesZWALuE= + pretty-ms@^7.0.0: version "7.0.1" resolved "https://registry.yarnpkg.com/pretty-ms/-/pretty-ms-7.0.1.tgz#7d903eaab281f7d8e03c66f867e239dc32fb73e8" @@ -12276,11 +11886,6 @@ prismjs@~1.17.0: optionalDependencies: clipboard "^2.0.0" -private@^0.1.8: - version "0.1.8" - resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" - integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== - process-nextick-args@~2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" @@ -12440,6 +12045,16 @@ punycode@^2.1.0, punycode@^2.1.1: resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== +purgecss@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/purgecss/-/purgecss-3.1.3.tgz#26987ec09d12eeadc318e22f6e5a9eb0be094f41" + integrity sha512-hRSLN9mguJ2lzlIQtW4qmPS2kh6oMnA9RxdIYK8sz18QYqd6ePp4GNDl18oWHA1f2v2NEQIh51CO8s/E3YGckQ== + dependencies: + commander "^6.0.0" + glob "^7.0.0" + postcss "^8.2.1" + postcss-selector-parser "^6.0.2" + push-dir@^0.4.1: version "0.4.1" resolved "https://registry.yarnpkg.com/push-dir/-/push-dir-0.4.1.tgz#29481eacd9c2106bbb7941db6d37d122a071ecb4" @@ -12512,6 +12127,16 @@ raw-body@2.4.0: iconv-lite "0.4.24" unpipe "1.0.0" +raw-body@2.4.1: + version "2.4.1" + resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.1.tgz#30ac82f98bb5ae8c152e67149dac8d55153b168c" + integrity sha512-9WmIKF6mkvA0SLmA2Knm9+qj89e+j1zqgyn8aXGd7+nAduPoqgI9lO57SAZNn/Byzo5P7JhXTyg9PzaJbH73bA== + dependencies: + bytes "3.1.0" + http-errors "1.7.3" + iconv-lite "0.4.24" + unpipe "1.0.0" + rc@^1.2.7, rc@^1.2.8: version "1.2.8" resolved "https://registry.yarnpkg.com/rc/-/rc-1.2.8.tgz#cd924bf5200a075b83c188cd6b9e211b7fc0d3ed" @@ -12552,6 +12177,11 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.1.tgz#5b3531bd76a645a4c9fb6e693ed36419e3301339" integrity sha512-NAnt2iGDXohE5LI7uBnLnqvLQMtzhkiAOLXTmv+qnF9Ky7xAPcX8Up/xWIhxvLVGJvuLiNc4xQLtuqDRzb4fSA== +react-merge-refs@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/react-merge-refs/-/react-merge-refs-1.1.0.tgz#73d88b892c6c68cbb7a66e0800faa374f4c38b06" + integrity sha512-alTKsjEL0dKH/ru1Iyn7vliS2QRcBp9zZPGoWxUOvRGWPUYgjo+V01is7p04It6KhgrzhJGnIj9GgX8W4bZoCQ== + react-refresh@0.8.3: version "0.8.3" resolved "https://registry.yarnpkg.com/react-refresh/-/react-refresh-0.8.3.tgz#721d4657672d400c5e3c75d063c4a85fb2d5d68f" @@ -12718,7 +12348,7 @@ read@1, read@^1.0.7, read@~1.0.1: string_decoder "~1.1.1" util-deprecate "~1.0.1" -"readable-stream@2 || 3", readable-stream@3, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.5.0, readable-stream@^3.6.0: +"readable-stream@2 || 3", readable-stream@3, readable-stream@^3.0.2, readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.5.0, readable-stream@^3.6.0: version "3.6.0" resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.6.0.tgz#337bbda3adc0706bd3e024426a286d4b4b2c9198" integrity sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA== @@ -12761,6 +12391,13 @@ readdirp@~3.4.0: dependencies: picomatch "^2.2.1" +readdirp@~3.5.0: + version "3.5.0" + resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" + integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== + dependencies: + picomatch "^2.2.1" + rechoir@^0.6.2: version "0.6.2" resolved "https://registry.yarnpkg.com/rechoir/-/rechoir-0.6.2.tgz#85204b54dba82d5742e28c96756ef43af50e3384" @@ -12799,6 +12436,14 @@ redent@^3.0.0: indent-string "^4.0.0" strip-indent "^3.0.0" +reduce-css-calc@^2.1.6: + version "2.1.8" + resolved "https://registry.yarnpkg.com/reduce-css-calc/-/reduce-css-calc-2.1.8.tgz#7ef8761a28d614980dc0c982f772c93f7a99de03" + integrity sha512-8liAVezDmUcH+tdzoEGrhfbGcP7nOV4NkGE3a74+qqvE7nt9i4sKLGBuZNOnpI4WiGksiNPklZxva80061QiPg== + dependencies: + css-unit-converter "^1.1.1" + postcss-value-parser "^3.3.0" + reduce-flatten@^1.0.1: version "1.0.1" resolved "https://registry.yarnpkg.com/reduce-flatten/-/reduce-flatten-1.0.1.tgz#258c78efd153ddf93cb561237f61184f3696e327" @@ -12818,31 +12463,11 @@ refractor@^2.3.0: parse-entities "^1.1.2" prismjs "~1.17.0" -regenerate-unicode-properties@^8.2.0: - version "8.2.0" - resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.2.0.tgz#e5de7111d655e7ba60c057dbe9ff37c87e65cdec" - integrity sha512-F9DjY1vKLo/tPePDycuH3dn9H1OTPIkVD9Kz4LODu+F2C75mgjAJ7x/gwy6ZcSNRAAkhNlJSOHRe8k3p+K9WhA== - dependencies: - regenerate "^1.4.0" - -regenerate@^1.4.0: - version "1.4.0" - resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" - integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== - regenerator-runtime@^0.13.4: version "0.13.4" resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.13.4.tgz#e96bf612a3362d12bb69f7e8f74ffeab25c7ac91" integrity sha512-plpwicqEzfEyTQohIKktWigcLzmNStMGwbOUbykx51/29Z3JOGYldaaNGK7ngNXV+UcoqvIMmloZ48Sr74sd+g== -regenerator-transform@^0.14.2: - version "0.14.4" - resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.4.tgz#5266857896518d1616a78a0479337a30ea974cc7" - integrity sha512-EaJaKPBI9GvKpvUz2mz4fhx7WPgvwRLY9v3hlNHWmAuJHI13T4nwKnNvm5RWJzEdnI5g5UwtOww+S8IdoUC2bw== - dependencies: - "@babel/runtime" "^7.8.4" - private "^0.1.8" - regex-not@^1.0.0, regex-not@^1.0.2: version "1.0.2" resolved "https://registry.yarnpkg.com/regex-not/-/regex-not-1.0.2.tgz#1f4ece27e00b0b65e0247a6810e6a85d83a5752c" @@ -12851,28 +12476,16 @@ regex-not@^1.0.0, regex-not@^1.0.2: extend-shallow "^3.0.2" safe-regex "^1.1.0" -regex-parser@2.2.10: - version "2.2.10" - resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.10.tgz#9e66a8f73d89a107616e63b39d4deddfee912b37" - integrity sha512-8t6074A68gHfU8Neftl0Le6KTDwfGAj7IyjPIMSfikI2wJUTHDMaIq42bUsfVnj8mhx0R+45rdUXHGpN164avA== +regex-parser@^2.2.11: + version "2.2.11" + resolved "https://registry.yarnpkg.com/regex-parser/-/regex-parser-2.2.11.tgz#3b37ec9049e19479806e878cabe7c1ca83ccfe58" + integrity sha512-jbD/FT0+9MBU2XAZluI7w2OBs1RBi6p9M83nkoZayQXXU9e8Robt69FcZc7wU4eJD/YFTjn1JdCk3rbMJajz8Q== regexpp@^3.0.0, regexpp@^3.1.0: version "3.1.0" resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== -regexpu-core@^4.7.0: - version "4.7.0" - resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.7.0.tgz#fcbf458c50431b0bb7b45d6967b8192d91f3d938" - integrity sha512-TQ4KXRnIn6tz6tjnrXEkD/sshygKH/j5KzK86X8MkeHyZ8qst/LZ89j3X4/8HEIfHANTFIP/AbXakeRhWIl5YQ== - dependencies: - regenerate "^1.4.0" - regenerate-unicode-properties "^8.2.0" - regjsgen "^0.5.1" - regjsparser "^0.6.4" - unicode-match-property-ecmascript "^1.0.4" - unicode-match-property-value-ecmascript "^1.2.0" - regextras@^0.7.1: version "0.7.1" resolved "https://registry.yarnpkg.com/regextras/-/regextras-0.7.1.tgz#be95719d5f43f9ef0b9fa07ad89b7c606995a3b2" @@ -12885,18 +12498,6 @@ registry-url@^5.1.0: dependencies: rc "^1.2.8" -regjsgen@^0.5.1: - version "0.5.2" - resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.5.2.tgz#92ff295fb1deecbf6ecdab2543d207e91aa33733" - integrity sha512-OFFT3MfrH90xIW8OOSyUrk6QHD5E9JOTeGodiJeBS3J6IwlgzJMNE/1bZklWz5oTg+9dCMyEetclvCVXOPoN3A== - -regjsparser@^0.6.4: - version "0.6.4" - resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.6.4.tgz#a769f8684308401a66e9b529d2436ff4d0666272" - integrity sha512-64O87/dPDgfk8/RQqC4gkZoGyyWFIEUTTh80CU6CWuK5vkCGyekIx+oKcEIYtP/RAxSQltCZHCNu/mdd7fqlJw== - dependencies: - jsesc "~0.5.0" - rehype-accessible-emojis@^0.3.2: version "0.3.2" resolved "https://registry.yarnpkg.com/rehype-accessible-emojis/-/rehype-accessible-emojis-0.3.2.tgz#8a7179e3f423845f4aea9498f42069ae97d602f3" @@ -13141,12 +12742,12 @@ resolve-from@^5.0.0: resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== -resolve-url-loader@3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.1.tgz#28931895fa1eab9be0647d3b2958c100ae3c0bf0" - integrity sha512-K1N5xUjj7v0l2j/3Sgs5b8CjrrgtC70SmdCuZiJ8tSyb5J+uk3FoeZ4b7yTnH6j7ngI+Bc5bldHJIa8hYdu2gQ== +resolve-url-loader@3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/resolve-url-loader/-/resolve-url-loader-3.1.2.tgz#235e2c28e22e3e432ba7a5d4e305c59a58edfc08" + integrity sha512-QEb4A76c8Mi7I3xNKXlRKQSlLBwjUV/ULFMP+G7n3/7tJZ8MG5wsZ3ucxP1Jz8Vevn6fnJsxDx9cIls+utGzPQ== dependencies: - adjust-sourcemap-loader "2.0.0" + adjust-sourcemap-loader "3.0.0" camelcase "5.3.1" compose-function "3.0.3" convert-source-map "1.7.0" @@ -13162,7 +12763,7 @@ resolve-url@^0.2.1: resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a" integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo= -resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.3.2, resolve@^1.8.1: +resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.17.0, resolve@^1.3.2: version "1.18.1" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.18.1.tgz#018fcb2c5b207d2a6424aee361c5a266da8f4130" integrity sha512-lDfCPaMKfOJXjy0dPayzPdF1phampNWr3qFCjAu+rw/qbQmr5jWH5xN2hwh9QKfw9E5v4hwV7A+jrCmL8yjjqA== @@ -13170,7 +12771,7 @@ resolve@^1.1.6, resolve@^1.10.0, resolve@^1.13.1, resolve@^1.15.1, resolve@^1.17 is-core-module "^2.0.0" path-parse "^1.0.6" -resolve@^1.18.1: +resolve@^1.18.1, resolve@^1.19.0: version "1.19.0" resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c" integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg== @@ -13348,15 +12949,15 @@ sane@^4.0.3: minimist "^1.1.1" walker "~1.0.5" -sass-loader@10.0.2: - version "10.0.2" - resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.2.tgz#c7b73010848b264792dd45372eea0b87cba4401e" - integrity sha512-wV6NDUVB8/iEYMalV/+139+vl2LaRFlZGEd5/xmdcdzQcgmis+npyco6NsDTVOlNA3y2NV9Gcz+vHyFMIT+ffg== +sass-loader@10.0.5: + version "10.0.5" + resolved "https://registry.yarnpkg.com/sass-loader/-/sass-loader-10.0.5.tgz#f53505b5ddbedf43797470ceb34066ded82bb769" + integrity sha512-2LqoNPtKkZq/XbXNQ4C64GFEleSEHKv6NPSI+bMC/l+jpEXGJhiRYkAQToO24MR7NU4JRY2RpLpJ/gjo2Uf13w== dependencies: - klona "^2.0.3" + klona "^2.0.4" loader-utils "^2.0.0" neo-async "^2.6.2" - schema-utils "^2.7.1" + schema-utils "^3.0.0" semver "^7.3.2" sax@>=0.6.0, sax@^1.2.4: @@ -13406,6 +13007,15 @@ schema-utils@^2.6.6: ajv "^6.12.2" ajv-keywords "^3.4.1" +schema-utils@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.0.0.tgz#67502f6aa2b66a2d4032b4279a2944978a0913ef" + integrity sha512-6D82/xSzO094ajanoOSbe4YvXWMfn2A//8Y1+MUqFAJul5Bs+yn36xbK9OtNDcRVSBJ9jjeoXftM6CfztsjOAA== + dependencies: + "@types/json-schema" "^7.0.6" + ajv "^6.12.5" + ajv-keywords "^3.5.2" + screenfull@^5.0.0: version "5.0.2" resolved "https://registry.yarnpkg.com/screenfull/-/screenfull-5.0.2.tgz#b9acdcf1ec676a948674df5cd0ff66b902b0bed7" @@ -13444,11 +13054,6 @@ semver-regex@^2.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.0.0: - version "7.0.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-7.0.0.tgz#5f3ca35761e47e05b206c6daff2cf814f0316b8e" - integrity sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A== - semver@7.x, semver@^7.0.0, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2: version "7.3.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" @@ -13566,6 +13171,22 @@ shallow-clone@^3.0.0: dependencies: kind-of "^6.0.2" +sharp@0.26.3: + version "0.26.3" + resolved "https://registry.yarnpkg.com/sharp/-/sharp-0.26.3.tgz#9de8577a986b22538e6e12ced1f7e8a53f9728de" + integrity sha512-NdEJ9S6AMr8Px0zgtFo1TJjMK/ROMU92MkDtYn2BBrDjIx3YfH9TUyGdzPC+I/L619GeYQc690Vbaxc5FPCCWg== + dependencies: + array-flatten "^3.0.0" + color "^3.1.3" + detect-libc "^1.0.3" + node-addon-api "^3.0.2" + npmlog "^4.1.2" + prebuild-install "^6.0.0" + semver "^7.3.2" + simple-get "^4.0.0" + tar-fs "^2.1.1" + tunnel-agent "^0.6.0" + shebang-command@^1.2.0: version "1.2.0" resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-1.2.0.tgz#44aac65b695b03398968c39f363fee5deafdf1ea" @@ -13623,6 +13244,29 @@ signale@^1.4.0: figures "^2.0.0" pkg-conf "^2.1.0" +simple-concat@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/simple-concat/-/simple-concat-1.0.1.tgz#f46976082ba35c2263f1c8ab5edfe26c41c9552f" + integrity sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q== + +simple-get@^3.0.3: + version "3.1.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-3.1.0.tgz#b45be062435e50d159540b576202ceec40b9c6b3" + integrity sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA== + dependencies: + decompress-response "^4.2.0" + once "^1.3.1" + simple-concat "^1.0.0" + +simple-get@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/simple-get/-/simple-get-4.0.0.tgz#73fa628278d21de83dadd5512d2cc1f4872bd675" + integrity sha512-ZalZGexYr3TA0SwySsr5HlgOOinS4Jsa8YB2GJ6lUNAazyAu4KG/VmzMTwAt2YVXzzVj8QmefmAonZIK2BSGcQ== + dependencies: + decompress-response "^6.0.0" + once "^1.3.1" + simple-concat "^1.0.0" + simple-react-lightbox@^3.1.2-3: version "3.3.4" resolved "https://registry.yarnpkg.com/simple-react-lightbox/-/simple-react-lightbox-3.3.4.tgz#1a0df830a9a8852edd7a4ec9fa7ef1646f8ae5ca" @@ -13638,6 +13282,13 @@ simple-react-lightbox@^3.1.2-3: subscribe-event "^1.1.1" use-debounce "^3.4.2" +simple-swizzle@^0.2.2: + version "0.2.2" + resolved "https://registry.yarnpkg.com/simple-swizzle/-/simple-swizzle-0.2.2.tgz#a4da6b635ffcccca33f70d17cb92592de95e557a" + integrity sha1-pNprY1/8zMoz9w0Xy5JZLeleVXo= + dependencies: + is-arrayish "^0.3.1" + sisteransi@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.0.tgz#77d9622ff909080f1c19e5f4a1df0c1b0a27b88c" @@ -13782,7 +13433,7 @@ source-map-support@^0.5.6: buffer-from "^1.0.0" source-map "^0.6.0" -source-map-support@~0.5.12: +source-map-support@~0.5.12, source-map-support@~0.5.19: version "0.5.19" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== @@ -13805,7 +13456,7 @@ source-map@0.6.1, source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== -source-map@0.7.3, source-map@^0.7.3: +source-map@0.7.3, source-map@^0.7.3, source-map@~0.7.2: version "0.7.3" resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== @@ -13913,13 +13564,6 @@ ssri@^6.0.0, ssri@^6.0.1: dependencies: figgy-pudding "^3.5.1" -ssri@^8.0.0: - version "8.0.0" - resolved "https://registry.yarnpkg.com/ssri/-/ssri-8.0.0.tgz#79ca74e21f8ceaeddfcb4b90143c458b8d988808" - integrity sha512-aq/pz989nxVYwn16Tsbj1TqFpD5LLrQxHf5zaHuieFV+R0Bbr4y8qUsOA45hXT/N4/9UNXTarBjnjVmjSOVaAA== - dependencies: - minipass "^3.1.1" - stack-generator@^2.0.5: version "2.0.5" resolved "https://registry.yarnpkg.com/stack-generator/-/stack-generator-2.0.5.tgz#fb00e5b4ee97de603e0773ea78ce944d81596c36" @@ -14310,10 +13954,10 @@ style-value-types@^3.1.9: hey-listen "^1.0.8" tslib "^1.10.0" -styled-jsx@3.3.0: - version "3.3.0" - resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.0.tgz#32335c1a3ecfc923ba4f9c056eeb3d4699006b09" - integrity sha512-sh8BI5eGKyJlwL4kNXHjb27/a/GJV8wP4ElRIkRXrGW3sHKOsY9Pa1VZRNxyvf3+lisdPwizD9JDkzVO9uGwZw== +styled-jsx@3.3.2: + version "3.3.2" + resolved "https://registry.yarnpkg.com/styled-jsx/-/styled-jsx-3.3.2.tgz#2474601a26670a6049fb4d3f94bd91695b3ce018" + integrity sha512-daAkGd5mqhbBhLd6jYAjYBa9LpxYCzsgo/f6qzPdFxVB8yoGbhxvzQgkC0pfmCVvW3JuAEBn0UzFLBfkHVZG1g== dependencies: "@babel/types" "7.8.3" babel-plugin-syntax-jsx "6.18.0" @@ -14349,7 +13993,7 @@ supports-color@^2.0.0: resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= -supports-color@^5.3.0: +supports-color@^5.3.0, supports-color@^5.4.0: version "5.5.0" resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== @@ -14424,6 +14068,27 @@ tapable@^2.0.0-beta.2: resolved "https://registry.yarnpkg.com/tapable/-/tapable-2.0.0.tgz#a49c3d6a8a2bb606e7db372b82904c970d537a08" integrity sha512-bjzn0C0RWoffnNdTzNi7rNDhs1Zlwk2tRXgk8EiHKAOX1Mag3d6T0Y5zNa7l9CJ+EoUne/0UHdwS8tMbkh9zDg== +tar-fs@^2.0.0, tar-fs@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/tar-fs/-/tar-fs-2.1.1.tgz#489a15ab85f1f0befabb370b7de4f9eb5cbe8784" + integrity sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng== + dependencies: + chownr "^1.1.1" + mkdirp-classic "^0.5.2" + pump "^3.0.0" + tar-stream "^2.1.4" + +tar-stream@^2.1.4: + version "2.2.0" + resolved "https://registry.yarnpkg.com/tar-stream/-/tar-stream-2.2.0.tgz#acad84c284136b060dc3faa64474aa9aebd77287" + integrity sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ== + dependencies: + bl "^4.0.3" + end-of-stream "^1.4.1" + fs-constants "^1.0.0" + inherits "^2.0.3" + readable-stream "^3.1.1" + tar@^4, tar@^4.4.8: version "4.4.8" resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d" @@ -14450,18 +14115,6 @@ tar@^4.4.10: safe-buffer "^5.1.2" yallist "^3.0.3" -tar@^6.0.2: - version "6.0.5" - resolved "https://registry.yarnpkg.com/tar/-/tar-6.0.5.tgz#bde815086e10b39f1dcd298e89d596e1535e200f" - integrity sha512-0b4HOimQHj9nXNEAA7zWwMM91Zhhba3pspja6sQbgTpynOJf+bkjBnfybNYzbpLbnwXnbyB4LOREvlyXLkCHSg== - dependencies: - chownr "^2.0.0" - fs-minipass "^2.0.0" - minipass "^3.0.0" - minizlib "^2.1.1" - mkdirp "^1.0.3" - yallist "^4.0.0" - temp-dir@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/temp-dir/-/temp-dir-1.0.0.tgz#0a7c0ea26d3a39afa7e0ebea9c1fc0bc4daa011d" @@ -14502,14 +14155,14 @@ terser-webpack-plugin@^1.4.3: webpack-sources "^1.4.0" worker-farm "^1.7.0" -terser@4.8.0: - version "4.8.0" - resolved "https://registry.yarnpkg.com/terser/-/terser-4.8.0.tgz#63056343d7c70bb29f3af665865a46fe03a0df17" - integrity sha512-EAPipTNeWsb/3wLPeup1tVPaXfIaU68xMnVdPafIL1TV05OhASArYyIfFvnvJCNrR2NIOvDVNNTFRa+Re2MWyw== +terser@5.5.1: + version "5.5.1" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.5.1.tgz#540caa25139d6f496fdea056e414284886fb2289" + integrity sha512-6VGWZNVP2KTUcltUQJ25TtNjx/XgdDsBDKGt8nN0MpydU36LmbPPcMBd2kmtZNNGVVDLg44k7GKeHHj+4zPIBQ== dependencies: commander "^2.20.0" - source-map "~0.6.1" - source-map-support "~0.5.12" + source-map "~0.7.2" + source-map-support "~0.5.19" terser@^4.1.2: version "4.7.0" @@ -15044,29 +14697,6 @@ unherit@^1.0.4: inherits "^2.0.0" xtend "^4.0.0" -unicode-canonical-property-names-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz#2619800c4c825800efdd8343af7dd9933cbe2818" - integrity sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ== - -unicode-match-property-ecmascript@^1.0.4: - version "1.0.4" - resolved "https://registry.yarnpkg.com/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz#8ed2a32569961bce9227d09cd3ffbb8fed5f020c" - integrity sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg== - dependencies: - unicode-canonical-property-names-ecmascript "^1.0.4" - unicode-property-aliases-ecmascript "^1.0.4" - -unicode-match-property-value-ecmascript@^1.2.0: - version "1.2.0" - resolved "https://registry.yarnpkg.com/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.2.0.tgz#0d91f600eeeb3096aa962b1d6fc88876e64ea531" - integrity sha512-wjuQHGQVofmSJv1uVISKLE5zO2rNGzM/KCYZch/QQvez7C1hUhBIuZ701fYXExuufJFMPhv2SyL8CyoIfMLbIQ== - -unicode-property-aliases-ecmascript@^1.0.4: - version "1.0.5" - resolved "https://registry.yarnpkg.com/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz#a9cc6cc7ce63a0a3023fc99e341b94431d405a57" - integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw== - unified@9.1.0: version "9.1.0" resolved "https://registry.yarnpkg.com/unified/-/unified-9.1.0.tgz#7ba82e5db4740c47a04e688a9ca8335980547410" @@ -15300,7 +14930,7 @@ url-join@^1.1.0: resolved "https://registry.yarnpkg.com/url-join/-/url-join-1.1.0.tgz#741c6c2f4596c4830d6718460920d0c92202dc78" integrity sha1-dBxsL0WWxIMNZxhGCSDQySIC3Hg= -url-join@^4.0.0: +url-join@^4.0.0, url-join@^4.0.1: version "4.0.1" resolved "https://registry.yarnpkg.com/url-join/-/url-join-4.0.1.tgz#b642e21a2646808ffa178c4c5fda39844e12cde7" integrity sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA== @@ -15320,15 +14950,25 @@ url@^0.11.0: punycode "1.3.2" querystring "0.2.0" +use-click-outside@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/use-click-outside/-/use-click-outside-2.0.0.tgz#87a60baab538e91e8ae15c21caad29edf9cd034e" + integrity sha512-sUDWeFbpzFrjtSX0NfBk8EsDs+qWbI/fW5RfSnQl1nX6RIiHC48/JZtEdlgCyszBqRUPdkIBBP7zD3K/9sg5PQ== + use-debounce@^3.4.2: version "3.4.2" resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-3.4.2.tgz#f4333cca59504244b916159600427bf977ec4c46" integrity sha512-rW44wZaFPh3XiwUzGBA0JRuklpbfKO/szU/5CYD2Q/erLmCem63lJ650p3a+NJE6S+g0rulKtBOfa/3rw/GN+Q== -use-subscription@1.4.1: - version "1.4.1" - resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.4.1.tgz#edcbcc220f1adb2dd4fa0b2f61b6cc308e620069" - integrity sha512-7+IIwDG/4JICrWHL/Q/ZPK5yozEnvRm6vHImu0LKwQlmWGKeiF7mbAenLlK/cTNXrTtXHU/SFASQHzB6+oSJMQ== +use-debounce@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/use-debounce/-/use-debounce-5.2.0.tgz#3cb63f5c46f40092c570356e441dbc016ffb2f8b" + integrity sha512-lW4tbPsTnvPKYqOYXp5xZ7SP7No/ARLqqQqoyRKuSzP0HxR9arhSAhznXUZFoNPWDRij8fog+N6sYbjb8c3kzw== + +use-subscription@1.5.1: + version "1.5.1" + resolved "https://registry.yarnpkg.com/use-subscription/-/use-subscription-1.5.1.tgz#73501107f02fad84c6dd57965beb0b75c68c42d1" + integrity sha512-Xv2a1P/yReAjAbhylMfFplFKj9GssgTwN7RlcTxBujFQcloStWNDQdc4g4NRWH9xS4i/FDk04vQBptAXoF3VcA== dependencies: object-assign "^4.1.1" @@ -15344,7 +14984,7 @@ user-home@^2.0.0: dependencies: os-homedir "^1.0.0" -util-deprecate@^1.0.1, util-deprecate@~1.0.1: +util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1: version "1.0.2" resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= @@ -15497,6 +15137,13 @@ walker@^1.0.7, walker@~1.0.5: dependencies: makeerror "1.0.x" +warning@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/warning/-/warning-4.0.3.tgz#16e9e077eb8a86d6af7d64aa1e05fd85b4678ca3" + integrity sha512-rpJyN222KWIvHJ/F53XSZv0Zl/accqHR8et1kpaMTD/fLCRxtV8iX8czMzY7sVZupTI3zcUTg8eycS2kNF9l6w== + dependencies: + loose-envify "^1.0.0" + watchpack-chokidar2@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/watchpack-chokidar2/-/watchpack-chokidar2-2.0.0.tgz#9948a1866cbbd6cb824dea13a7ed691f6c8ddff0" @@ -15535,11 +15182,6 @@ web-namespaces@^1.0.0, web-namespaces@^1.1.2: resolved "https://registry.yarnpkg.com/web-namespaces/-/web-namespaces-1.1.4.tgz#bc98a3de60dadd7faefc403d1076d529f5e030ec" integrity sha512-wYxSGajtmoP4WxfejAPIr4l0fVh+jeMXZb08wNc0tMg6xsfZXj3cECqIK0G7ZAqUq0PP8WlMDtaOGVBTAWztNw== -web-vitals@0.2.4: - version "0.2.4" - resolved "https://registry.yarnpkg.com/web-vitals/-/web-vitals-0.2.4.tgz#ec3df43c834a207fd7cdefd732b2987896e08511" - integrity sha512-6BjspCO9VriYy12z356nL6JBS0GYeEcA457YyRzD+dD6XYCQ75NKhcOHUMHentOE7OcVCIXXDvOm0jKFfQG2Gg== - webidl-conversions@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad" @@ -15820,6 +15462,13 @@ ws@^7.2.3: resolved "https://registry.yarnpkg.com/ws/-/ws-7.3.0.tgz#4b2f7f219b3d3737bc1a2fbf145d825b94d38ffd" integrity sha512-iFtXzngZVXPGgpTlP1rBqsUK82p9tKqsWRPg5L56egiljujJT3vGAYnHANvFxBieXrTFavhzhxW52jnaWV+w2w== +xml-js@^1.6.11: + version "1.6.11" + resolved "https://registry.yarnpkg.com/xml-js/-/xml-js-1.6.11.tgz#927d2f6947f7f1c19a316dd8eea3614e8b18f8e9" + integrity sha512-7rVi2KMfwfWFl+GpPg6m80IVMWXLRjO+PxTq7V2CDhoGak0wzYzFgUY2m4XJ47OGdXd8eLE8EmwfAmdjw7lC1g== + dependencies: + sax "^1.2.4" + xml-name-validator@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" @@ -15848,7 +15497,7 @@ xtend@^4.0.0, xtend@~4.0.1: resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af" integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68= -xtend@^4.0.1: +xtend@^4.0.1, xtend@^4.0.2: version "4.0.2" resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54" integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ== @@ -15995,6 +15644,11 @@ yazl@^2.2.2, yazl@^2.3.1: dependencies: buffer-crc32 "~0.2.3" +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== + zwitch@^1.0.0: version "1.0.5" resolved "https://registry.yarnpkg.com/zwitch/-/zwitch-1.0.5.tgz#d11d7381ffed16b742f6af7b3f223d5cd9fe9920" From 1d1ad9441437af8e89a5e0558bb0383197c9c7ac Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 16:23:31 -0800 Subject: [PATCH 015/191] update noide --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e82817e83..912c16e57 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ version: 2.1 defaults: &defaults working_directory: ~/auto docker: - - image: circleci/node:10-browsers + - image: circleci/node:12-browsers environment: TZ: '/usr/share/zoneinfo/America/Los_Angeles' From f908c36cd0aec506935b0f5389066b3beb43edf5 Mon Sep 17 00:00:00 2001 From: Harris Borawski Date: Wed, 13 Jan 2021 17:11:32 -0800 Subject: [PATCH 016/191] fix: push tags in next hook --- plugins/cocoapods/__tests__/cocoapods.test.ts | 2 +- plugins/cocoapods/src/index.ts | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/cocoapods/__tests__/cocoapods.test.ts b/plugins/cocoapods/__tests__/cocoapods.test.ts index bc1833d0d..1e902a8f0 100644 --- a/plugins/cocoapods/__tests__/cocoapods.test.ts +++ b/plugins/cocoapods/__tests__/cocoapods.test.ts @@ -473,7 +473,7 @@ describe("Cocoapods Plugin", () => { }); expect(versions).toContain("1.0.0-next.0"); - expect(exec).toBeCalledTimes(3); + expect(exec).toBeCalledTimes(4); expect(exec).toHaveBeenCalledWith("git", ["checkout", "./Test.podspec"]); expect(mock).toHaveBeenLastCalledWith( diff --git a/plugins/cocoapods/src/index.ts b/plugins/cocoapods/src/index.ts index fe6652986..a483cfcba 100644 --- a/plugins/cocoapods/src/index.ts +++ b/plugins/cocoapods/src/index.ts @@ -317,6 +317,8 @@ export default class CocoapodsPlugin implements IPlugin { `"Tag pre-release: ${prerelease}"`, ]); + await execPromise("git", ["push", auto.remote, branch, "--tags"]); + updatePodspecVersion(this.options.podspecPath, prerelease); // Publish the next podspec, committing it isn't needed for specs push From 6e08a3133ec9172820865b1d74823d96955227c4 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 14 Jan 2021 04:56:42 +0000 Subject: [PATCH 017/191] Bump @types/conventional-commits-parser from 3.0.0 to 3.0.1 Bumps [@types/conventional-commits-parser](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/conventional-commits-parser) from 3.0.0 to 3.0.1. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/conventional-commits-parser) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..44cb035b9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2363,9 +2363,9 @@ "@types/node" "*" "@types/conventional-commits-parser@*", "@types/conventional-commits-parser@^3.0.0": - version "3.0.0" - resolved "https://registry.yarnpkg.com/@types/conventional-commits-parser/-/conventional-commits-parser-3.0.0.tgz#91227c309cf3308207634b22895787ffc3b68f6a" - integrity sha512-l1gxdN92fUcPfN9/5r4YAVhxQXaVKq8W727QIFEBhlm9rXymKlVpeMVgdvV6Thr0FCt9Kn4fl9f78BXqIsST/g== + version "3.0.1" + resolved "https://registry.yarnpkg.com/@types/conventional-commits-parser/-/conventional-commits-parser-3.0.1.tgz#1a4796a0ae2bf33b41ea49f55e27ccbdb29cce5e" + integrity sha512-xkKomW6PqJS0rzFPPQSzKwbKIRqAGjYa1aWWkoT14YYodXyEpG4ok4H1US3olqGBxejz7EeBfT3fTJ3hUOiUkQ== dependencies: "@types/node" "*" From e666020a1792090dbd904b1a213cff01d2cedd20 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 14 Jan 2021 04:56:43 +0000 Subject: [PATCH 018/191] Bump @types/twitter-text from 2.0.0 to 3.1.0 Bumps [@types/twitter-text](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/twitter-text) from 2.0.0 to 3.1.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/twitter-text) Signed-off-by: dependabot-preview[bot] --- plugins/twitter/package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 4146f5d89..4ce239867 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -39,7 +39,7 @@ }, "dependencies": { "@auto-it/core": "link:../../packages/core", - "@types/twitter-text": "^2.0.0", + "@types/twitter-text": "^3.1.0", "endent": "^2.0.1", "fp-ts": "^2.5.3", "io-ts": "^2.1.2", diff --git a/yarn.lock b/yarn.lock index 85ce503da..9a7234105 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2615,10 +2615,10 @@ resolved "https://registry.yarnpkg.com/@types/tough-cookie/-/tough-cookie-4.0.0.tgz#fef1904e4668b6e5ecee60c52cc6a078ffa6697d" integrity sha512-I99sngh224D0M7XgW1s120zxCt3VYQ3IQsuw3P3jbq5GG4yc79+ZjyKznyOGIQrflfylLgcfekeZW/vk0yng6A== -"@types/twitter-text@^2.0.0": - version "2.0.0" - resolved "https://registry.yarnpkg.com/@types/twitter-text/-/twitter-text-2.0.0.tgz#487cbe72aa15db64e6ac406df17804347bd716ee" - integrity sha512-bRlURk6hHRMSm37Wc5MPswV5ZWFAt2DYJ50ERoB5kzu6u+qGmzE83sRP5gA55uBW52uBnsBrorK7yEsPUYQWHQ== +"@types/twitter-text@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@types/twitter-text/-/twitter-text-3.1.0.tgz#32abbbc71bfa4838798e3a12e5554e6b7288e776" + integrity sha512-AOMDM8MTYygW9net4TPFtgpbMowCkKETAzCC3jYhrolDdHd1yBgIYAao+L455lqg2aWRGEI0v5lHTw/aNBJuhg== "@types/unist@*", "@types/unist@^2.0.0", "@types/unist@^2.0.2", "@types/unist@^2.0.3": version "2.0.3" From 6d0683c91cc8bab109db5e12195c9e27184bf704 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Thu, 14 Jan 2021 05:00:04 +0000 Subject: [PATCH 019/191] Bump eslint-plugin-jsdoc from 30.7.8 to 31.0.3 Bumps [eslint-plugin-jsdoc](https://github.com/gajus/eslint-plugin-jsdoc) from 30.7.8 to 31.0.3. - [Release notes](https://github.com/gajus/eslint-plugin-jsdoc/releases) - [Commits](https://github.com/gajus/eslint-plugin-jsdoc/compare/v30.7.8...v31.0.3) Signed-off-by: dependabot-preview[bot] --- package.json | 2 +- yarn.lock | 32 ++++++++++++++++---------------- 2 files changed, 17 insertions(+), 17 deletions(-) diff --git a/package.json b/package.json index 9b29b1873..e165a6aa8 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "eslint-config-xo": "^0.33.1", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jest": "^24.0.1", - "eslint-plugin-jsdoc": "^30.2.1", + "eslint-plugin-jsdoc": "^31.0.3", "eslint-plugin-prettier": "^3.1.4", "graphql": "^15.0.0", "husky": "^4.0.7", diff --git a/yarn.lock b/yarn.lock index 85ce503da..de0debd62 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4689,10 +4689,10 @@ commander@^6.0.0, commander@^6.1.0, commander@^6.2.0: resolved "https://registry.yarnpkg.com/commander/-/commander-6.2.1.tgz#0792eb682dfbc325999bb2b84fddddba110ac73c" integrity sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA== -comment-parser@^0.7.6: - version "0.7.6" - resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-0.7.6.tgz#0e743a53c8e646c899a1323db31f6cd337b10f12" - integrity sha512-GKNxVA7/iuTnAqGADlTWX4tkhzxZKXp5fLJqKTlQLHkE65XDUKutZ3BHaJC5IGcper2tT3QRD1xr4o3jNpgXXg== +comment-parser@1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/comment-parser/-/comment-parser-1.0.1.tgz#6f40ebc3ac5063cf59b5eb415bc689636134cc4a" + integrity sha512-korDJ16mBVZexVd485jz4AeAcAFP1UzeecfVgfBCBojLFjMEHEHOY9vgk3e9o1zRSP0EscavonLki4JZDCKmrg== commondir@^1.0.1: version "1.0.1" @@ -5335,10 +5335,10 @@ debug@3.1.0: dependencies: ms "2.0.0" -debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0: - version "4.2.0" - resolved "https://registry.yarnpkg.com/debug/-/debug-4.2.0.tgz#7f150f93920e94c58f5574c2fd01a3110effe7f1" - integrity sha512-IX2ncY78vDTjZMFUdmsvIRFY2Cf4FnD0wRs+nQwJU8Lu99/tPFdb0VybiiMTPe3I6rQmwsqQqRBvxU+bZ/I8sg== +debug@4, debug@^4.0.1, debug@^4.1.0, debug@^4.1.1, debug@^4.2.0, debug@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" + integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== dependencies: ms "2.1.2" @@ -6130,17 +6130,17 @@ eslint-plugin-jest@^24.0.1: dependencies: "@typescript-eslint/experimental-utils" "^4.0.1" -eslint-plugin-jsdoc@^30.2.1: - version "30.7.8" - resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-30.7.8.tgz#4a678c25ddb2c5732163f0258bb1d05edf34f61c" - integrity sha512-OWm2AYvXjCl7nRbpcw5xisfSVkpVAyp4lGqL9T+DeK4kaPm6ecnmTc/G5s1PtcRrwbaI8bIWGzwScqv5CdGyxA== +eslint-plugin-jsdoc@^31.0.3: + version "31.0.3" + resolved "https://registry.yarnpkg.com/eslint-plugin-jsdoc/-/eslint-plugin-jsdoc-31.0.3.tgz#23dd8bee22421af1dab0a00a91dfc3d47f644a76" + integrity sha512-O2HXyXyw2FYXWngFGeuCxhmClb4M1Y/w+bPcahO31P/Tw+vHZUU9wkPkSML2izznJ1dp3dnTG4on9bXDZDWfyQ== dependencies: - comment-parser "^0.7.6" - debug "^4.2.0" + comment-parser "1.0.1" + debug "^4.3.1" jsdoctypeparser "^9.0.0" lodash "^4.17.20" regextras "^0.7.1" - semver "^7.3.2" + semver "^7.3.4" spdx-expression-parse "^3.0.1" eslint-plugin-prettier@^3.1.4: @@ -13054,7 +13054,7 @@ semver-regex@^2.0.0: resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== -semver@7.x, semver@^7.0.0, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2: +semver@7.x, semver@^7.0.0, semver@^7.1.3, semver@^7.2.1, semver@^7.3.2, semver@^7.3.4: version "7.3.4" resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.4.tgz#27aaa7d2e4ca76452f98d3add093a72c943edc97" integrity sha512-tCfb2WLjqFAtXn4KEdxIhalnRtoKFN7nAwj0B3ZXCbQloV2tq5eDbcTmT68JJD3nRJq24/XgxtQKFIpQdtvmVw== From e1090897fda97e9c9ee499bf4b55f367513b1015 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 21:07:24 -0800 Subject: [PATCH 020/191] add missing configurable option validation --- packages/core/src/types.ts | 9 +++++++++ scripts/generate-cofingurable-args.js | 27 +++++++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 scripts/generate-cofingurable-args.js diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 8b7c11639..616223e35 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -84,8 +84,17 @@ const globalOptions = t.partial({ }), /** Options to pass to "auto shipit" */ shipit: t.partial({ + prerelease: t.boolean, + noChangelog: t.boolean, + message: t.string, onlyGraduateWithReleaseLabel: t.boolean, }), + /** Options to pass to "auto latest" */ + latest: t.partial({ + prerelease: t.boolean, + noChangelog: t.boolean, + message: t.string, + }), /** Options to pass to "auto canary" */ canary: t.partial({ force: t.boolean, diff --git a/scripts/generate-cofingurable-args.js b/scripts/generate-cofingurable-args.js new file mode 100755 index 000000000..4dc56858e --- /dev/null +++ b/scripts/generate-cofingurable-args.js @@ -0,0 +1,27 @@ +#!/usr/bin/env node + +const fs = require("fs"); +const path = require("path"); +const { camelCase } = require("change-case"); +const endent = require("endent").default; +const glob = require("fast-glob"); +const docs = require("command-line-docs").default; +const { commands } = require("../packages/cli/dist/parse-args"); + +commands.forEach((command) => { + const configOptions = (command.options || []).filter( + (option) => option.config + ); + + if (!configOptions.length) { + return; + } + + console.log(endent` + ${command.name} has the following configurable option: + + ${configOptions.map((o) => `- \`${o.name}\``).join("\n")}\n\n\n + `); + console.log(); + console.log(); +}); From 256b48d66428871d56fa1e28eebe2409d87a2164 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 21:34:18 -0800 Subject: [PATCH 021/191] add test to verify config options --- packages/cli/__tests__/config.test.ts | 18 ++++++++++++++++++ packages/core/src/types.ts | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 packages/cli/__tests__/config.test.ts diff --git a/packages/cli/__tests__/config.test.ts b/packages/cli/__tests__/config.test.ts new file mode 100644 index 000000000..50e25e72e --- /dev/null +++ b/packages/cli/__tests__/config.test.ts @@ -0,0 +1,18 @@ +import { globalOptions } from "@auto-it/core/dist/types"; +import { camelCase } from "change-case"; +import { commands } from "../src/parse-args"; + +test.each(commands.map((c) => [c.name, c] as const))( + "%s has correct config options", + (name, command) => { + const configOptions = globalOptions.props[name]?.props || {}; + + expect.assertions(command.options?.filter((o) => o.config).length ?? 0); + + Object.keys(configOptions).forEach((option) => { + expect(command.options.some((o) => camelCase(o.name) === option)).toBe( + true + ); + }); + } +); diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 616223e35..1d5d21255 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -51,7 +51,7 @@ const logOptions = t.partial({ export type LogOptions = t.TypeOf; -const globalOptions = t.partial({ +export const globalOptions = t.partial({ /** Another auto configuration to extend */ extends: t.string, /** Labels that power auto */ From 4c5bdd2ef9be587a9e4212f56df4cd6518633a83 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 23:23:07 -0800 Subject: [PATCH 022/191] Attempt to resolve relative plugin paths from extended config location --- docs/pages/docs/configuration/autorc.mdx | 25 +++++++++++++++++- packages/core/src/auto.ts | 10 ++++++- .../src/utils/__tests__/load-plugin.test.ts | 26 ++++++++++++++++++- packages/core/src/utils/load-plugins.ts | 24 ++++++++++++----- .../core/src/utils/test-config/package.json | 8 ++++++ .../utils/test-config/some-other-plugin.js | 13 ++++++++++ .../core/src/utils/test-config/some-plugin.js | 13 ++++++++++ 7 files changed, 109 insertions(+), 10 deletions(-) create mode 100644 packages/core/src/utils/test-config/package.json create mode 100644 packages/core/src/utils/test-config/some-other-plugin.js create mode 100644 packages/core/src/utils/test-config/some-plugin.js diff --git a/docs/pages/docs/configuration/autorc.mdx b/docs/pages/docs/configuration/autorc.mdx index f4a7c2d05..257f65512 100644 --- a/docs/pages/docs/configuration/autorc.mdx +++ b/docs/pages/docs/configuration/autorc.mdx @@ -362,7 +362,9 @@ The following removes the default internal and documentation label sections: ## Extending -If you want to share your auto configuration between projects you can use the `extends` property. This property will load from a module's package.json or from a custom path. It's expected that the extended configuration be under the `auto` key in the package.json file. +If you want to share your auto configuration between projects you can use the `extends` property. +This property will load from a module's `package.json` or from a custom path. +It's expected that the extended configuration be under the `auto` key in the `package.json` file. Auto can load `extends` configs in the following ways: @@ -371,6 +373,8 @@ Auto can load `extends` configs in the following ways: - from a package `auto-config-YOUR_NAME` - from a url `https://yourdomain.com/auto-config.json` (must return the content type `application/json`) +### Formats + ```json { "extends": "@YOUR_SCOPE" @@ -402,3 +406,22 @@ If you're extending from a local file it can be any file in JSON format or a `pa "extends": "./path/to/other/package.json" } ``` + +### Custom Plugins + +An `extends` configuration can include custom plugins in the NPM package. +This is useful if you have a shared plugin that doesn't necessarily need to be published as it's own package. + +> NOTE: This does not work for `auto` configs stored in a url. + +To include custom plugins just use a relative path in the extended configuration/ + +**`package.json`:** + +```json +{ + "auto": { + "plugins": ["./plugins/some-plugin.js"] + } +} +``` diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 2060a8f90..1b8cb03b4 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -2057,7 +2057,15 @@ export default class Auto { extendedLocation = require.resolve(config.extends); } } catch (error) { - this.logger.veryVerbose.error(error); + try { + if (config.extends) { + extendedLocation = require.resolve( + path.join(process.cwd(), config.extends) + ); + } + } catch (error) { + this.logger.veryVerbose.error(error); + } } return extendedLocation; diff --git a/packages/core/src/utils/__tests__/load-plugin.test.ts b/packages/core/src/utils/__tests__/load-plugin.test.ts index 60c206100..d4afbcdc5 100644 --- a/packages/core/src/utils/__tests__/load-plugin.test.ts +++ b/packages/core/src/utils/__tests__/load-plugin.test.ts @@ -3,7 +3,7 @@ import endent from "endent"; import { execSync } from "child_process"; import { getInstalledPlugins, loadPlugin, listPlugins } from "../load-plugins"; -import { dummyLog } from "../logger"; +import { dummyLog, setLogLevel } from "../logger"; const logger = dummyLog(); @@ -40,6 +40,10 @@ jest.mock( ); describe("loadPlugins", () => { + beforeEach(() => { + setLogLevel('quiet'); + }); + test("should load official plugins", () => { expect(loadPlugin(["baz", {}], logger)?.name).toBe("baz"); expect(loadPlugin(["@auto-it/baz", {}], logger)?.name).toBe("baz"); @@ -50,6 +54,26 @@ describe("loadPlugins", () => { expect(loadPlugin(["auto-plugin-foo", {}], logger)?.name).toBe("foo"); }); + test("should load plugin stored relative to extended config package.json", () => { + expect( + loadPlugin( + ["./some-plugin.js", {}], + logger, + path.join(__dirname, "../test-config/package.json") + )?.name + ).toBe("test-1"); + }); + + test("should load plugin stored relative to extended config dir", () => { + expect( + loadPlugin( + ["./some-other-plugin.js", {}], + logger, + path.join(__dirname, "../test-config") + )?.name + ).toBe("test-2"); + }); + test("should load scoped plugins", () => { expect(loadPlugin(["@my-scope/auto-plugin-bar", {}], logger)?.name).toBe( "bar" diff --git a/packages/core/src/utils/load-plugins.ts b/packages/core/src/utils/load-plugins.ts index 41298f1bf..eabaca874 100644 --- a/packages/core/src/utils/load-plugins.ts +++ b/packages/core/src/utils/load-plugins.ts @@ -128,14 +128,24 @@ export function findPlugin( // Try requiring a path from cwd if (isLocal) { - const localPath = path.join(process.cwd(), pluginPath); - - if (!exists(localPath)) { - logger.log.warn(`Could not find plugin from path: ${localPath}`); - return; + let localPath = path.join(process.cwd(), pluginPath); + + if (exists(localPath)) { + return localPath; + } + + if (extendedLocation) { + localPath = path.join( + extendedLocation.endsWith("package.json") + ? path.dirname(extendedLocation) + : extendedLocation, + pluginPath + ); + + if (exists(localPath)) { + return localPath; + } } - - return localPath; } // For pkg bundle diff --git a/packages/core/src/utils/test-config/package.json b/packages/core/src/utils/test-config/package.json new file mode 100644 index 000000000..a728bd12d --- /dev/null +++ b/packages/core/src/utils/test-config/package.json @@ -0,0 +1,8 @@ +{ + "auto": { + "plugins": [ + "./some-other-plugin.js", + ["./some-plugin.js", {"foo": "bar"}] + ] + } +} diff --git a/packages/core/src/utils/test-config/some-other-plugin.js b/packages/core/src/utils/test-config/some-other-plugin.js new file mode 100644 index 000000000..31f5805b6 --- /dev/null +++ b/packages/core/src/utils/test-config/some-other-plugin.js @@ -0,0 +1,13 @@ +module.exports = class TestPlugin { + /** */ + constructor() { + this.name = "test-2"; + } + + /** + * Tap into auto plugin points. + */ + apply() { + /** */ + } +}; diff --git a/packages/core/src/utils/test-config/some-plugin.js b/packages/core/src/utils/test-config/some-plugin.js new file mode 100644 index 000000000..e63f45d5e --- /dev/null +++ b/packages/core/src/utils/test-config/some-plugin.js @@ -0,0 +1,13 @@ +module.exports = class TestPlugin { + /** */ + constructor() { + this.name = "test-1"; + } + + /** + * Tap into auto plugin points. + */ + apply() { + /** */ + } +}; From ec63434929542cd8900084274094aee0dc4a3884 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 23:38:11 -0800 Subject: [PATCH 023/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 17 +++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 13 +++++++++++++ packages/core/CHANGELOG.md | 14 ++++++++++++++ 4 files changed, 45 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b234c28e4..6e5178dc1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,20 @@ +# v10.6.2 (Wed Jan 13 2021) + +#### 🐛 Bug Fix + +- `auto`, `@auto-it/core` + - add missing configurable option validation [#1716](https://github.com/intuit/auto/pull/1716) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 📝 Documentation + +- upgrade ignite [#1714](https://github.com/intuit/auto/pull/1714) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.1 (Tue Jan 12 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 8eea11524..15ae2de33 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.6.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.6.2/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c4d03efec..33b02bff0 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.6.2 (Wed Jan 13 2021) + +#### 🐛 Bug Fix + +- add missing configurable option validation [#1716](https://github.com/intuit/auto/pull/1716) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- add test to verify config options ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.1 (Tue Jan 12 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 4020b1750..bad492e39 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,17 @@ +# v10.6.2 (Wed Jan 13 2021) + +#### 🐛 Bug Fix + +- add missing configurable option validation [#1716](https://github.com/intuit/auto/pull/1716) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- add test to verify config options ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- add missing configurable option validation ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: From 5c9e99ee827f471827bc112de8572ff62b627838 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 23:38:13 -0800 Subject: [PATCH 024/191] Bump version to: v10.6.2 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 8aadba024..c0f480f73 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.6.1", + "version": "10.6.2", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index a8edfbc8a..d7a48569e 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.6.1", + "version": "10.6.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 108e7b379..06e3aef91 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.6.1", + "version": "10.6.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 5b90c6a9d..87982d0ef 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.6.1", + "version": "10.6.2", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 2e4b5df4c..5b2adabf1 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.6.1", + "version": "10.6.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 57fd29f7a..8f3140321 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 8e1617bcc..a423dfdd8 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 4baad7f34..74a4bbbce 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 6fadfa0c4..8b5a66f38 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 8bfd61ddb..8bae213a8 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index d6a734b32..23457c1b6 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index fc7b415c1..9e94666e7 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 8a3380b2a..bc478fdeb 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 46eba6716..1c8ea34e4 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index f5a17fc5a..599b6c92c 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index a29f97be8..b2aaa4e12 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index a20ea1a54..5ae8bac03 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 64a835cad..9f3b47139 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 0a5957ca1..f80067003 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index a8c87a96a..95a3107e6 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 5f8bf572a..0426ad0e8 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 50ecfef93..61e45132a 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 4c1d42be1..20606bb22 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 68fa0b471..98af35d83 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 4aa119835..4d9c222b3 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 7e154c5bc..8c02281e3 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 5112aa177..5bdee37d5 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 360f30958..14b26d095 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 4146f5d89..a634432bc 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 53fc3d04e..4b6d2893a 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 593968fb6..e86d45631 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.6.1", + "version": "10.6.2", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 8b4d1f23e522ccf5695b1a4342b5c5d325522604 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 13 Jan 2021 23:38:13 -0800 Subject: [PATCH 025/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 19b275c24..0cf196a17 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.6.1/auto-macos.gz" - version "v10.6.1" - sha256 "e2d2e0c157be92b5d66719afbddcf8a6fd19a2a49c8bb9f05c78e52c1d9f7535" + url "https://github.com/intuit/auto/releases/download/v10.6.2/auto-macos.gz" + version "v10.6.2" + sha256 "d51dc6214cfa5f1d517428b00f7a78f78fc550b84e217798242727d13cf69171" def install libexec.install Dir["*"] From 7962b695c66af7c56c693e26cccf53daba64335d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:39:09 -0800 Subject: [PATCH 026/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/core/CHANGELOG.md | 16 ++++++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++++++ plugins/cocoapods/CHANGELOG.md | 12 ++++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 12 ++++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++++++ plugins/released/CHANGELOG.md | 12 ++++++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++++++ 30 files changed, 354 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e5178dc1..a7789814d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- `@auto-it/core` + - Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.2 (Wed Jan 13 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 15ae2de33..a6657e917 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.6.2/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.7.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 33b02bff0..7d46ef238 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.2 (Wed Jan 13 2021) #### 🐛 Bug Fix diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bad492e39..243f3ec21 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- Attempt to resolve relative plugin paths from extended config location ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.2 (Wed Jan 13 2021) #### 🐛 Bug Fix diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index 20b26211b..c284acd65 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index ed579253b..9bbde7984 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index b916ed817..5e240d86a 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index 3f24ac09b..0c13ba197 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index f57205fb7..886a32cc1 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index 88727eb9e..371b66732 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index e95fa5824..324b44c4b 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index a1e8c9b4d..81e84d8bc 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.1 (Tue Jan 12 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index e99290a0b..8c002abf8 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index 58515d81f..becd525e1 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index 6976d49ed..7e6644694 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index ff4a7c321..4184435a5 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index 74516bf34..b22f9869d 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index 3973b529d..b6c660145 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index 01ade8e92..4ad7ba615 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 1101c9d67..8617881b5 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index cb274ed42..d264220c5 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index c250c2aee..b75e9f495 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index 264e9903b..2a8eb80f3 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index da4e437d9..fffd25f3f 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index 1ee7f6c8c..61563aa36 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index c8d964653..45d9a2369 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index 3b7037f38..48edcce06 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 7c8394a33..938b0f1ed 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index 9ccabb05c..44598a6a5 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 912606877..ba7127247 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.7.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- Attempt to resolve relative plugin paths from extended config location [#1717](https://github.com/intuit/auto/pull/1717) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.6.0 (Mon Jan 11 2021) :tada: This release contains work from a new contributor! :tada: From c8a86748f37f397c8053fc5f29f7a4e6546bedc1 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:39:11 -0800 Subject: [PATCH 027/191] Bump version to: v10.7.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index c0f480f73..ca7614761 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.6.2", + "version": "10.7.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index d7a48569e..675c7b715 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.6.2", + "version": "10.7.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 06e3aef91..3de87983f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.6.2", + "version": "10.7.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 87982d0ef..9ab5c4da6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.6.2", + "version": "10.7.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 5b2adabf1..88ff6c8cc 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.6.2", + "version": "10.7.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 8f3140321..b375a9c38 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index a423dfdd8..e8c1ed107 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 74a4bbbce..bc6dc02ef 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 8b5a66f38..58ab5fd8e 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 8bae213a8..d81e39895 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 23457c1b6..31390d601 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 9e94666e7..be3d1a81a 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index bc478fdeb..9487578d6 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 1c8ea34e4..d4fda10dd 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 599b6c92c..55f793243 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index b2aaa4e12..524f91a11 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 5ae8bac03..3bef3fbfb 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 9f3b47139..4f33c8404 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index f80067003..9a175a5c4 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 95a3107e6..84dd7333e 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 0426ad0e8..d6f822cbd 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 61e45132a..2b7e046f7 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 20606bb22..ddc386153 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 98af35d83..ee213839d 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 4d9c222b3..edcf8bb5a 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 8c02281e3..a460fd1f7 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 5bdee37d5..1b0940597 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 14b26d095..e5b5f1f71 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index a634432bc..d07d8f0d8 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 4b6d2893a..dc720eee0 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index e86d45631..01bb79279 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.6.2", + "version": "10.7.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From e95545c4e4e6dfdf346f4e85cda0506ac1b46540 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:39:12 -0800 Subject: [PATCH 028/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 0cf196a17..43060dfb2 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.6.2/auto-macos.gz" - version "v10.6.2" - sha256 "d51dc6214cfa5f1d517428b00f7a78f78fc550b84e217798242727d13cf69171" + url "https://github.com/intuit/auto/releases/download/v10.7.0/auto-macos.gz" + version "v10.7.0" + sha256 "abd664bdfb0535df702a33c9a06f9908104da94bc44b59a66d2e79ba4b8c9d51" def install libexec.install Dir["*"] From 2c87aadbb11090daef658bd1b52743b41feebe56 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:59:50 -0800 Subject: [PATCH 029/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- plugins/cocoapods/CHANGELOG.md | 18 ++++++++++++++++++ 3 files changed, 32 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a7789814d..897514a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.8.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- `@auto-it/cocoapods` + - tap the next hook and tag prerelease versions for cocoapods [#1713](https://github.com/intuit/auto/pull/1713) ([@hborawski](https://github.com/hborawski)) + +#### Authors: 1 + +- Harris Borawski ([@hborawski](https://github.com/hborawski)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index a6657e917..5f900bce7 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.7.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.8.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index 0c13ba197..e0c6b55c2 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,21 @@ +# v10.8.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- tap the next hook and tag prerelease versions for cocoapods [#1713](https://github.com/intuit/auto/pull/1713) ([@hborawski](https://github.com/hborawski)) + +#### 🐛 Bug Fix + +- fix: push tags in next hook ([@hborawski](https://github.com/hborawski)) +- fix: actually call publish for the podspec ([@hborawski](https://github.com/hborawski)) +- tap the next hook and tag prerelease versions for cocoapods ([@hborawski](https://github.com/hborawski)) + +#### Authors: 1 + +- Harris Borawski ([@hborawski](https://github.com/hborawski)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement From 3f6c089ecb1a7a8d8bf950e7a26a874e9f99f3c6 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:59:52 -0800 Subject: [PATCH 030/191] Bump version to: v10.8.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index ca7614761..722f0d7d4 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.7.0", + "version": "10.8.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 675c7b715..e58dcc009 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.7.0", + "version": "10.8.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 3de87983f..e033ca937 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.7.0", + "version": "10.8.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 9ab5c4da6..5c81d2e30 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.7.0", + "version": "10.8.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 88ff6c8cc..16620a796 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.7.0", + "version": "10.8.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index b375a9c38..aca92809d 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index e8c1ed107..6e63d0cb3 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index bc6dc02ef..bf929e452 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 58ab5fd8e..ac5eff6a7 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index d81e39895..8ab285045 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 31390d601..c1defd0e1 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index be3d1a81a..3b87bf197 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 9487578d6..98cb90b8b 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index d4fda10dd..b2dd37de7 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 55f793243..ed913af4b 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 524f91a11..aaf9852df 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 3bef3fbfb..506447be6 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 4f33c8404..79a9feb89 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 9a175a5c4..86d18b20c 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 84dd7333e..22900c9ca 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index d6f822cbd..f0156ae2c 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 2b7e046f7..862d41c4b 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index ddc386153..8da1bb7c6 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index ee213839d..c5b3d7e81 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index edcf8bb5a..2687e226d 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index a460fd1f7..a4af4d9d2 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 1b0940597..ba4878b28 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index e5b5f1f71..90fd4ecb3 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index d07d8f0d8..64dbccca7 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index dc720eee0..b8bf031dc 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 01bb79279..dd0f4ab1e 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.7.0", + "version": "10.8.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 1f77fee99ed10b9aa7c06805d7ca84b04b9b3e34 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:59:52 -0800 Subject: [PATCH 031/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 43060dfb2..156244490 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.7.0/auto-macos.gz" - version "v10.7.0" - sha256 "abd664bdfb0535df702a33c9a06f9908104da94bc44b59a66d2e79ba4b8c9d51" + url "https://github.com/intuit/auto/releases/download/v10.8.0/auto-macos.gz" + version "v10.8.0" + sha256 "8643f67441a3ae33c78c79ee71a2b237e03dd30b47b55e791109e018a52e05ae" def install libexec.install Dir["*"] From 657205c5d2607fe28ca156226288bae2016de577 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 09:39:15 -0800 Subject: [PATCH 032/191] default `name` and `email` to the token user if no author config is found in autorc or plugin --- packages/core/src/__tests__/auto.test.ts | 4 ++++ packages/core/src/auto.ts | 7 +++--- packages/core/src/git.ts | 27 ++++++++++++++++++------ 3 files changed, 29 insertions(+), 9 deletions(-) diff --git a/packages/core/src/__tests__/auto.test.ts b/packages/core/src/__tests__/auto.test.ts index 3da7733e4..79f051c14 100644 --- a/packages/core/src/__tests__/auto.test.ts +++ b/packages/core/src/__tests__/auto.test.ts @@ -51,6 +51,10 @@ jest.mock("@octokit/rest", () => { hook = { error: () => undefined, }; + + users = { + getAuthenticated: jest.fn().mockResolvedValue({}), + }; }; return { Octokit }; diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 1b8cb03b4..d59060a11 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -1962,10 +1962,11 @@ export default class Auto { this.logger.verbose.warn( `Got author from options: email: ${email}, name ${name}` ); - const packageAuthor = await this.hooks.getAuthor.promise(); + const packageAuthor = (await this.hooks.getAuthor.promise()) || {}; + const tokenUser = await this.git?.getUser(); - email = !email && packageAuthor ? packageAuthor.email : email; - name = !name && packageAuthor ? packageAuthor.name : name; + email = email || packageAuthor.email || tokenUser?.email; + name = name || packageAuthor.name || tokenUser?.name; this.logger.verbose.warn(`Using author: ${name} <${email}>`); diff --git a/packages/core/src/git.ts b/packages/core/src/git.ts index c14bd4ca7..82204b6ef 100644 --- a/packages/core/src/git.ts +++ b/packages/core/src/git.ts @@ -49,7 +49,11 @@ export interface IGitOptions { /** An error originating from the GitHub */ class GitAPIError extends Error { /** Extend the base error */ - constructor(api: string, args: Record | unknown[], origError: Error) { + constructor( + api: string, + args: Record | unknown[], + origError: Error + ) { super( `Error calling github: ${api}\n\twith: ${JSON.stringify(args)}.\n\t${ origError.message @@ -219,7 +223,11 @@ export default class Git { /** Get the first commit for the repo */ async getFirstCommit(): Promise { - const list = await execPromise("git", ["rev-list", "--max-parents=0", "HEAD"]); + const list = await execPromise("git", [ + "rev-list", + "--max-parents=0", + "HEAD", + ]); return list.split("\n").pop() as string; } @@ -428,10 +436,17 @@ export default class Git { } } + /** Get the users associated with the GH_TOKEN */ + @memoize() + async getUser() { + const [, user] = await on(this.github.users.getAuthenticated()) || {}; + return user?.data; + } + /** Get collaborator permission level to the repo. */ @memoize() async getTokenPermissionLevel() { - const [, user] = await on(this.github.users.getAuthenticated()); + const user = await this.getUser() if (!user) { return { @@ -444,14 +459,14 @@ export default class Git { await this.github.repos.getCollaboratorPermissionLevel({ owner: this.options.owner, repo: this.options.repo, - username: user.data.login, + username: user.login, }) ).data; - return { permission, user: user.data }; + return { permission, user }; } catch (error) { this.logger.verbose.error(`Could not get permissions for token`); - return { permission: "read", user: user.data }; + return { permission: "read", user }; } } From 368900b49503da1d5c3d6749934d335b7e7d86ea Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 10:39:35 -0800 Subject: [PATCH 033/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/core/CHANGELOG.md | 16 ++++++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++++++ plugins/cocoapods/CHANGELOG.md | 12 ++++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 12 ++++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++++++ plugins/released/CHANGELOG.md | 12 ++++++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++++++ 30 files changed, 354 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 897514a26..71a1bc627 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- `@auto-it/core` + - default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.8.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 5f900bce7..ad49fc303 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.8.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.9.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7d46ef238..f75a435c0 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 243f3ec21..98773906e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- default `name` and `email` to the token user if no author config is found in autorc or plugin ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index c284acd65..3fd423cfd 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index 9bbde7984..acd075d06 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index 5e240d86a..04b783a2f 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index e0c6b55c2..31112a2f7 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.8.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index 886a32cc1..d7a6ad7fd 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index 371b66732..b3d6284bc 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index 324b44c4b..2832d9e63 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index 81e84d8bc..fb0235e83 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index 8c002abf8..fddea0ba8 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index becd525e1..0905dbc5d 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index 7e6644694..29e15dae1 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 4184435a5..10f6abc83 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index b22f9869d..55222b2d3 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index b6c660145..644490cbd 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index 4ad7ba615..28a4d6507 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 8617881b5..222673613 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index d264220c5..d6ecc4937 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index b75e9f495..10cd2a16a 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index 2a8eb80f3..b107c88aa 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index fffd25f3f..eb5a888ea 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index 61563aa36..833a4ab33 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index 45d9a2369..9ba76cc71 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index 48edcce06..f6dedd67a 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 938b0f1ed..b30620010 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index 44598a6a5..b12b34344 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index ba7127247..5c82268b4 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.9.0 (Thu Jan 14 2021) + +#### 🚀 Enhancement + +- default `name` and `email` to the token user if no author config is found in autorc or plugin [#1720](https://github.com/intuit/auto/pull/1720) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.7.0 (Thu Jan 14 2021) #### 🚀 Enhancement From 1e54fbdb8864d5fd2e3e32b8f41e2f07b1f886d9 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 10:39:37 -0800 Subject: [PATCH 034/191] Bump version to: v10.9.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 722f0d7d4..81869f99c 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.8.0", + "version": "10.9.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index e58dcc009..641fd4f0b 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.8.0", + "version": "10.9.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index e033ca937..5d2a660db 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.8.0", + "version": "10.9.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 5c81d2e30..efcf7be09 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.8.0", + "version": "10.9.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 16620a796..64f18bfab 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.8.0", + "version": "10.9.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index aca92809d..b942d7a2e 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 6e63d0cb3..217cd49fb 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index bf929e452..bc7599c5b 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index ac5eff6a7..4bef38e17 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 8ab285045..30c07c2e1 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index c1defd0e1..d0305e87e 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 3b87bf197..4d36e3120 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 98cb90b8b..27f4763e4 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index b2dd37de7..45bda71bc 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index ed913af4b..d3852cfe7 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index aaf9852df..70bbdce4a 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 506447be6..707dd758a 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 79a9feb89..1ca452ebb 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 86d18b20c..2e09b95b3 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 22900c9ca..05e3f0213 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index f0156ae2c..ec92ee87c 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 862d41c4b..07dea0027 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 8da1bb7c6..218f551f2 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index c5b3d7e81..ca48caa76 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 2687e226d..06449c438 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index a4af4d9d2..8d9210d24 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index ba4878b28..8fc9adc80 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 90fd4ecb3..21652e1e6 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 64dbccca7..5f87ec6f8 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index b8bf031dc..c5220e5dc 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index dd0f4ab1e..52744fe90 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.8.0", + "version": "10.9.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From a105737e5789928d9337fdebdfbe3924b38978b5 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 10:39:38 -0800 Subject: [PATCH 035/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 156244490..8496f92c9 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.8.0/auto-macos.gz" - version "v10.8.0" - sha256 "8643f67441a3ae33c78c79ee71a2b237e03dd30b47b55e791109e018a52e05ae" + url "https://github.com/intuit/auto/releases/download/v10.9.0/auto-macos.gz" + version "v10.9.0" + sha256 "00a45a8316376841ce51feae5705c3247bc9cd1459289ef7d950983793eabf71" def install libexec.install Dir["*"] From a66254b998a66cc68f0c17c7bb86b380250dec0f Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 12:04:23 -0800 Subject: [PATCH 036/191] take into account labels on next branch PRs --- .../core/src/__tests__/auto-in-pr-ci.test.ts | 20 +++++++++++++++++ packages/core/src/auto.ts | 22 ++++++++++++++++++- packages/core/src/git.ts | 2 +- 3 files changed, 42 insertions(+), 2 deletions(-) diff --git a/packages/core/src/__tests__/auto-in-pr-ci.test.ts b/packages/core/src/__tests__/auto-in-pr-ci.test.ts index 137af39d9..49ed39ffa 100644 --- a/packages/core/src/__tests__/auto-in-pr-ci.test.ts +++ b/packages/core/src/__tests__/auto-in-pr-ci.test.ts @@ -222,4 +222,24 @@ describe("next in ci", () => { `, }); }); + + test("should use labels on next branch PR", async () => { + const auto = new Auto({ ...defaults, plugins: [] }); + + auto.logger = dummyLog(); + await auto.loadConfig(); + + // @ts-ignore + auto.inPrereleaseBranch = () => true; + // @ts-ignore + jest.spyOn(console, "log").mockImplementation(); + auto.git!.getLatestTagInBranch = () => Promise.resolve("1.4.0-next.0"); + auto.release!.getSemverBump = () => Promise.resolve(SEMVER.patch); + + auto.git!.getLabels = () => Promise.resolve([]); + expect(await auto.getVersion()).toBe(SEMVER.prepatch); + + auto.git!.getLabels = () => Promise.resolve([SEMVER.major]); + expect(await auto.getVersion()).toBe(SEMVER.premajor); + }); }); diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index d59060a11..24c4e283c 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -1700,7 +1700,27 @@ export default class Auto { from || (isPrerelease && (await this.git.getLatestTagInBranch())) || (await this.git.getLatestRelease()); - const calculatedBump = await this.release.getSemverBump(lastRelease); + let calculatedBump = await this.release.getSemverBump(lastRelease); + + // For next releases we also want to take into account any labels on + // the PR of next into main + if (isPrerelease) { + const pr = getPrNumberFromEnv(); + + if (pr && this.semVerLabels) { + const prLabels = await this.git.getLabels(pr); + this.logger.verbose.info( + `Found labels on prerelease branch PR`, + prLabels + ); + calculatedBump = calculateSemVerBump( + [prLabels, [calculatedBump]], + this.semVerLabels, + this.config + ); + } + } + const bump = (isPrerelease && preVersionMap.get(calculatedBump)) || calculatedBump; diff --git a/packages/core/src/git.ts b/packages/core/src/git.ts index 82204b6ef..a8da2170a 100644 --- a/packages/core/src/git.ts +++ b/packages/core/src/git.ts @@ -256,7 +256,7 @@ export default class Git { /** Get the labels for a PR */ @memoize() - async getLabels(prNumber: number) { + async getLabels(prNumber: number): Promise { this.logger.verbose.info(`Getting labels for PR: ${prNumber}`); const args: RestEndpointMethodTypes["issues"]["listLabelsOnIssue"]["parameters"] = { From 436eb49a471fb6c9eed0f9ad1e4cd1723a25e866 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 13:05:28 -0800 Subject: [PATCH 037/191] if canary PR detected get it's labels --- packages/core/src/__tests__/auto-in-pr-ci.test.ts | 4 ++++ packages/core/src/__tests__/auto.test.ts | 4 ++++ packages/core/src/auto.ts | 10 ++++++++++ 3 files changed, 18 insertions(+) diff --git a/packages/core/src/__tests__/auto-in-pr-ci.test.ts b/packages/core/src/__tests__/auto-in-pr-ci.test.ts index 49ed39ffa..a9a834424 100644 --- a/packages/core/src/__tests__/auto-in-pr-ci.test.ts +++ b/packages/core/src/__tests__/auto-in-pr-ci.test.ts @@ -36,6 +36,10 @@ jest.mock("@octokit/rest", () => { get: jest.fn().mockReturnValue({}), }; + issues = { + listLabelsOnIssue: jest.fn().mockReturnValue({ data: []}), + }; + hook = { error: () => undefined, }; diff --git a/packages/core/src/__tests__/auto.test.ts b/packages/core/src/__tests__/auto.test.ts index 79f051c14..31e185e46 100644 --- a/packages/core/src/__tests__/auto.test.ts +++ b/packages/core/src/__tests__/auto.test.ts @@ -52,6 +52,10 @@ jest.mock("@octokit/rest", () => { error: () => undefined, }; + issues = { + listLabelsOnIssue: jest.fn().mockReturnValue({ data: [] }), + }; + users = { getAuthenticated: jest.fn().mockResolvedValue({}), }; diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 24c4e283c..74a1c7c54 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -1159,6 +1159,7 @@ export default class Auto { } /** Create a canary (or test) version of the project */ + // eslint-disable-next-line complexity async canary(args: ICanaryOptions = {}): Promise { const options = { ...this.getCommandDefault("canary"), ...args }; @@ -1187,7 +1188,16 @@ export default class Auto { const from = (await this.git.shaExists("HEAD^")) ? "HEAD^" : "HEAD"; const commitsInRelease = await this.release.getCommitsInRelease(from); + + this.logger.veryVerbose.info('Found commits in canary release', commitsInRelease); + const labels = commitsInRelease.map((commit) => commit.labels); + + if (pr) { + const prLabels = await this.git.getLabels(Number(pr)); + labels.push(prLabels); + } + let bump = calculateSemVerBump(labels, this.semVerLabels!, this.config); if (bump === SEMVER.noVersion) { From 2ddae336e24faafd31a7f766cedeb046d91a221f Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 14:15:18 -0800 Subject: [PATCH 038/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/core/CHANGELOG.md | 14 ++++++++++++++ 3 files changed, 28 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71a1bc627..1d44ea9e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.9.1 (Thu Jan 14 2021) + +#### 🐛 Bug Fix + +- `@auto-it/core` + - take into account labels on next+canary PRs [#1722](https://github.com/intuit/auto/pull/1722) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index ad49fc303..062e659b3 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.9.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.9.1/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 98773906e..d7ad80596 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,17 @@ +# v10.9.1 (Thu Jan 14 2021) + +#### 🐛 Bug Fix + +- take into account labels on next+canary PRs [#1722](https://github.com/intuit/auto/pull/1722) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- if canary PR detected get it's labels ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- take into account labels on next branch PRs ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement From 7bea8d6b779984a6b5e5825af2c4a93ed48a071b Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 14:15:20 -0800 Subject: [PATCH 039/191] Bump version to: v10.9.1 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 81869f99c..d66fdf908 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.9.0", + "version": "10.9.1", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 641fd4f0b..e69cf266a 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.9.0", + "version": "10.9.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 5d2a660db..99bc39500 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.9.0", + "version": "10.9.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index efcf7be09..ad7d1c17d 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.9.0", + "version": "10.9.1", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 64f18bfab..28e402b1b 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.9.0", + "version": "10.9.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index b942d7a2e..f664ec655 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 217cd49fb..2b1fc64a0 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index bc7599c5b..058cbca59 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 4bef38e17..cb75ef939 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 30c07c2e1..966974c07 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index d0305e87e..ac5e76514 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 4d36e3120..63c9bb4a8 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 27f4763e4..7e4403134 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 45bda71bc..56d4d67e7 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index d3852cfe7..9bdbaf4aa 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 70bbdce4a..de5f7920e 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 707dd758a..5b3c12d2e 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 1ca452ebb..3e014e9d0 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 2e09b95b3..aa647ba99 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 05e3f0213..c3e9aedf4 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index ec92ee87c..698fa28de 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 07dea0027..950030a9d 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 218f551f2..4c9a78e07 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index ca48caa76..2cb128115 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 06449c438..d3df53dfa 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 8d9210d24..446b1ed8a 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 8fc9adc80..57ca3a927 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 21652e1e6..41076f455 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 5f87ec6f8..ef1bb3c23 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index c5220e5dc..4756795f2 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 52744fe90..5fc0e92a4 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.9.0", + "version": "10.9.1", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From c8ea512ecdad242a62edb81e914f93ef7bff1f58 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 14 Jan 2021 14:15:20 -0800 Subject: [PATCH 040/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 8496f92c9..5bc3d9f17 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.9.0/auto-macos.gz" - version "v10.9.0" - sha256 "00a45a8316376841ce51feae5705c3247bc9cd1459289ef7d950983793eabf71" + url "https://github.com/intuit/auto/releases/download/v10.9.1/auto-macos.gz" + version "v10.9.1" + sha256 "46f7ce62635165755faefbfd99ed6ba38c02e39883d3e31ac52dfb6d587dcf2c" def install libexec.install Dir["*"] From f06c87080354d742d9d45f5035935a6bcb31ec73 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Fri, 15 Jan 2021 23:23:20 -0800 Subject: [PATCH 041/191] enable canary releases for upload-assets plugin --- package.json | 16 +- packages/cli/auto | 0 plugins/upload-assets/README.md | 26 +- .../__tests__/upload-assets-ci.test.ts | 70 ++++ .../__tests__/upload-assets.test.ts | 321 +++++++++++++++++- plugins/upload-assets/package.json | 1 + plugins/upload-assets/src/index.ts | 312 +++++++++++++---- 7 files changed, 663 insertions(+), 83 deletions(-) delete mode 100644 packages/cli/auto create mode 100644 plugins/upload-assets/__tests__/upload-assets-ci.test.ts diff --git a/package.json b/package.json index 9b29b1873..ab9989910 100644 --- a/package.json +++ b/package.json @@ -134,6 +134,14 @@ }, "auto": { "plugins": [ + [ + "upload-assets", + [ + "./packages/cli/binary/auto-linux.gz", + "./packages/cli/binary/auto-macos.gz", + "./packages/cli/binary/auto-win.exe.gz" + ] + ], [ "npm", { @@ -158,14 +166,6 @@ } } ], - [ - "upload-assets", - [ - "./packages/cli/binary/auto-linux.gz", - "./packages/cli/binary/auto-macos.gz", - "./packages/cli/binary/auto-win.exe.gz" - ] - ], [ "brew", { diff --git a/packages/cli/auto b/packages/cli/auto deleted file mode 100644 index e69de29bb..000000000 diff --git a/plugins/upload-assets/README.md b/plugins/upload-assets/README.md index 8f6bdea22..662dac7e1 100644 --- a/plugins/upload-assets/README.md +++ b/plugins/upload-assets/README.md @@ -1,6 +1,10 @@ # Upload Assets Plugin -Upload assets to the release. Good for executables and extra downloadable files. +Upload assets to the release. +Good for executables and extra downloadable files. +Also supports canaries! + +> NOTE: For canaries to work this plugin must be listed before any other publishing plugin. ## Installation @@ -27,3 +31,23 @@ Simply supply the paths to the assets to add to the release. ] } ``` + +## Options + +### `maxCanaryAssets` + +Max number of assets to keep in the canary release. + +```json +{ + "plugins": [ + [ + "upload-assets", + { + "assets": ["./path/to/file"], + "maxAssets": 100 + } + ] + ] +} +``` diff --git a/plugins/upload-assets/__tests__/upload-assets-ci.test.ts b/plugins/upload-assets/__tests__/upload-assets-ci.test.ts new file mode 100644 index 000000000..18dbb7d6f --- /dev/null +++ b/plugins/upload-assets/__tests__/upload-assets-ci.test.ts @@ -0,0 +1,70 @@ +import envCi from "env-ci"; + +jest.mock("env-ci"); + +const envSpy = envCi as jest.Mock; +envSpy.mockImplementation(() => ({ + isCi: true, + pr: 123, +})); + +import Auto, { SEMVER } from "@auto-it/core"; +import { makeHooks } from "@auto-it/core/dist/utils/make-hooks"; +import path from "path"; + +import { dummyLog } from "@auto-it/core/dist/utils/logger"; +import UploadAssets from "../src"; +import endent from "endent"; + +const options = { + owner: "test", + repo: "repo", +}; + +jest.spyOn(console, "log").mockImplementation(); + +describe("Upload Assets Plugin", () => { + test("should add to pr body for pull requests", async () => { + const plugin = new UploadAssets([ + path.join(__dirname, "./test-assets/macos"), + ]); + const hooks = makeHooks(); + const uploadReleaseAsset = jest + .fn() + .mockImplementation(({ name }) => + Promise.resolve({ + data: { id: 2, name, browser_download_url: `http://${name}` }, + }) + ); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + const addToPrBody = jest.fn(); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + addToPrBody, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, + } as unknown) as Auto); + + await hooks.canary.promise({ + canaryIdentifier: "canary.123", + bump: SEMVER.patch, + }); + + expect(addToPrBody).toHaveBeenCalledWith( + endent` + :baby_chick: Download canary assets: + + [macos-canary.123](http://macos-canary.123) + `, + 123, + "canary-assets" + ); + }); +}); diff --git a/plugins/upload-assets/__tests__/upload-assets.test.ts b/plugins/upload-assets/__tests__/upload-assets.test.ts index e7a18a54d..18f3e9624 100644 --- a/plugins/upload-assets/__tests__/upload-assets.test.ts +++ b/plugins/upload-assets/__tests__/upload-assets.test.ts @@ -1,4 +1,13 @@ -import Auto from "@auto-it/core"; +import envCi from "env-ci"; + +jest.mock("env-ci"); + +const envSpy = envCi as jest.Mock; +envSpy.mockImplementation(() => ({ + isCi: false, +})); + +import Auto, { SEMVER } from "@auto-it/core"; import { makeHooks } from "@auto-it/core/dist/utils/make-hooks"; import { RestEndpointMethodTypes } from "@octokit/rest"; import path from "path"; @@ -11,18 +20,27 @@ const options = { repo: "repo", }; +jest.spyOn(console, "log").mockImplementation(); + describe("Upload Assets Plugin", () => { test("should do nothing without a response", async () => { const plugin = new UploadAssets([ path.join(__dirname, "./test-assets/macos"), ]); const hooks = makeHooks(); - const uploadReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); plugin.apply(({ hooks, logger: dummyLog(), - git: { options, github: { repos: { uploadReleaseAsset } } }, + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, } as unknown) as Auto); await hooks.afterRelease.promise({ @@ -40,12 +58,19 @@ describe("Upload Assets Plugin", () => { path.join(__dirname, "./test-assets/macos"), ]); const hooks = makeHooks(); - const uploadReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); plugin.apply(({ hooks, logger: dummyLog(), - git: { options, github: { repos: { uploadReleaseAsset } } }, + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, } as unknown) as Auto); await hooks.afterRelease.promise({ @@ -70,19 +95,167 @@ describe("Upload Assets Plugin", () => { ); }); + test("should upload a single canary asset", async () => { + const plugin = new UploadAssets([ + path.join(__dirname, "./test-assets/macos"), + ]); + const hooks = makeHooks(); + const uploadReleaseAsset = jest + .fn() + .mockImplementation(({ name }) => + Promise.resolve({ data: { id: 2, name } }) + ); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, + } as unknown) as Auto); + + await hooks.canary.promise({ + canaryIdentifier: "canary.123", + bump: SEMVER.patch, + }); + + expect(uploadReleaseAsset).toHaveBeenCalledWith( + expect.objectContaining({ + name: "macos-canary.123", + release_id: 1, + }) + ); + }); + + test("should use canary release if exists", async () => { + const plugin = new UploadAssets([ + path.join(__dirname, "./test-assets/macos"), + ]); + const hooks = makeHooks(); + const uploadReleaseAsset = jest + .fn() + .mockImplementation(({ name }) => + Promise.resolve({ data: { id: 2, name } }) + ); + const getReleaseByTag = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, getReleaseByTag }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, + } as unknown) as Auto); + + await hooks.canary.promise({ + canaryIdentifier: "canary.123", + bump: SEMVER.patch, + }); + + expect(uploadReleaseAsset).toHaveBeenCalledWith( + expect.objectContaining({ + name: "macos-canary.123", + release_id: 1, + }) + ); + }); + + test("should not upload a canary asset in dryRun", async () => { + const plugin = new UploadAssets([ + path.join(__dirname, "./test-assets/macos"), + ]); + const hooks = makeHooks(); + const uploadReleaseAsset = jest + .fn() + .mockImplementation(({ name }) => + Promise.resolve({ data: { id: 2, name } }) + ); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, + } as unknown) as Auto); + + await hooks.canary.promise({ + canaryIdentifier: "canary.123", + bump: SEMVER.patch, + dryRun: true + }); + + expect(uploadReleaseAsset).not.toHaveBeenCalled(); + }); + + test("should upload a single canary asset with extension", async () => { + const plugin = new UploadAssets([ + path.join(__dirname, "./test-assets/test.txt"), + ]); + const hooks = makeHooks(); + const uploadReleaseAsset = jest + .fn() + .mockImplementation(({ name }) => + Promise.resolve({ data: { id: 2, name } }) + ); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, + } as unknown) as Auto); + + await hooks.canary.promise({ + canaryIdentifier: "canary.123", + bump: SEMVER.patch, + }); + + expect(uploadReleaseAsset).toHaveBeenCalledWith( + expect.objectContaining({ + name: "test-canary.123.txt", + release_id: 1, + }) + ); + }); + test("should upload to enterprise", async () => { const plugin = new UploadAssets([ path.join(__dirname, "./test-assets/macos"), ]); const hooks = makeHooks(); - const uploadReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); plugin.apply(({ hooks, logger: dummyLog(), git: { options: { ...options, baseUrl: "https://github.my.com/api/v3" }, - github: { repos: { uploadReleaseAsset } }, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, }, } as unknown) as Auto); @@ -117,12 +290,19 @@ describe("Upload Assets Plugin", () => { ], }); const hooks = makeHooks(); - const uploadReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); plugin.apply(({ hooks, logger: dummyLog(), - git: { options, github: { repos: { uploadReleaseAsset } } }, + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, } as unknown) as Auto); await hooks.afterRelease.promise({ @@ -143,12 +323,19 @@ describe("Upload Assets Plugin", () => { assets: [path.join(__dirname, "./test-assets/test*.txt")], }); const hooks = makeHooks(); - const uploadReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); plugin.apply(({ hooks, logger: dummyLog(), - git: { options, github: { repos: { uploadReleaseAsset } } }, + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease }, + paginate: jest.fn().mockResolvedValue([]), + }, + }, } as unknown) as Auto); await hooks.afterRelease.promise({ @@ -169,4 +356,116 @@ describe("Upload Assets Plugin", () => { expect.objectContaining({ name: "test.txt" }) ); }); + + test("should not delete maxAssets", async () => { + const plugin = new UploadAssets({ + assets: [ + path.join(__dirname, "./test-assets/macos"), + path.join(__dirname, "./test-assets/test.txt"), + ], + }); + const hooks = makeHooks(); + const deleteReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease, deleteReleaseAsset }, + paginate: jest.fn().mockResolvedValue(new Array(300).fill({})), + }, + }, + } as unknown) as Auto); + + await hooks.afterRelease.promise({ + newVersion: "1.0.0", + lastRelease: "0.1.0", + commits: [], + releaseNotes: "", + response: { + data: { upload_url: "https://foo.com" }, + } as RestEndpointMethodTypes["repos"]["createRelease"]["response"], + }); + + expect(deleteReleaseAsset).not.toHaveBeenCalled(); + }); + + test("should delete old canary assets", async () => { + const plugin = new UploadAssets({ + assets: [ + path.join(__dirname, "./test-assets/macos"), + path.join(__dirname, "./test-assets/test.txt"), + ], + }); + const hooks = makeHooks(); + const deleteReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease, deleteReleaseAsset }, + paginate: jest.fn().mockResolvedValue(new Array(303).fill({})), + }, + }, + } as unknown) as Auto); + + await hooks.afterRelease.promise({ + newVersion: "1.0.0", + lastRelease: "0.1.0", + commits: [], + releaseNotes: "", + response: { + data: { upload_url: "https://foo.com" }, + } as RestEndpointMethodTypes["repos"]["createRelease"]["response"], + }); + + expect(deleteReleaseAsset).toHaveBeenCalledTimes(3); + }); + + test("should ba able to configure max assets", async () => { + const plugin = new UploadAssets({ + maxCanaryAssets: 100, + assets: [ + path.join(__dirname, "./test-assets/macos"), + path.join(__dirname, "./test-assets/test.txt"), + ], + }); + const hooks = makeHooks(); + const deleteReleaseAsset = jest.fn(); + const uploadReleaseAsset = jest.fn().mockResolvedValue({}); + const createRelease = jest.fn().mockResolvedValue({ data: { id: 1 } }); + + plugin.apply(({ + hooks, + logger: dummyLog(), + git: { + options, + github: { + repos: { uploadReleaseAsset, createRelease, deleteReleaseAsset }, + paginate: jest.fn().mockResolvedValue(new Array(300).fill({})), + }, + }, + } as unknown) as Auto); + + await hooks.afterRelease.promise({ + newVersion: "1.0.0", + lastRelease: "0.1.0", + commits: [], + releaseNotes: "", + response: { + data: { upload_url: "https://foo.com" }, + } as RestEndpointMethodTypes["repos"]["createRelease"]["response"], + }); + + expect(deleteReleaseAsset).toHaveBeenCalledTimes(200); + }); }); diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 4756795f2..7e633ab74 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -44,6 +44,7 @@ "file-type": "^16.0.0", "fp-ts": "^2.5.3", "io-ts": "^2.1.2", + "terminal-link": "^2.1.1", "tslib": "2.0.3" }, "devDependencies": { diff --git a/plugins/upload-assets/src/index.ts b/plugins/upload-assets/src/index.ts index ea2fd11f7..0e0954aca 100644 --- a/plugins/upload-assets/src/index.ts +++ b/plugins/upload-assets/src/index.ts @@ -1,38 +1,68 @@ import { RestEndpointMethodTypes } from "@octokit/rest"; -import { Auto, IPlugin, validatePluginConfiguration } from "@auto-it/core"; +import { + Auto, + getPrNumberFromEnv, + IPlugin, + validatePluginConfiguration, +} from "@auto-it/core"; import endent from "endent"; import * as FileType from "file-type"; import fs from "fs"; import glob from "fast-glob"; import path from "path"; import { promisify } from "util"; +import link from "terminal-link"; import * as t from "io-ts"; +type AssetResponse = RestEndpointMethodTypes["repos"]["uploadReleaseAsset"]["response"]["data"]; + const stat = promisify(fs.stat); const readFile = promisify(fs.readFile); -const pluginOptions = t.interface({ +const requiredPluginOptions = t.interface({ /** Paths to assets to upload */ assets: t.array(t.string), }); +const optionalPluginOptions = t.partial({ + /** Max number of assets to keep in the canary release */ + maxCanaryAssets: t.number, +}); + +const pluginOptions = t.intersection([ + requiredPluginOptions, + optionalPluginOptions, +]); + /** Convert shorthand options to noraml shape */ const normalizeOptions = (options: IUploadAssetsPluginOptions | string[]) => Array.isArray(options) ? { assets: options } : options; export type IUploadAssetsPluginOptions = t.TypeOf; +interface Release { + /** The response data */ + data: { + /** the release id */ + id: number; + }; +} + /** Attach extra assets to a GitHub Release */ export default class UploadAssetsPlugin implements IPlugin { /** The name of the plugin */ name = "upload-assets"; /** The options of the plugin */ - readonly options: IUploadAssetsPluginOptions; + readonly options: Required; /** Initialize the plugin with it's options */ constructor(options: IUploadAssetsPluginOptions | string[]) { - this.options = normalizeOptions(options); + const normalizedOptions = normalizeOptions(options); + this.options = { + ...normalizedOptions, + maxCanaryAssets: normalizedOptions.maxCanaryAssets || 300, + }; } /** Tap into auto plugin points. */ @@ -47,66 +77,222 @@ export default class UploadAssetsPlugin implements IPlugin { } }); + auto.hooks.canary.tapPromise( + this.name, + async ({ canaryIdentifier, dryRun }) => { + const canaryRelease = await this.getCanaryGitHubRelease(auto); + + auto.logger.log.info(endent`${ + dryRun ? "Would update" : "Updating" + } Canary Release: + + ${canaryRelease.html_url} + `); + + const assets = await this.uploadAssets( + auto, + { data: canaryRelease }, + dryRun, + canaryIdentifier + ); + + if (!assets.length) { + return; + } + + auto.logger.log.success(endent` + Download canary assets: + + ${assets + .map((asset) => link(asset.name, asset.browser_download_url)) + .join(" \n")} + `); + + const prNumber = getPrNumberFromEnv(); + + if (!prNumber) { + return; + } + + const assetList = assets + .map((asset) => `[${asset.name}](${asset.browser_download_url}) `) + .join("\n"); + + await auto.git?.addToPrBody( + endent` + :baby_chick: Download canary assets: + + ${assetList} + `, + prNumber, + "canary-assets" + ); + } + ); + auto.hooks.afterRelease.tapPromise(this.name, async ({ response }) => { - const assets = await glob(this.options.assets); - - auto.logger.log.info(endent` - Uploading: - - ${assets.map((asset) => `\t- ${asset}`).join("\n")} - - `); - - await Promise.all( - assets.map(async (asset) => { - if (!auto.git || !response) { - return; - } - - const file = await readFile(asset); - const stats = await stat(asset); - const type = await FileType.fromBuffer(file); - - const DEFAULT_BASE_URL = "https://api.github.com"; - const baseUrl = auto.git.options.baseUrl || DEFAULT_BASE_URL; - const options: RestEndpointMethodTypes['repos']['uploadReleaseAsset']['parameters'] = { - // placeholder to appease typescript - release_id: -1, - data: (file as unknown) as string, - name: path.basename(asset), - owner: auto.git.options.owner, - repo: auto.git.options.repo, - headers: { - "content-length": stats.size, - "content-type": type ? type.mime : "application/octet-stream", - }, - }; - - if (baseUrl !== DEFAULT_BASE_URL) { - const { origin } = new URL(baseUrl); - options.baseUrl = `${origin}/api/uploads`; - } - - // Multiple releases were made - if (Array.isArray(response)) { - await Promise.all( - response.map((r) => - auto.git!.github.repos.uploadReleaseAsset({ - ...options, - release_id: r.data.id, - }) - ) - ); - } else { - await auto.git.github.repos.uploadReleaseAsset({ - ...options, - release_id: response.data.id, - }); - } - - auto.logger.log.success(`Uploaded asset: ${asset}`); - }) - ); + if (!response) { + return; + } + + await this.uploadAssets(auto, response); + await this.cleanupCanaryAssets(auto); }); } + + /** Upload the configured asset to a release */ + private async uploadAssets( + auto: Auto, + release: Release | Release[], + dryRun = false, + id?: string + ) { + const assets = await glob(this.options.assets); + + auto.logger.log.info(endent` + ${dryRun ? "Would upload" : "Uploading"}: + + ${assets.map((asset) => ` - ${asset}`).join("\n")} + `); + console.log(""); + + if (dryRun) { + return []; + } + + const responses = await Promise.all( + assets.map(async (asset) => { + if (!auto.git) { + return; + } + + const file = await readFile(asset); + const stats = await stat(asset); + const type = await FileType.fromBuffer(file); + + const DEFAULT_BASE_URL = "https://api.github.com"; + const baseUrl = auto.git.options.baseUrl || DEFAULT_BASE_URL; + const fileName = path.basename(asset); + const extension = path.extname(fileName); + const options: RestEndpointMethodTypes["repos"]["uploadReleaseAsset"]["parameters"] = { + // placeholder to appease typescript + release_id: -1, + data: (file as unknown) as string, + name: id + ? extension + ? fileName.replace(extension, `-${id}${extension}`) + : `${fileName}-${id}` + : fileName, + owner: auto.git.options.owner, + repo: auto.git.options.repo, + headers: { + "content-length": stats.size, + "content-type": type ? type.mime : "application/octet-stream", + }, + }; + + if (baseUrl !== DEFAULT_BASE_URL) { + const { origin } = new URL(baseUrl); + options.baseUrl = `${origin}/api/uploads`; + } + + const assetResponses: AssetResponse[] = []; + + // Multiple releases were made + if (Array.isArray(release)) { + await Promise.all( + release.map(async (r) => { + const { + data: releaseAsset, + } = await auto.git!.github.repos.uploadReleaseAsset({ + ...options, + release_id: r.data.id, + }); + + assetResponses.push(releaseAsset); + }) + ); + } else { + const { + data: releaseAsset, + } = await auto.git.github.repos.uploadReleaseAsset({ + ...options, + release_id: release.data.id, + }); + + assetResponses.push(releaseAsset); + } + + auto.logger.log.success(`Uploaded asset: ${asset}`); + return assetResponses; + }) + ); + + return responses + .filter((r): r is AssetResponse[] => Boolean(r)) + .reduce((acc, item) => [...acc, ...item], []); + } + + /** Get the release all the canaries are stored in */ + private async getCanaryGitHubRelease(auto: Auto) { + try { + const canaryRelease = await auto.git!.github.repos.getReleaseByTag({ + repo: auto.git!.options.repo, + owner: auto.git!.options.owner, + tag: "canary", + }); + + return canaryRelease.data; + } catch (error) { + const canaryRelease = await auto.git!.github.repos.createRelease({ + repo: auto.git!.options.repo, + owner: auto.git!.options.owner, + tag_name: "canary", + prerelease: true, + body: `This release contains preview assets of Pull Requests.`, + }); + + return canaryRelease.data; + } + } + + /** Delete old canary asset */ + private async cleanupCanaryAssets(auto: Auto) { + const canaryRelease = await this.getCanaryGitHubRelease(auto); + const canaryReleaseAssets = await auto.git!.github.paginate( + auto.git!.github.repos.listReleaseAssets, + { + repo: auto.git!.options.repo, + owner: auto.git!.options.owner, + release_id: canaryRelease.id, + } + ); + const assetsToDelete = canaryReleaseAssets + .sort( + (a, b) => + new Date(a.created_at).getTime() - new Date(b.created_at).getTime() + ) + .slice(0, canaryReleaseAssets.length - this.options.maxCanaryAssets); + + if (!assetsToDelete.length) { + return; + } + + auto.logger.log.info(endent` + Deleting old canary assets: + + ${assetsToDelete.map((asset) => ` - ${asset}`).join("\n")} + `); + + await Promise.all( + assetsToDelete.map(async (assetToDelete) => { + await auto.git!.github.repos.deleteReleaseAsset({ + repo: auto.git!.options.repo, + owner: auto.git!.options.owner, + release_id: canaryRelease.id, + asset_id: assetToDelete.id, + }); + }) + ); + } } From c708200b779d491deb6b2b104b8018e7a0d00870 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sat, 16 Jan 2021 11:18:51 -0800 Subject: [PATCH 042/191] add link --- plugins/git-tag/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/plugins/git-tag/README.md b/plugins/git-tag/README.md index f2329e75c..79d11cf6e 100644 --- a/plugins/git-tag/README.md +++ b/plugins/git-tag/README.md @@ -39,3 +39,8 @@ Simply add the plugins to your auto configuration. "plugins": ["git-tag"] } ``` + +## Canary Releases + +This plugin does not support canaries. +For canary support try using [the upload-assets plugin](./upload-assets) From eea5bd4c12cd1c0817e9e248f1f919bd45b16176 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sat, 16 Jan 2021 11:25:46 -0800 Subject: [PATCH 043/191] set title on canary release --- plugins/upload-assets/src/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/upload-assets/src/index.ts b/plugins/upload-assets/src/index.ts index 0e0954aca..9683eb5e5 100644 --- a/plugins/upload-assets/src/index.ts +++ b/plugins/upload-assets/src/index.ts @@ -248,6 +248,7 @@ export default class UploadAssetsPlugin implements IPlugin { repo: auto.git!.options.repo, owner: auto.git!.options.owner, tag_name: "canary", + name: "Canary Assets", prerelease: true, body: `This release contains preview assets of Pull Requests.`, }); From 22e2b5f80c8751d4d0017b0699445b9eea0e2cd2 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sat, 16 Jan 2021 11:39:04 -0800 Subject: [PATCH 044/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 18 ++++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 16 ++++++++++++++++ plugins/git-tag/CHANGELOG.md | 16 ++++++++++++++++ plugins/upload-assets/CHANGELOG.md | 18 ++++++++++++++++++ 5 files changed, 69 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d44ea9e2..6e6f45345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# v10.10.0 (Sat Jan 16 2021) + +#### 🚀 Enhancement + +- `auto`, `@auto-it/git-tag`, `@auto-it/upload-assets` + - enable canary releases for upload-assets plugin [#1725](https://github.com/intuit/auto/pull/1725) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- `@auto-it/upload-assets` + - set title on canary release [#1726](https://github.com/intuit/auto/pull/1726) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.1 (Thu Jan 14 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 062e659b3..6cc62c03f 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.9.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.10.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index f75a435c0..dac129513 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.10.0 (Sat Jan 16 2021) + +#### 🚀 Enhancement + +- enable canary releases for upload-assets plugin [#1725](https://github.com/intuit/auto/pull/1725) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- enable canary releases for upload-assets plugin ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 10f6abc83..7b00c8a03 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.10.0 (Sat Jan 16 2021) + +#### 🚀 Enhancement + +- enable canary releases for upload-assets plugin [#1725](https://github.com/intuit/auto/pull/1725) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- add link ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index b12b34344..b549c0924 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,21 @@ +# v10.10.0 (Sat Jan 16 2021) + +#### 🚀 Enhancement + +- enable canary releases for upload-assets plugin [#1725](https://github.com/intuit/auto/pull/1725) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- set title on canary release [#1726](https://github.com/intuit/auto/pull/1726) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- set title on canary release ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- enable canary releases for upload-assets plugin ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement From 94f5639dbc5ee86e393c40a357ad1e1a7e0bac71 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sat, 16 Jan 2021 11:39:06 -0800 Subject: [PATCH 045/191] Bump version to: v10.10.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index d66fdf908..bcf49ab25 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.9.1", + "version": "10.10.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index e69cf266a..7ee1ef29b 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.9.1", + "version": "10.10.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 99bc39500..7f2d39aba 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.9.1", + "version": "10.10.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index ad7d1c17d..e0c2748a7 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.9.1", + "version": "10.10.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 28e402b1b..2dd3fc3c2 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.9.1", + "version": "10.10.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index f664ec655..aeec9aadc 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 2b1fc64a0..df763414b 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 058cbca59..be6591520 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index cb75ef939..195eaaa8d 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 966974c07..bd43c005b 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index ac5e76514..942bc2edb 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 63c9bb4a8..1ad011c39 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 7e4403134..8046ba3c3 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 56d4d67e7..0ff959bba 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 9bdbaf4aa..46b18ffb6 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index de5f7920e..601b9b653 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 5b3c12d2e..704367440 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 3e014e9d0..72f26f147 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index aa647ba99..a4adedffd 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index c3e9aedf4..2de4eb6c0 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 698fa28de..a47ea969a 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 950030a9d..56e65d365 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 4c9a78e07..e3892457f 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 2cb128115..da833c5b2 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index d3df53dfa..aaea3fdc6 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 446b1ed8a..16798c0da 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 57ca3a927..02f3b9666 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 41076f455..9d0c11e95 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index ef1bb3c23..1ff897056 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 7e633ab74..e356aa610 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 5fc0e92a4..4358a4a4c 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.9.1", + "version": "10.10.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 13dac41bba18e40a6ffbb000f2b6f26c0d0d5123 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Sat, 16 Jan 2021 11:39:07 -0800 Subject: [PATCH 046/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 5bc3d9f17..4a96a088b 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.9.1/auto-macos.gz" - version "v10.9.1" - sha256 "46f7ce62635165755faefbfd99ed6ba38c02e39883d3e31ac52dfb6d587dcf2c" + url "https://github.com/intuit/auto/releases/download/v10.10.0/auto-macos.gz" + version "v10.10.0" + sha256 "736c0b3e842726524795425fda0a01d76e308fd4212af193fa25ed48f91b4bae" def install libexec.install Dir["*"] From c3e7462a018b1100533b188310ced9858cc0b59e Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 13:29:40 +0000 Subject: [PATCH 047/191] Bump eslint-plugin-prettier from 3.3.0 to 3.3.1 Bumps [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases) - [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/master/CHANGELOG.md) - [Commits](https://github.com/prettier/eslint-plugin-prettier/compare/v3.3.0...v3.3.1) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..a00393621 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.6.1" + version "10.10.0" "@auto-it/core@link:packages/core": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.6.1" + version "10.10.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.6.1" + version "10.10.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -6144,9 +6144,9 @@ eslint-plugin-jsdoc@^30.2.1: spdx-expression-parse "^3.0.1" eslint-plugin-prettier@^3.1.4: - version "3.3.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.0.tgz#61e295349a65688ffac0b7808ef0a8244bdd8d40" - integrity sha512-tMTwO8iUWlSRZIwS9k7/E4vrTsfvsrcM5p1eftyuqWH25nKsz/o6/54I7jwQ/3zobISyC7wMy9ZsFwgTxOcOpQ== + version "3.3.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.3.1.tgz#7079cfa2497078905011e6f82e8dd8453d1371b7" + integrity sha512-Rq3jkcFY8RYeQLgk2cCwuc0P7SEFwDravPhsJZOQ5N4YI4DSg50NyqJ/9gdZHzQlHf8MvafSesbNJCcP/FF6pQ== dependencies: prettier-linter-helpers "^1.0.0" From a92755bbd2f84029049abb0213cf343e88ea8f0d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 13:32:17 +0000 Subject: [PATCH 048/191] Bump @types/jest from 26.0.14 to 26.0.20 Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.14 to 26.0.20. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 104 +++++++----------------------------------------------- 1 file changed, 13 insertions(+), 91 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..a7882e9da 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.6.1" + version "10.10.0" "@auto-it/core@link:packages/core": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.6.1" + version "10.10.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.6.1" + version "10.10.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -1159,16 +1159,6 @@ source-map "^0.6.1" write-file-atomic "^3.0.0" -"@jest/types@^25.5.0": - version "25.5.0" - resolved "https://registry.yarnpkg.com/@jest/types/-/types-25.5.0.tgz#4d6a4793f7b9599fc3680877b856a97dbccf2a9d" - integrity sha512-OXD0RgQ86Tu3MazKo8bnrkDRaDXXMGUqd+kTtLtK1Zb7CRzQcaSRPPPV37SvYTdevXEBVxe0HXylEjs8ibkmCw== - dependencies: - "@types/istanbul-lib-coverage" "^2.0.0" - "@types/istanbul-reports" "^1.1.1" - "@types/yargs" "^15.0.0" - chalk "^3.0.0" - "@jest/types@^26.3.0": version "26.3.0" resolved "https://registry.yarnpkg.com/@jest/types/-/types-26.3.0.tgz#97627bf4bdb72c55346eef98e3b3f7ddc4941f71" @@ -2449,14 +2439,6 @@ dependencies: "@types/istanbul-lib-coverage" "*" -"@types/istanbul-reports@^1.1.1": - version "1.1.1" - resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz#7a8cbf6a406f36c8add871625b278eaf0b0d255a" - integrity sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA== - dependencies: - "@types/istanbul-lib-coverage" "*" - "@types/istanbul-lib-report" "*" - "@types/istanbul-reports@^3.0.0": version "3.0.0" resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.0.tgz#508b13aa344fa4976234e75dddcc34925737d821" @@ -2465,12 +2447,12 @@ "@types/istanbul-lib-report" "*" "@types/jest@26.x", "@types/jest@^26.0.0", "@types/jest@^26.0.7", "@types/jest@~26.0.7": - version "26.0.14" - resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.14.tgz#078695f8f65cb55c5a98450d65083b2b73e5a3f3" - integrity sha512-Hz5q8Vu0D288x3iWXePSn53W7hAjP0H7EQ6QvDO9c7t46mR0lNOLlfuwQ+JkVxuhygHzlzPX+0jKdA3ZgSh+Vg== + version "26.0.20" + resolved "https://registry.yarnpkg.com/@types/jest/-/jest-26.0.20.tgz#cd2f2702ecf69e86b586e1f5223a60e454056307" + integrity sha512-9zi2Y+5USJRxd0FsahERhBwlcvFh6D2GLQnY2FH2BzK8J9s9omvNHIbvABwIluXa0fD8XVKMLTO0aOEuUfACAA== dependencies: - jest-diff "^25.2.1" - pretty-format "^25.2.1" + jest-diff "^26.0.0" + pretty-format "^26.0.0" "@types/js-cookie@2.2.6": version "2.2.6" @@ -5539,16 +5521,6 @@ didyoumean@^1.2.1: resolved "https://registry.yarnpkg.com/didyoumean/-/didyoumean-1.2.1.tgz#e92edfdada6537d484d73c0172fd1eba0c4976ff" integrity sha1-6S7f2tplN9SE1zwBcv0eugxJdv8= -diff-sequences@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-25.2.6.tgz#5f467c00edd35352b7bca46d7927d60e687a76dd" - integrity sha512-Hq8o7+6GaZeoFjtpgvRBUknSXNeJiCx7V9Fr94ZMljNiCr9n9L8H8aJqgWOQiDDGdyn29fRNcDdRVJ5fdyihfg== - -diff-sequences@^26.3.0: - version "26.3.0" - resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.3.0.tgz#62a59b1b29ab7fd27cef2a33ae52abe73042d0a2" - integrity sha512-5j5vdRcw3CNctePNYN0Wy2e/JbWT6cAYnXv5OuqPhDpyCGc0uLu2TK0zOCJWNB9kOIfYMSpIulRaDgIi4HJ6Ig== - diff-sequences@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-26.6.2.tgz#48ba99157de1923412eed41db6b6d4aa9ca7c0b1" @@ -8531,27 +8503,7 @@ jest-config@^26.6.3: micromatch "^4.0.2" pretty-format "^26.6.2" -jest-diff@^25.2.1: - version "25.5.0" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-25.5.0.tgz#1dd26ed64f96667c068cef026b677dfa01afcfa9" - integrity sha512-z1kygetuPiREYdNIumRpAHY6RXiGmp70YHptjdaxTWGmA085W3iCnXNx0DhflK3vwrKmrRWyY1wUpkPMVxMK7A== - dependencies: - chalk "^3.0.0" - diff-sequences "^25.2.6" - jest-get-type "^25.2.6" - pretty-format "^25.5.0" - -jest-diff@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.4.2.tgz#a1b7b303bcc534aabdb3bd4a7caf594ac059f5aa" - integrity sha512-6T1XQY8U28WH0Z5rGpQ+VqZSZz8EN8rZcBtfvXaOkbwxIEeRre6qnuZQlbY1AJ4MKDxQF8EkrCvK+hL/VkyYLQ== - dependencies: - chalk "^4.0.0" - diff-sequences "^26.3.0" - jest-get-type "^26.3.0" - pretty-format "^26.4.2" - -jest-diff@^26.6.2: +jest-diff@^26.0.0, jest-diff@^26.4.2, jest-diff@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-26.6.2.tgz#1aa7468b52c3a68d7d5c5fdcdfcd5e49bd164394" integrity sha512-6m+9Z3Gv9wN0WFVasqjCL/06+EFCMTqDEUl/b87HYK2rAPTyfz4ZIuSlPhY51PIQRWx5TaxeF1qmXKe9gfN3sA== @@ -8640,11 +8592,6 @@ jest-environment-node@^26.6.2: jest-mock "^26.6.2" jest-util "^26.6.2" -jest-get-type@^25.2.6: - version "25.2.6" - resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-25.2.6.tgz#0b0a32fab8908b44d508be81681487dbabb8d877" - integrity sha512-DxjtyzOHjObRM+sM1knti6or+eOgcGU4xVSb2HNP1TqO4ahsT+rqZg+nyqHWJSvWgKC5cG3QjGFBqxLghiF/Ig== - jest-get-type@^26.3.0: version "26.3.0" resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-26.3.0.tgz#e97dc3c3f53c2b406ca7afaed4493b1d099199e0" @@ -11837,27 +11784,7 @@ pretty-bytes@^5.5.0: resolved "https://registry.yarnpkg.com/pretty-bytes/-/pretty-bytes-5.5.0.tgz#0cecda50a74a941589498011cf23275aa82b339e" integrity sha512-p+T744ZyjjiaFlMUZZv6YPC5JrkNj8maRmPaQCWFJFplUAzpIUTRaTcS+7wmZtUoFXHtESJb23ISliaWyz3SHA== -pretty-format@^25.2.1, pretty-format@^25.5.0: - version "25.5.0" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-25.5.0.tgz#7873c1d774f682c34b8d48b6743a2bf2ac55791a" - integrity sha512-kbo/kq2LQ/A/is0PQwsEHM7Ca6//bGPPvU6UnsdDRSKTWxT/ru/xb88v4BJf6a69H+uTytOEsTusT9ksd/1iWQ== - dependencies: - "@jest/types" "^25.5.0" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^16.12.0" - -pretty-format@^26.4.2: - version "26.4.2" - resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.4.2.tgz#d081d032b398e801e2012af2df1214ef75a81237" - integrity sha512-zK6Gd8zDsEiVydOCGLkoBoZuqv8VTiHyAbKznXe/gaph/DAeZOmit9yMfgIz5adIgAMMs5XfoYSwAX3jcCO1tA== - dependencies: - "@jest/types" "^26.3.0" - ansi-regex "^5.0.0" - ansi-styles "^4.0.0" - react-is "^16.12.0" - -pretty-format@^26.6.2: +pretty-format@^26.0.0, pretty-format@^26.4.2, pretty-format@^26.6.2: version "26.6.2" resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-26.6.2.tgz#e35c2705f14cb7fe2fe94fa078345b444120fc93" integrity sha512-7AeGuCYNGmycyQbCqd/3PWH4eOoX/OiCa0uphp57NVTeAGdJGaAliecxwBDHYQCIvrW7aDBZCYeNTP/WX69mkg== @@ -12162,11 +12089,6 @@ react-is@16.13.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.13.1.tgz#789729a4dc36de2999dc156dd6c1d9c18cea56a4" integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ== -react-is@^16.12.0: - version "16.12.0" - resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.12.0.tgz#2cc0fe0fba742d97fd527c42a13bec4eeb06241c" - integrity sha512-rPCkf/mWBtKc97aLL9/txD8DZdemK0vkA3JMLShjlJB3Pj3s+lpf1KaBzMfQrAmhMQB0n1cU/SUGgKKBCe837Q== - react-is@^16.8.1: version "16.8.6" resolved "https://registry.yarnpkg.com/react-is/-/react-is-16.8.6.tgz#5bbc1e2d29141c9fbdfed456343fe2bc430a6a16" From 75a0277741ea3249f92a1cb030803af5b53e7310 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 13:33:06 +0000 Subject: [PATCH 049/191] Bump @typescript-eslint/eslint-plugin from 4.11.1 to 4.13.0 Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.11.1 to 4.13.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.13.0/packages/eslint-plugin) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 79 ++++++++++++++++++++++++++++--------------------------- 1 file changed, 40 insertions(+), 39 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..3c7bfefd9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.6.1" + version "10.10.0" "@auto-it/core@link:packages/core": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.6.1" + version "10.10.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.6.1" + version "10.10.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2653,27 +2653,28 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^4.1.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.11.1.tgz#7579c6d17ad862154c10bc14b40e5427b729e209" - integrity sha512-fABclAX2QIEDmTMk6Yd7Muv1CzFLwWM4505nETzRHpP3br6jfahD9UUJkhnJ/g2m7lwfz8IlswcwGGPGiq9exw== + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.13.0.tgz#5f580ea520fa46442deb82c038460c3dd3524bb6" + integrity sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w== dependencies: - "@typescript-eslint/experimental-utils" "4.11.1" - "@typescript-eslint/scope-manager" "4.11.1" + "@typescript-eslint/experimental-utils" "4.13.0" + "@typescript-eslint/scope-manager" "4.13.0" debug "^4.1.1" functional-red-black-tree "^1.0.1" + lodash "^4.17.15" regexpp "^3.0.0" semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@4.11.1", "@typescript-eslint/experimental-utils@^4.0.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.11.1.tgz#2dad3535b878c25c7424e40bfa79d899f3f485bc" - integrity sha512-mAlWowT4A6h0TC9F+J5pdbEhjNiEMO+kqPKQ4sc3fVieKL71dEqfkKgtcFVSX3cjSBwYwhImaQ/mXQF0oaI38g== +"@typescript-eslint/experimental-utils@4.13.0", "@typescript-eslint/experimental-utils@^4.0.1": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.13.0.tgz#9dc9ab375d65603b43d938a0786190a0c72be44e" + integrity sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/scope-manager" "4.11.1" - "@typescript-eslint/types" "4.11.1" - "@typescript-eslint/typescript-estree" "4.11.1" + "@typescript-eslint/scope-manager" "4.13.0" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/typescript-estree" "4.13.0" eslint-scope "^5.0.0" eslint-utils "^2.0.0" @@ -2687,13 +2688,13 @@ "@typescript-eslint/typescript-estree" "4.8.2" debug "^4.1.1" -"@typescript-eslint/scope-manager@4.11.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.11.1.tgz#72dc2b60b0029ab0888479b12bf83034920b4b69" - integrity sha512-Al2P394dx+kXCl61fhrrZ1FTI7qsRDIUiVSuN6rTwss6lUn8uVO2+nnF4AvO0ug8vMsy3ShkbxLu/uWZdTtJMQ== +"@typescript-eslint/scope-manager@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz#5b45912a9aa26b29603d8fa28f5e09088b947141" + integrity sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ== dependencies: - "@typescript-eslint/types" "4.11.1" - "@typescript-eslint/visitor-keys" "4.11.1" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/visitor-keys" "4.13.0" "@typescript-eslint/scope-manager@4.8.2": version "4.8.2" @@ -2703,23 +2704,23 @@ "@typescript-eslint/types" "4.8.2" "@typescript-eslint/visitor-keys" "4.8.2" -"@typescript-eslint/types@4.11.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.11.1.tgz#3ba30c965963ef9f8ced5a29938dd0c465bd3e05" - integrity sha512-5kvd38wZpqGY4yP/6W3qhYX6Hz0NwUbijVsX2rxczpY6OXaMxh0+5E5uLJKVFwaBM7PJe1wnMym85NfKYIh6CA== +"@typescript-eslint/types@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" + integrity sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ== "@typescript-eslint/types@4.8.2": version "4.8.2" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.8.2.tgz#c862dd0e569d9478eb82d6aee662ea53f5661a36" integrity sha512-z1/AVcVF8ju5ObaHe2fOpZYEQrwHyZ7PTOlmjd3EoFeX9sv7UekQhfrCmgUO7PruLNfSHrJGQvrW3Q7xQ8EoAw== -"@typescript-eslint/typescript-estree@4.11.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.11.1.tgz#a4416b4a65872a48773b9e47afabdf7519eb10bc" - integrity sha512-tC7MKZIMRTYxQhrVAFoJq/DlRwv1bnqA4/S2r3+HuHibqvbrPcyf858lNzU7bFmy4mLeIHFYr34ar/1KumwyRw== +"@typescript-eslint/typescript-estree@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz#cf6e2207c7d760f5dfd8d18051428fadfc37b45e" + integrity sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg== dependencies: - "@typescript-eslint/types" "4.11.1" - "@typescript-eslint/visitor-keys" "4.11.1" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/visitor-keys" "4.13.0" debug "^4.1.1" globby "^11.0.1" is-glob "^4.0.1" @@ -2741,12 +2742,12 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/visitor-keys@4.11.1": - version "4.11.1" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.11.1.tgz#4c050a4c1f7239786e2dd4e69691436143024e05" - integrity sha512-IrlBhD9bm4bdYcS8xpWarazkKXlE7iYb1HzRuyBP114mIaj5DJPo11Us1HgH60dTt41TCZXMaTCAW+OILIYPOg== +"@typescript-eslint/visitor-keys@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" + integrity sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g== dependencies: - "@typescript-eslint/types" "4.11.1" + "@typescript-eslint/types" "4.13.0" eslint-visitor-keys "^2.0.0" "@typescript-eslint/visitor-keys@4.8.2": From f6eb3da95cee416b7f539f229a76b6b309a6519a Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 13:36:39 +0000 Subject: [PATCH 050/191] Bump @types/prettier from 2.1.5 to 2.1.6 Bumps [@types/prettier](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/prettier) from 2.1.5 to 2.1.6. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/prettier) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..b5de1b0af 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.6.1" + version "10.10.0" "@auto-it/core@link:packages/core": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.6.1" + version "10.10.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.6.1" + version "10.10.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2571,9 +2571,9 @@ integrity sha512-kUNnecmtkunAoQ3CnjmMkzNU/gtxG8guhi+Fk2U/kOpIKjIMKnXGp4IJCgQJrXSgMsWYimYG4TGjz/UzbGEBTw== "@types/prettier@^2.0.0", "@types/prettier@^2.0.1": - version "2.1.5" - resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.5.tgz#b6ab3bba29e16b821d84e09ecfaded462b816b00" - integrity sha512-UEyp8LwZ4Dg30kVU2Q3amHHyTn1jEdhCIE59ANed76GaT1Vp76DD3ZWSAxgCrw6wJ0TqeoBpqmfUHiUDPs//HQ== + version "2.1.6" + resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.1.6.tgz#f4b1efa784e8db479cdb8b14403e2144b1e9ff03" + integrity sha512-6gOkRe7OIioWAXfnO/2lFiv+SJichKVSys1mSsgyrYHSEjk8Ctv4tSR/Odvnu+HWlH2C8j53dahU03XmQdd5fA== "@types/readable-stream@^2.3.9": version "2.3.9" From fe8edbf768757509732f466da79e2782ce69a38c Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 18 Jan 2021 13:37:42 +0000 Subject: [PATCH 051/191] Bump @typescript-eslint/parser from 4.8.2 to 4.13.0 Bumps [@typescript-eslint/parser](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser) from 4.8.2 to 4.13.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/parser/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.13.0/packages/parser) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 66 +++++++++++++++++++++++++++---------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/yarn.lock b/yarn.lock index 85ce503da..60f0a70d8 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.6.1" + version "10.10.0" "@auto-it/core@link:packages/core": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.6.1" + version "10.10.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.6.1" + version "10.10.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.6.1" + version "10.10.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2678,13 +2678,13 @@ eslint-utils "^2.0.0" "@typescript-eslint/parser@^4.1.1": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.8.2.tgz#78dccbe5124de2b8dea2d4c363dee9f769151ca8" - integrity sha512-u0leyJqmclYr3KcXOqd2fmx6SDGBO0MUNHHAjr0JS4Crbb3C3d8dwAdlazy133PLCcPn+aOUFiHn72wcuc5wYw== + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-4.13.0.tgz#c413d640ea66120cfcc37f891e8cb3fd1c9d247d" + integrity sha512-KO0J5SRF08pMXzq9+abyHnaGQgUJZ3Z3ax+pmqz9vl81JxmTTOUfQmq7/4awVfq09b6C4owNlOgOwp61pYRBSg== dependencies: - "@typescript-eslint/scope-manager" "4.8.2" - "@typescript-eslint/types" "4.8.2" - "@typescript-eslint/typescript-estree" "4.8.2" + "@typescript-eslint/scope-manager" "4.13.0" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/typescript-estree" "4.13.0" debug "^4.1.1" "@typescript-eslint/scope-manager@4.11.1": @@ -2695,23 +2695,23 @@ "@typescript-eslint/types" "4.11.1" "@typescript-eslint/visitor-keys" "4.11.1" -"@typescript-eslint/scope-manager@4.8.2": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.8.2.tgz#a18388c63ae9c17adde519384f539392f2c4f0d9" - integrity sha512-qHQ8ODi7mMin4Sq2eh/6eu03uVzsf5TX+J43xRmiq8ujng7ViQSHNPLOHGw/Wr5dFEoxq/ubKhzClIIdQy5q3g== +"@typescript-eslint/scope-manager@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz#5b45912a9aa26b29603d8fa28f5e09088b947141" + integrity sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ== dependencies: - "@typescript-eslint/types" "4.8.2" - "@typescript-eslint/visitor-keys" "4.8.2" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/visitor-keys" "4.13.0" "@typescript-eslint/types@4.11.1": version "4.11.1" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.11.1.tgz#3ba30c965963ef9f8ced5a29938dd0c465bd3e05" integrity sha512-5kvd38wZpqGY4yP/6W3qhYX6Hz0NwUbijVsX2rxczpY6OXaMxh0+5E5uLJKVFwaBM7PJe1wnMym85NfKYIh6CA== -"@typescript-eslint/types@4.8.2": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.8.2.tgz#c862dd0e569d9478eb82d6aee662ea53f5661a36" - integrity sha512-z1/AVcVF8ju5ObaHe2fOpZYEQrwHyZ7PTOlmjd3EoFeX9sv7UekQhfrCmgUO7PruLNfSHrJGQvrW3Q7xQ8EoAw== +"@typescript-eslint/types@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" + integrity sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ== "@typescript-eslint/typescript-estree@4.11.1": version "4.11.1" @@ -2727,13 +2727,13 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/typescript-estree@4.8.2": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.8.2.tgz#eeec34707d8577600fb21661b5287226cc8b3bed" - integrity sha512-HToGNwI6fekH0dOw3XEVESUm71Onfam0AKin6f26S2FtUmO7o3cLlWgrIaT1q3vjB3wCTdww3Dx2iGq5wtUOCg== +"@typescript-eslint/typescript-estree@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz#cf6e2207c7d760f5dfd8d18051428fadfc37b45e" + integrity sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg== dependencies: - "@typescript-eslint/types" "4.8.2" - "@typescript-eslint/visitor-keys" "4.8.2" + "@typescript-eslint/types" "4.13.0" + "@typescript-eslint/visitor-keys" "4.13.0" debug "^4.1.1" globby "^11.0.1" is-glob "^4.0.1" @@ -2749,12 +2749,12 @@ "@typescript-eslint/types" "4.11.1" eslint-visitor-keys "^2.0.0" -"@typescript-eslint/visitor-keys@4.8.2": - version "4.8.2" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.8.2.tgz#62cd3fbbbf65f8eccfbe6f159eb1b84a243a3f77" - integrity sha512-Vg+/SJTMZJEKKGHW7YC21QxgKJrSbxoYYd3MEUGtW7zuytHuEcksewq0DUmo4eh/CTNrVJGSdIY9AtRb6riWFw== +"@typescript-eslint/visitor-keys@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" + integrity sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g== dependencies: - "@typescript-eslint/types" "4.8.2" + "@typescript-eslint/types" "4.13.0" eslint-visitor-keys "^2.0.0" "@webassemblyjs/ast@1.9.0": From a460ec1b0c02c1379d5dfd07f1ee1ff409307da8 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 10:41:35 -0800 Subject: [PATCH 052/191] properly kill spawned node child processes --- packages/core/src/utils/verify-auth.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/packages/core/src/utils/verify-auth.ts b/packages/core/src/utils/verify-auth.ts index 6525367f0..045f14ca7 100644 --- a/packages/core/src/utils/verify-auth.ts +++ b/packages/core/src/utils/verify-auth.ts @@ -26,7 +26,8 @@ export default function verifyAuth(remote: string, branch: string) { ); timeout = setTimeout(() => { - child.kill(0); + // Kill the spawned process and it's children + process.kill(-child.pid); resolve(false); }, 5 * 1000); From 759642c85d267400c2ffc6cf94a2a13f77d1adf1 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 11:13:31 -0800 Subject: [PATCH 053/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/core/CHANGELOG.md | 13 +++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++++++ plugins/cocoapods/CHANGELOG.md | 12 ++++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 12 ++++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++++++ plugins/released/CHANGELOG.md | 12 ++++++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++++++ 30 files changed, 351 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e6f45345..e5258290d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- `@auto-it/core` + - properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.0 (Sat Jan 16 2021) #### 🚀 Enhancement diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 6cc62c03f..a8ce3f8a8 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.10.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.10.1/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index dac129513..d99b9dacf 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.0 (Sat Jan 16 2021) #### 🚀 Enhancement diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index d7ad80596..9faa1244b 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- properly kill spawned node child processes ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.1 (Thu Jan 14 2021) #### 🐛 Bug Fix diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index 3fd423cfd..0a2350bcf 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index acd075d06..36cd82588 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index 04b783a2f..db1cb3a50 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index 31112a2f7..08640128e 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index d7a6ad7fd..0eb224f64 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index b3d6284bc..5189dd41f 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index 2832d9e63..d971b3c1c 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index fb0235e83..dda9b51cd 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index fddea0ba8..62f67b69d 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index 0905dbc5d..3110f13f7 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index 29e15dae1..21893db36 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 7b00c8a03..79e39280c 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.0 (Sat Jan 16 2021) #### 🚀 Enhancement diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index 55222b2d3..5d444399b 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index 644490cbd..cd88e608b 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index 28a4d6507..5e3d92d4c 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 222673613..4e2ee101b 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index d6ecc4937..dbef3f56f 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index 10cd2a16a..0359d6913 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index b107c88aa..37d0f93cd 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index eb5a888ea..20ea052b0 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index 833a4ab33..a87e10a86 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index 9ba76cc71..f8bc422c3 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index f6dedd67a..d6e230877 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index b30620010..823bbfdb4 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index b549c0924..180123017 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.0 (Sat Jan 16 2021) #### 🚀 Enhancement diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 5c82268b4..57074fd19 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.10.1 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- properly kill spawned node child processes [#1732](https://github.com/intuit/auto/pull/1732) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.9.0 (Thu Jan 14 2021) #### 🚀 Enhancement From f0c51fadfd7804a509ecb2d1d33842a522150402 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 11:13:33 -0800 Subject: [PATCH 054/191] Bump version to: v10.10.1 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index bcf49ab25..3ff9f2275 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.10.0", + "version": "10.10.1", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 7ee1ef29b..3a9fbb6d3 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.10.0", + "version": "10.10.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 7f2d39aba..1b3e10684 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.10.0", + "version": "10.10.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index e0c2748a7..f816c9ce6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.10.0", + "version": "10.10.1", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 2dd3fc3c2..f9080d607 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.10.0", + "version": "10.10.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index aeec9aadc..70525ea6b 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index df763414b..e2df2505a 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index be6591520..cecc383bb 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 195eaaa8d..ccac94f26 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index bd43c005b..6f2475191 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 942bc2edb..64b478b1a 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 1ad011c39..ea70c72f2 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 8046ba3c3..ee518b54a 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 0ff959bba..0c3d0d60f 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 46b18ffb6..b1873889e 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 601b9b653..c6429debf 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 704367440..fa3b970ab 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 72f26f147..7d483d802 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index a4adedffd..6081719c5 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 2de4eb6c0..4e653dcab 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index a47ea969a..8e0a8cd6c 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 56e65d365..88ed8f124 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index e3892457f..01f781bfd 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index da833c5b2..4db65f568 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index aaea3fdc6..4a6b2b323 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 16798c0da..923df9982 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 02f3b9666..aa8567775 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 9d0c11e95..9e84097cd 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 1ff897056..4753f76d6 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index e356aa610..866098056 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 4358a4a4c..5ee7f7bf6 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.10.0", + "version": "10.10.1", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 673722e071482327f466fc7a98092def6225f0a3 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 11:13:33 -0800 Subject: [PATCH 055/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 4a96a088b..9ae5e11c1 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.10.0/auto-macos.gz" - version "v10.10.0" - sha256 "736c0b3e842726524795425fda0a01d76e308fd4212af193fa25ed48f91b4bae" + url "https://github.com/intuit/auto/releases/download/v10.10.1/auto-macos.gz" + version "v10.10.1" + sha256 "9f83db0e5c1de8056e607ac7efa721e825e112cf6ac553c319ebfa3e89bc6cd8" def install libexec.install Dir["*"] From c3f3da8796295987a1c0bef41c3ef7f26ddb2bab Mon Sep 17 00:00:00 2001 From: Seth Thomas Date: Tue, 19 Jan 2021 17:45:04 -0600 Subject: [PATCH 056/191] Properly setting env var _auth for legacyAuth case for npm publish fixes #1734 --- plugins/npm/__tests__/npm-next.test.ts | 3 +-- plugins/npm/__tests__/npm.test.ts | 6 ++---- plugins/npm/src/index.ts | 20 +++++++++----------- 3 files changed, 12 insertions(+), 17 deletions(-) diff --git a/plugins/npm/__tests__/npm-next.test.ts b/plugins/npm/__tests__/npm-next.test.ts index d7e344e30..669d07d8f 100644 --- a/plugins/npm/__tests__/npm-next.test.ts +++ b/plugins/npm/__tests__/npm-next.test.ts @@ -241,8 +241,7 @@ describe("next", () => { "publish", "--tag", "next", - "--_auth", - "abcd", + "--_auth=abcd", ]); }); diff --git a/plugins/npm/__tests__/npm.test.ts b/plugins/npm/__tests__/npm.test.ts index 19da94255..d4ea442ae 100644 --- a/plugins/npm/__tests__/npm.test.ts +++ b/plugins/npm/__tests__/npm.test.ts @@ -719,8 +719,7 @@ describe("publish", () => { await hooks.publish.promise({ bump: Auto.SEMVER.patch }); expect(execPromise).toHaveBeenCalledWith("npm", [ "publish", - "--_auth", - "abcd", + "--_auth=abcd", ]); }); @@ -996,8 +995,7 @@ describe("canary", () => { "publish", "--tag", "canary", - "--_auth", - "abcd", + "--_auth=abcd", ]); }); diff --git a/plugins/npm/src/index.ts b/plugins/npm/src/index.ts index ac92db1ba..ef2d8cd77 100644 --- a/plugins/npm/src/index.ts +++ b/plugins/npm/src/index.ts @@ -25,15 +25,14 @@ import { } from "@auto-it/core"; import getPackages from "get-monorepo-packages"; import { gt, gte, inc, ReleaseType } from "semver"; -import { loadPackageJson, getRepo, getAuthor } from "@auto-it/package-json-utils"; +import { + loadPackageJson, + getRepo, + getAuthor, +} from "@auto-it/package-json-utils"; import setTokenOnCI, { getRegistry, DEFAULT_REGISTRY } from "./set-npm-token"; -import { - writeFile, - isMonorepo, - readFile, - getLernaJson, -} from "./utils"; +import { writeFile, isMonorepo, readFile, getLernaJson } from "./utils"; const { isCi } = envCi(); const VERSION_COMMIT_MESSAGE = '"Bump version to: %s [skip ci]"'; @@ -212,10 +211,9 @@ function getLegacyAuthArgs( return []; } - return [ - options.isMonorepo ? "--legacy-auth" : "--_auth", - process.env.NPM_TOKEN, - ]; + return options.isMonorepo + ? ["--legacy-auth", process.env.NPM_TOKEN] + : [`--_auth=${process.env.NPM_TOKEN}`]; } /** Get the args to set the registry. Only used with lerna */ From 45870dd4bdbe437f2e5d8c0fc111248f730b9be5 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 16:58:15 -0800 Subject: [PATCH 057/191] remove "master" from docs --- README.md | 2 +- docs/pages/blog/pr-in-progress.mdx | 2 +- docs/pages/blog/using-shipit.mdx | 2 +- docs/pages/blog/v8.mdx | 2 +- docs/pages/docs/build-platforms/circleci.mdx | 4 ++-- docs/pages/docs/build-platforms/github-actions.mdx | 2 +- docs/pages/docs/build-platforms/jenkins.mdx | 8 ++++---- docs/pages/docs/build-platforms/travis.mdx | 8 ++++---- docs/pages/docs/configuration/autorc.mdx | 2 +- docs/pages/docs/extras/changelog.md | 2 +- docs/pages/docs/extras/label.md | 2 +- docs/pages/docs/welcome/quick-merge.mdx | 2 +- packages/cli/README.md | 2 +- plugins/vscode/README.md | 4 ++-- 14 files changed, 22 insertions(+), 22 deletions(-) diff --git a/README.md b/README.md index 674b0539a..abca80c46 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ --- -
CircleCI Codecov npm All Contributors npm Auto Release +
CircleCI Codecov npm All Contributors npm Auto Release code style: prettier

diff --git a/docs/pages/blog/pr-in-progress.mdx b/docs/pages/blog/pr-in-progress.mdx index 9a5a6d9c8..db49f402c 100644 --- a/docs/pages/blog/pr-in-progress.mdx +++ b/docs/pages/blog/pr-in-progress.mdx @@ -8,7 +8,7 @@ date: "Thu, 12 Mar 2020 23:00:02 -0700" Sometimes you are working on a big feature and you know it will require a lot of changes. These types of pull requests can be a nightmare to review. Taking in all the changes at once can be overwhelming. It makes it easy to miss smaller mistakes and can make it hard to guess the intent of the changes. Multiple features, bug fixes, or even breaking changes may make up this large PR. -One way to manage this problem is by making a PR to the large PR. Other contributors can review a smaller subset of changes and also follow along with development. In previous versions of `auto`, large PRs would not be represented well in the changelog and release notes. It would only include the main PR that got merged into master as the only changelog note. +One way to manage this problem is by making a PR to the large PR. Other contributors can review a smaller subset of changes and also follow along with development. In previous versions of `auto`, large PRs would not be represented well in the changelog and release notes. It would only include the main PR that got merged into `baseBranch` as the only changelog note. But thanks to [this PR](https://github.com/intuit/auto/pull/359) that isn't true anymore! Now when you merge one PR to another both changes will be represented in the changelog. diff --git a/docs/pages/blog/using-shipit.mdx b/docs/pages/blog/using-shipit.mdx index 0b7f9ca48..a6458e9cc 100644 --- a/docs/pages/blog/using-shipit.mdx +++ b/docs/pages/blog/using-shipit.mdx @@ -10,7 +10,7 @@ date: 'Thu, 12 Mar 2020 23:00:02 -0700' The main command most users use to interact with `auto` is the shipit command. shipit does all the heaving lifting when releasing your code. -When run on master it will: +When run on `baseBranch` it will: 1. Determine if the last merged PR needs to be released 2. Update a CHANGELOG.md with all you new changes diff --git a/docs/pages/blog/v8.mdx b/docs/pages/blog/v8.mdx index 032ccecd7..6130492d3 100644 --- a/docs/pages/blog/v8.mdx +++ b/docs/pages/blog/v8.mdx @@ -62,7 +62,7 @@ Run `auto next` from `feature` branch => Publish prerelease to `beta` tag. The `shipit` command will now also publish a prerelease when ran from a prerelease branch. You can use this in a few different ways: -1. Two release branches: `master` and `next` +1. Two release branches: `baseBranch` and `next` 2. Without `next` Branch (`--only-graduate-with-release-label`) 3. Multiple `next` Branches (ex: `alpha`, `beta`, `rc`) 4. Feature Pre-releases diff --git a/docs/pages/docs/build-platforms/circleci.mdx b/docs/pages/docs/build-platforms/circleci.mdx index b5b26e34d..f582e52d2 100644 --- a/docs/pages/docs/build-platforms/circleci.mdx +++ b/docs/pages/docs/build-platforms/circleci.mdx @@ -4,7 +4,7 @@ title: CircleCI The following config declares the `release` job and uses it in the `build_and_release` workflow. The `release` job will run at the end of each build and either release: -- a new `latest` version from `master` +- a new `latest` version from `baseBranch` - a `canary` build from a pull request (if your package manager plugin implements them) ```yaml @@ -51,5 +51,5 @@ Go to Settings -> Checkout SSH Keys -> `Create and add YOUR_USERNAME user key`. ## Examples -- [`auto`](https://github.com/intuit/auto/blob/master/.circleci/config.yml) +- [`auto`](https://github.com/intuit/auto/blob/main/.circleci/config.yml) - [`reaction`](https://github.com/artsy/reaction/blob/master/.circleci/config.yml) diff --git a/docs/pages/docs/build-platforms/github-actions.mdx b/docs/pages/docs/build-platforms/github-actions.mdx index 377eb1849..39d4d33f2 100644 --- a/docs/pages/docs/build-platforms/github-actions.mdx +++ b/docs/pages/docs/build-platforms/github-actions.mdx @@ -4,7 +4,7 @@ title: GitHub Actions The following config declares the `release` action that run on all branches. The job will either release: -- a new `latest` version from `master` +- a new `latest` version from `baseBranch` - a `canary` build from a pull request (only on the main fork and if your package manager plugin implements them) **`.github/workflows/release.yml`** diff --git a/docs/pages/docs/build-platforms/jenkins.mdx b/docs/pages/docs/build-platforms/jenkins.mdx index da1ff043b..6c7078e49 100644 --- a/docs/pages/docs/build-platforms/jenkins.mdx +++ b/docs/pages/docs/build-platforms/jenkins.mdx @@ -4,7 +4,7 @@ title: Jenkins 2 The following config declares the `release` action that run on all branches. The job will either release: -- a new `latest` version from `master` +- a new `latest` version from `baseBranch` - a `canary` build from a pull request (only on the main fork and if your package manager plugin implements them) **`Jenkinsfile`** @@ -74,13 +74,13 @@ pipeline { } } stage('Latest') { - when { branch 'master' } + when { branch 'main' } steps { // Jenkins will leave you in a detached HEAD state during builds // Make sure to checkout your baseBranch here or the push will fail! // The error will look like the following: - // error: src refspec master does not match any - sh 'git checkout master' + // error: src refspec main does not match any + sh 'git checkout main' sh 'auto shipit' } } diff --git a/docs/pages/docs/build-platforms/travis.mdx b/docs/pages/docs/build-platforms/travis.mdx index 7aa6f45f9..5c06813f5 100644 --- a/docs/pages/docs/build-platforms/travis.mdx +++ b/docs/pages/docs/build-platforms/travis.mdx @@ -4,7 +4,7 @@ title: Travis CI The following config declares the `deploy` job that run on all branches. The job will either release: -- a new `latest` version from `master` +- a new `latest` version from `baseBranch` - a `canary` build from a pull request (if your package manager plugin implements them) **`.travis.yml`** @@ -44,12 +44,12 @@ To fix this add the following lines to your `.travis.yml` ```yml before_deploy: - - if [ "$TRAVIS_BRANCH" == "master" ];then - git checkout master; + - if [ "$TRAVIS_BRANCH" == "main" ];then + git checkout main; fi; ``` -This code will ensure that your git HEAD is on master when creating a new release. +This code will ensure that your git HEAD is on `baseBranch` when creating a new release. ### Canary Deploy Failing on Forks diff --git a/docs/pages/docs/configuration/autorc.mdx b/docs/pages/docs/configuration/autorc.mdx index 257f65512..9d1e33626 100644 --- a/docs/pages/docs/configuration/autorc.mdx +++ b/docs/pages/docs/configuration/autorc.mdx @@ -37,7 +37,7 @@ Configure the default release behavior. ### Base Branch -Configure what your repo considers the "master" branch. +Configure what your repo considers the base branch. ```json { diff --git a/docs/pages/docs/extras/changelog.md b/docs/pages/docs/extras/changelog.md index 5e9e846cf..e774ee2c0 100644 --- a/docs/pages/docs/extras/changelog.md +++ b/docs/pages/docs/extras/changelog.md @@ -36,7 +36,7 @@ _From #371_ #### 💥 Breaking Change -- shipit will publish a canary locally when not on master [#371](https://github.com/intuit/auto/pull/371) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- shipit will publish a canary locally when not on `baseBranch` [#371](https://github.com/intuit/auto/pull/371) ([@hipstersmoothie](https://github.com/hipstersmoothie)) #### Authors: 1 diff --git a/docs/pages/docs/extras/label.md b/docs/pages/docs/extras/label.md index f54fa952c..afd755c4c 100644 --- a/docs/pages/docs/extras/label.md +++ b/docs/pages/docs/extras/label.md @@ -16,5 +16,5 @@ fi Running `auto label` without the PR number will: -- When run in master will get the labels for the last merged PR +- When run in `baseBranch` will get the labels for the last merged PR - When run for a PR in CI will use the PR's number diff --git a/docs/pages/docs/welcome/quick-merge.mdx b/docs/pages/docs/welcome/quick-merge.mdx index 7b9a9cf80..b5a0bb140 100644 --- a/docs/pages/docs/welcome/quick-merge.mdx +++ b/docs/pages/docs/welcome/quick-merge.mdx @@ -12,7 +12,7 @@ If you merge a PR while another is publishing: - they might try to publish the same version number - one will try to push over the other's changes and fail -> If you ensure that the last build on master has finished you shouldn't run into any problems! +> If you ensure that the last build on `baseBrach` has finished you shouldn't run into any problems! ### Beware Long Publishes diff --git a/packages/cli/README.md b/packages/cli/README.md index 097e9140b..c3b12525e 100644 --- a/packages/cli/README.md +++ b/packages/cli/README.md @@ -54,7 +54,7 @@ In the `Tag version` field enter the version number you just tagged and click `P The following are options that might be more useful to set in the `.autorc` than with a flag: ```txt - baseBranch Configure what your repo considers the "master" branch. + baseBranch Configure what your repo considers the base branch. plugins Specify your plugins to load githubApi If you are using enterprise github, `auto` lets you configure the github API URL that it uses. githubGraphqlApi If you are using enterprise github and your company hosts the graphql at some other URL than the diff --git a/plugins/vscode/README.md b/plugins/vscode/README.md index 234b2b4a0..31e3cc72c 100644 --- a/plugins/vscode/README.md +++ b/plugins/vscode/README.md @@ -44,7 +44,7 @@ Prepend all relative links in README.md with this url. "plugins": [ [ "vscode", - { "baseContentUrl": "https://github.com/my-username/my-repo/tree/master" } + { "baseContentUrl": "https://github.com/my-username/my-repo/tree/main" } ] // other plugins ] @@ -62,7 +62,7 @@ Prepend all relative image links in README.md with this url. [ "vscode", { - "baseContentUrl": "https://raw.githubusercontent.com/my-username/my-repo/master/" + "baseContentUrl": "https://raw.githubusercontent.com/my-username/my-repo/main/" } ] ] From f7e7576544f7b1de617ba13fe0e26a1fb4de000d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 17:02:06 -0800 Subject: [PATCH 058/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 30 +++++++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 19 ++++++++++++++ plugins/npm/CHANGELOG.md | 32 +++++++++++++++++++++++ plugins/twitter/CHANGELOG.md | 23 ++++++++++++++++ 5 files changed, 105 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e5258290d..d57ae8d5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,33 @@ +# v10.11.0 (Tue Jan 19 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Seth Thomas ([@sethomas](https://github.com/sethomas)), for all your work! + +#### 🚀 Enhancement + +- `@auto-it/npm` + - Properly setting env var _auth for legacyAuth case for npm publish [#1735](https://github.com/intuit/auto/pull/1735) ([@sethomas](https://github.com/sethomas)) + +#### 🔩 Dependency Updates + +- Bump @types/prettier from 2.1.5 to 2.1.6 [#1730](https://github.com/intuit/auto/pull/1730) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/conventional-commits-parser from 3.0.0 to 3.0.1 [#1708](https://github.com/intuit/auto/pull/1708) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-jsdoc from 30.7.8 to 31.0.3 [#1715](https://github.com/intuit/auto/pull/1715) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-prettier from 3.3.0 to 3.3.1 [#1727](https://github.com/intuit/auto/pull/1727) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jest from 26.0.14 to 26.0.20 [#1728](https://github.com/intuit/auto/pull/1728) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/eslint-plugin from 4.11.1 to 4.13.0 [#1729](https://github.com/intuit/auto/pull/1729) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/parser from 4.8.2 to 4.13.0 [#1731](https://github.com/intuit/auto/pull/1731) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- `@auto-it/twitter` + - Bump @types/twitter-text from 2.0.0 to 3.1.0 [#1709](https://github.com/intuit/auto/pull/1709) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 2 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) +- Seth Thomas ([@sethomas](https://github.com/sethomas)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index a8ce3f8a8..d4fb08853 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.10.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.11.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index d99b9dacf..c0625048c 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,22 @@ +# v10.11.0 (Tue Jan 19 2021) + +#### 🔩 Dependency Updates + +- Bump @types/prettier from 2.1.5 to 2.1.6 [#1730](https://github.com/intuit/auto/pull/1730) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/conventional-commits-parser from 3.0.0 to 3.0.1 [#1708](https://github.com/intuit/auto/pull/1708) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/twitter-text from 2.0.0 to 3.1.0 [#1709](https://github.com/intuit/auto/pull/1709) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-jsdoc from 30.7.8 to 31.0.3 [#1715](https://github.com/intuit/auto/pull/1715) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-prettier from 3.3.0 to 3.3.1 [#1727](https://github.com/intuit/auto/pull/1727) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jest from 26.0.14 to 26.0.20 [#1728](https://github.com/intuit/auto/pull/1728) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/eslint-plugin from 4.11.1 to 4.13.0 [#1729](https://github.com/intuit/auto/pull/1729) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/parser from 4.8.2 to 4.13.0 [#1731](https://github.com/intuit/auto/pull/1731) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 1 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index dbef3f56f..a5c73924c 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,35 @@ +# v10.11.0 (Tue Jan 19 2021) + +:tada: This release contains work from a new contributor! :tada: + +Thank you, Seth Thomas ([@sethomas](https://github.com/sethomas)), for all your work! + +#### 🚀 Enhancement + +- Properly setting env var _auth for legacyAuth case for npm publish [#1735](https://github.com/intuit/auto/pull/1735) ([@sethomas](https://github.com/sethomas)) + +#### 🐛 Bug Fix + +- Properly setting env var _auth for legacyAuth case for npm publish fixes #1734 ([@sethomas](https://github.com/sethomas)) + +#### 🔩 Dependency Updates + +- Bump @types/prettier from 2.1.5 to 2.1.6 [#1730](https://github.com/intuit/auto/pull/1730) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/conventional-commits-parser from 3.0.0 to 3.0.1 [#1708](https://github.com/intuit/auto/pull/1708) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/twitter-text from 2.0.0 to 3.1.0 [#1709](https://github.com/intuit/auto/pull/1709) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-jsdoc from 30.7.8 to 31.0.3 [#1715](https://github.com/intuit/auto/pull/1715) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-prettier from 3.3.0 to 3.3.1 [#1727](https://github.com/intuit/auto/pull/1727) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jest from 26.0.14 to 26.0.20 [#1728](https://github.com/intuit/auto/pull/1728) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/eslint-plugin from 4.11.1 to 4.13.0 [#1729](https://github.com/intuit/auto/pull/1729) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/parser from 4.8.2 to 4.13.0 [#1731](https://github.com/intuit/auto/pull/1731) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 2 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) +- Seth Thomas ([@sethomas](https://github.com/sethomas)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 823bbfdb4..689b0b0b3 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,26 @@ +# v10.11.0 (Tue Jan 19 2021) + +#### 🐛 Bug Fix + +- Bump @types/twitter-text from 2.0.0 to 3.1.0 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### 🔩 Dependency Updates + +- Bump @types/prettier from 2.1.5 to 2.1.6 [#1730](https://github.com/intuit/auto/pull/1730) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/conventional-commits-parser from 3.0.0 to 3.0.1 [#1708](https://github.com/intuit/auto/pull/1708) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/twitter-text from 2.0.0 to 3.1.0 [#1709](https://github.com/intuit/auto/pull/1709) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-jsdoc from 30.7.8 to 31.0.3 [#1715](https://github.com/intuit/auto/pull/1715) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump eslint-plugin-prettier from 3.3.0 to 3.3.1 [#1727](https://github.com/intuit/auto/pull/1727) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jest from 26.0.14 to 26.0.20 [#1728](https://github.com/intuit/auto/pull/1728) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/eslint-plugin from 4.11.1 to 4.13.0 [#1729](https://github.com/intuit/auto/pull/1729) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @typescript-eslint/parser from 4.8.2 to 4.13.0 [#1731](https://github.com/intuit/auto/pull/1731) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 1 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix From 9aebb0a091b80de70f46363c7342db79ac02f68d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 17:02:10 -0800 Subject: [PATCH 059/191] Update contributors [skip ci] --- .all-contributorsrc | 10 ++++++++++ README.md | 1 + 2 files changed, 11 insertions(+) diff --git a/.all-contributorsrc b/.all-contributorsrc index 15b17c8b4..ecec308d7 100644 --- a/.all-contributorsrc +++ b/.all-contributorsrc @@ -451,6 +451,16 @@ "test", "code" ] + }, + { + "login": "sethomas", + "name": "Seth Thomas", + "avatar_url": "https://avatars2.githubusercontent.com/u/3957314?v=4", + "profile": "http://sethomas.com/", + "contributions": [ + "test", + "code" + ] } ], "commitConvention": "none" diff --git a/README.md b/README.md index 674b0539a..1d4a92f78 100644 --- a/README.md +++ b/README.md @@ -264,6 +264,7 @@ Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds
Andrew Leedham

📖 ⚠️ 💻 +
Seth Thomas

⚠️ 💻 From 72a808f02a37c24165dbc41fae25f10c8211ec19 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 17:02:13 -0800 Subject: [PATCH 060/191] Bump version to: v10.11.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 3ff9f2275..69463e129 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.10.1", + "version": "10.11.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 3a9fbb6d3..6bbc63ba1 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.10.1", + "version": "10.11.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 1b3e10684..68eab3497 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.10.1", + "version": "10.11.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index f816c9ce6..7b55eb85c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.10.1", + "version": "10.11.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index f9080d607..8e30c5d47 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.10.1", + "version": "10.11.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 70525ea6b..178abe409 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index e2df2505a..0db65b280 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index cecc383bb..c84dbd87d 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index ccac94f26..c4236ad9d 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 6f2475191..3d9290df3 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 64b478b1a..b0937ddc8 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index ea70c72f2..4ef62f928 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index ee518b54a..4ad04a838 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 0c3d0d60f..21ef53aa4 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index b1873889e..e5fdaa099 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index c6429debf..02eccede8 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index fa3b970ab..256e0428f 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 7d483d802..c8d700e10 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 6081719c5..f8d979823 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 4e653dcab..a8dd0899a 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 8e0a8cd6c..1a4aedbef 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 88ed8f124..2e8936f10 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 01f781bfd..9779f0d71 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 4db65f568..c56136e62 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 4a6b2b323..0c5b43f78 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 923df9982..edf06686f 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index aa8567775..f7c2178e8 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 9e84097cd..e24fbd9b3 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index c52c10211..61e2f87a6 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 866098056..056b13432 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 5ee7f7bf6..4bdf1e1b7 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.10.1", + "version": "10.11.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 8802b0eb30d537ab0baf347971ebc317c7f38f16 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Tue, 19 Jan 2021 17:02:13 -0800 Subject: [PATCH 061/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 9ae5e11c1..576df3465 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.10.1/auto-macos.gz" - version "v10.10.1" - sha256 "9f83db0e5c1de8056e607ac7efa721e825e112cf6ac553c319ebfa3e89bc6cd8" + url "https://github.com/intuit/auto/releases/download/v10.11.0/auto-macos.gz" + version "v10.11.0" + sha256 "910c62b452b08753eaf86f1722afa075066a51a18dfe2ca488c36e2d7a5e4d91" def install libexec.install Dir["*"] From 4f534dae9489352f2b07f00ca16b1e7f85feca8f Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 20 Jan 2021 11:43:37 -0800 Subject: [PATCH 062/191] use `main` branch if it exists --- docs/pages/docs/configuration/autorc.mdx | 1 + docs/pages/docs/extras/shipit.md | 4 +- packages/cli/src/parse-args.ts | 4 +- .../__tests__/__snapshots__/auto.test.ts.snap | 4 +- .../__snapshots__/changelog.test.ts.snap | 12 +- .../__snapshots__/release.test.ts.snap | 6 +- .../src/__tests__/auto-canary-local.test.ts | 2 +- .../src/__tests__/auto-ci-base-branch.test.ts | 7 +- .../src/__tests__/auto-make-changelog.test.ts | 2 +- packages/core/src/__tests__/auto.test.ts | 30 +++-- packages/core/src/__tests__/changelog.test.ts | 16 +-- .../core/src/__tests__/get-remote.test.ts | 13 +++ packages/core/src/__tests__/git.test.ts | 10 +- packages/core/src/__tests__/release.test.ts | 103 ++++++++++-------- packages/core/src/__tests__/semver.test.ts | 2 +- packages/core/src/auto-args.ts | 6 +- packages/core/src/auto.ts | 68 ++++++++---- packages/core/src/changelog.ts | 2 +- packages/core/src/git.ts | 32 +++--- packages/core/src/release.ts | 11 +- packages/core/src/types.ts | 4 +- .../src/utils/__tests__/verify-auth.test.ts | 6 +- packages/core/src/utils/get-current-branch.ts | 2 +- .../__tests__/conventional-commits.test.ts | 18 ++- plugins/crates/__tests__/crates.test.ts | 4 +- plugins/docker/__tests__/docker.test.ts | 4 +- plugins/jira/__tests__/jira.test.ts | 2 +- plugins/npm/__tests__/monorepo-log.test.ts | 10 +- plugins/npm/__tests__/npm-next.test.ts | 22 ++-- plugins/npm/__tests__/npm.test.ts | 78 ++++++------- plugins/npm/src/index.ts | 6 +- .../released/__tests__/released-label.test.ts | 2 +- 32 files changed, 279 insertions(+), 214 deletions(-) diff --git a/docs/pages/docs/configuration/autorc.mdx b/docs/pages/docs/configuration/autorc.mdx index 9d1e33626..d3a8c13ab 100644 --- a/docs/pages/docs/configuration/autorc.mdx +++ b/docs/pages/docs/configuration/autorc.mdx @@ -38,6 +38,7 @@ Configure the default release behavior. ### Base Branch Configure what your repo considers the base branch. +Defaults to either `main` or `master`. ```json { diff --git a/docs/pages/docs/extras/shipit.md b/docs/pages/docs/extras/shipit.md index 28fde84e9..85480ad87 100644 --- a/docs/pages/docs/extras/shipit.md +++ b/docs/pages/docs/extras/shipit.md @@ -42,8 +42,8 @@ Read more about preparing you project for pre-releases [here](./next#setting-up- #### "next" Branch (default) -The suggested way to create pre-releases is by managing 2 branches for your repo: `master` and `next`. -`master` contains the `latest` stable version of the code, and `next` contains future updates. +The suggested way to create pre-releases is by managing 2 branches for your repo: `baseBranch` and `next`. +`baseBranch` contains the `latest` stable version of the code, and `next` contains future updates. You can change what branches `auto` treats as pre-release branches in your [`.autorc`](../configuration/autorc#prerelease-branches). diff --git a/packages/cli/src/parse-args.ts b/packages/cli/src/parse-args.ts index 1230717f3..e0e31ccec 100644 --- a/packages/cli/src/parse-args.ts +++ b/packages/cli/src/parse-args.ts @@ -129,7 +129,7 @@ const defaultOptions: AutoOption[] = [ const baseBranch: AutoOption = { name: "base-branch", type: String, - description: 'Branch to treat as the "master" branch', + description: "Branch to treat as the base branch", group: "global", }; @@ -515,7 +515,7 @@ export const commands: AutoCommand[] = [ defaultValue: false, group: "main", description: - 'Make auto publish prerelease versions when merging to master. Only PRs merged with "release" label will generate a "latest" release. Only use this flag if you do not want to maintain a prerelease branch, and instead only want to use master.', + 'Make auto publish prerelease versions when merging to baseBranch. Only PRs merged with "release" label will generate a "latest" release. Only use this flag if you do not want to maintain a prerelease branch, and instead only want to use baseBranch.', config: true, }, ], diff --git a/packages/core/src/__tests__/__snapshots__/auto.test.ts.snap b/packages/core/src/__tests__/__snapshots__/auto.test.ts.snap index f9ed08b7e..9c5c8d3d6 100644 --- a/packages/core/src/__tests__/__snapshots__/auto.test.ts.snap +++ b/packages/core/src/__tests__/__snapshots__/auto.test.ts.snap @@ -84,7 +84,7 @@ exports[`Auto createLabels should create the labels 1`] = ` exports[`Auto should extend config 1`] = ` Object { - "baseBranch": "master", + "baseBranch": "main", "extends": "@artsy/auto-config/package.json", "labels": Array [ Object { @@ -171,7 +171,7 @@ Object { exports[`Auto should extend local config 1`] = ` Object { - "baseBranch": "master", + "baseBranch": "main", "extends": "fake.json", "labels": Array [ Object { diff --git a/packages/core/src/__tests__/__snapshots__/changelog.test.ts.snap b/packages/core/src/__tests__/__snapshots__/changelog.test.ts.snap index f9905d86c..edacfbf52 100644 --- a/packages/core/src/__tests__/__snapshots__/changelog.test.ts.snap +++ b/packages/core/src/__tests__/__snapshots__/changelog.test.ts.snap @@ -78,7 +78,7 @@ exports[`generateReleaseNotes should add "Push to Next" 1`] = ` #### ⚠️ Pushed to \`next\` -- I was a push to master (adam@dierkens.com) +- I was a push to main (adam@dierkens.com) #### Authors: 1 @@ -110,7 +110,7 @@ exports[`generateReleaseNotes should be able to customize pushToBaseBranch title #### Custom Title -- I was a push to master (adam@dierkens.com) +- I was a push to main (adam@dierkens.com) #### Authors: 1 @@ -183,9 +183,9 @@ exports[`generateReleaseNotes should include PR-less commits as patches 1`] = ` - First Feature [#1235](https://github.custom.com/foobar/auto/pull/1235) (adam@dierkens.com) -#### ⚠️ Pushed to \`master\` +#### ⚠️ Pushed to \`main\` -- I was a push to master (adam@dierkens.com) +- I was a push to main (adam@dierkens.com) #### Authors: 1 @@ -195,7 +195,7 @@ exports[`generateReleaseNotes should include PR-less commits as patches 1`] = ` exports[`generateReleaseNotes should include PR-less commits as the default label 1`] = ` "#### 🚀 Enhancement -- I was a push to master (adam@dierkens.com) +- I was a push to main (adam@dierkens.com) - First Feature [#1235](https://github.custom.com/foobar/auto/pull/1235) (adam@dierkens.com) #### Authors: 1 @@ -298,7 +298,7 @@ exports[`generateReleaseNotes should order the section major, minor, patch, then #### 🐛 Bug Fix -- I was a push to master (adam@dierkens.com) +- I was a push to main (adam@dierkens.com) #### 📝 Documentation diff --git a/packages/core/src/__tests__/__snapshots__/release.test.ts.snap b/packages/core/src/__tests__/__snapshots__/release.test.ts.snap index 710523cb4..f420cf22b 100644 --- a/packages/core/src/__tests__/__snapshots__/release.test.ts.snap +++ b/packages/core/src/__tests__/__snapshots__/release.test.ts.snap @@ -76,7 +76,7 @@ exports[`Release generateReleaseNotes should include PR-less commits 1`] = ` - First Feature [#1235](https://github.com/web/site/pull/1235) (adam@dierkens.com) -#### ⚠️ Pushed to \`master\` +#### ⚠️ Pushed to \`main\` - I should be included (adam@dierkens.com) @@ -116,9 +116,9 @@ exports[`Release generateReleaseNotes should match rebased commits to PRs 1`] = - Feature [#124](https://github.com/web/site/pull/124) (adam@dierkens.com) - I was rebased [#123](https://github.com/web/site/pull/123) (adam@dierkens.com) -#### ⚠️ Pushed to \`master\` +#### ⚠️ Pushed to \`main\` -- I am a commit to master (adam@dierkens.com) +- I am a commit to main (adam@dierkens.com) #### Authors: 1 diff --git a/packages/core/src/__tests__/auto-canary-local.test.ts b/packages/core/src/__tests__/auto-canary-local.test.ts index ab5ac0e04..c3165c1f8 100644 --- a/packages/core/src/__tests__/auto-canary-local.test.ts +++ b/packages/core/src/__tests__/auto-canary-local.test.ts @@ -31,7 +31,7 @@ jest.mock("@octokit/rest", () => { return { Octokit }; }); -test("shipit should publish canary in locally when not on master", async () => { +test("shipit should publish canary in locally when not on baseBranch", async () => { const auto = new Auto({ ...defaults, plugins: [] }); auto.logger = dummyLog(); // @ts-ignore diff --git a/packages/core/src/__tests__/auto-ci-base-branch.test.ts b/packages/core/src/__tests__/auto-ci-base-branch.test.ts index 927ca70e5..ecced0a63 100644 --- a/packages/core/src/__tests__/auto-ci-base-branch.test.ts +++ b/packages/core/src/__tests__/auto-ci-base-branch.test.ts @@ -6,12 +6,13 @@ jest.mock("env-ci"); const envSpy = envCi as jest.Mock; envSpy.mockImplementation(() => ({ isCi: true, - branch: "master", + branch: "main", })); import { Auto } from "../auto"; const defaults = { + baseBranch: "main", owner: "foo", repo: "bar", }; @@ -51,13 +52,13 @@ describe("Auto", () => { url: "https://google.com", }; - test("should exit successfully if ran from master + CI", async () => { + test("should exit successfully if ran from main + CI", async () => { const auto = new Auto(defaults); const exit = jest.fn(); envSpy.mockImplementationOnce(() => ({ isCi: true, - branch: "master", + branch: "main", })); // @ts-ignore diff --git a/packages/core/src/__tests__/auto-make-changelog.test.ts b/packages/core/src/__tests__/auto-make-changelog.test.ts index 22c42f009..0ef180820 100644 --- a/packages/core/src/__tests__/auto-make-changelog.test.ts +++ b/packages/core/src/__tests__/auto-make-changelog.test.ts @@ -10,7 +10,7 @@ jest const importMock = jest.fn(); jest.mock("import-cwd", () => (path: string) => importMock(path)); -jest.mock("env-ci", () => () => ({ isCi: false, branch: "master" })); +jest.mock("env-ci", () => () => ({ isCi: false, branch: "main" })); jest.mock("../utils/exec-promise", () => () => Promise.resolve("")); const defaults = { diff --git a/packages/core/src/__tests__/auto.test.ts b/packages/core/src/__tests__/auto.test.ts index 31e185e46..0d7a897c9 100644 --- a/packages/core/src/__tests__/auto.test.ts +++ b/packages/core/src/__tests__/auto.test.ts @@ -5,6 +5,13 @@ import { dummyLog } from "../utils/logger"; import makeCommitFromMsg from "./make-commit-from-msg"; import { loadPlugin } from "../utils/load-plugins"; import child from "child_process"; +import execPromise from "../utils/exec-promise"; + +const exec = jest.fn(); +jest.mock("../utils/exec-promise"); +// @ts-ignore +execPromise.mockImplementation(exec); +exec.mockResolvedValue(""); const importMock = jest.fn(); @@ -12,9 +19,10 @@ jest.mock("../utils/git-reset.ts"); jest.mock("../utils/load-plugins.ts"); jest.mock("../utils/verify-auth.ts", () => () => true); jest.mock("import-cwd", () => (path: string) => importMock(path)); -jest.mock("env-ci", () => () => ({ isCi: false, branch: "master" })); +jest.mock("env-ci", () => () => ({ isCi: false, branch: "main" })); const defaults = { + baseBranch: "main", owner: "foo", repo: "bar", }; @@ -114,7 +122,7 @@ describe("Auto", () => { const auto = new Auto(); auto.logger = dummyLog(); await auto.loadConfig(); - expect(auto.baseBranch).toBe("master"); + expect(auto.baseBranch).toBe("main"); }); test("should set custom baseBranch", async () => { @@ -162,9 +170,11 @@ describe("Auto", () => { process.pkg = undefined; }); - test("should throw if now GH_TOKEN set", async () => { + test("should throw if no GH_TOKEN set", async () => { const auto = new Auto(); auto.logger = dummyLog(); + // @ts-ignore + auto.getRepo = () => ({}); process.env.GH_TOKEN = undefined; await expect(auto.loadConfig()).rejects.toBeInstanceOf(Error); process.env.GH_TOKEN = "XXXX"; @@ -187,7 +197,7 @@ describe("Auto", () => { test("should exit with errors in config", async () => { search.mockReturnValueOnce({ config: { name: 123 } }); process.exit = jest.fn() as any; - const auto = new Auto(); + const auto = new Auto({ owner: "foo", repo: "bar" }); auto.logger = dummyLog(); await auto.loadConfig(); expect(process.exit).toHaveBeenCalled(); @@ -1426,12 +1436,16 @@ describe("Auto", () => { }); test("should not publish when behind remote", async () => { - jest.spyOn(child, "execSync").mockImplementation((command) => { - if (command.startsWith("git")) { - throw new Error(); + exec.mockImplementation((command, args) => { + if ( + command.startsWith("git") && + args[0] === "ls-remote" && + args[1] === "--heads" + ) { + return Promise.reject(new Error()); } - return Buffer.from(""); + return Promise.resolve(""); }); const auto = new Auto({ ...defaults, plugins: [] }); diff --git a/packages/core/src/__tests__/changelog.test.ts b/packages/core/src/__tests__/changelog.test.ts index d758da1c0..998725003 100644 --- a/packages/core/src/__tests__/changelog.test.ts +++ b/packages/core/src/__tests__/changelog.test.ts @@ -15,7 +15,7 @@ const testOptions = (): IGenerateReleaseNotesOptions => ({ repo: "auto", baseUrl: "https://github.custom.com/foobar/auto", labels: [...defaultLabels], - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); @@ -28,7 +28,7 @@ describe("createUserLink", () => { repo: "", baseUrl: "https://github.custom.com/", labels: [...defaultLabels], - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); changelog.loadDefaultHooks(); @@ -68,7 +68,7 @@ describe("createUserLink", () => { repo: "", baseUrl: "https://github.custom.com/", labels: [...defaultLabels], - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); changelog.loadDefaultHooks(); @@ -345,7 +345,7 @@ describe("generateReleaseNotes", () => { files: [], authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I was a push to master\n\nfoo bar", + subject: "I was a push to main\n\nfoo bar", labels: ["pushToBaseBranch"], }, { @@ -376,7 +376,7 @@ describe("generateReleaseNotes", () => { files: [], authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I was a push to master\n\nfoo bar", + subject: "I was a push to main\n\nfoo bar", }, { hash: "2", @@ -402,7 +402,7 @@ describe("generateReleaseNotes", () => { files: [], authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I was a push to master\n\n", + subject: "I was a push to main\n\n", labels: ["pushToBaseBranch"], }, { @@ -454,7 +454,7 @@ describe("generateReleaseNotes", () => { files: [], authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I was a push to master\n\n", + subject: "I was a push to main\n\n", labels: ["patch"], }, { @@ -543,7 +543,7 @@ describe("generateReleaseNotes", () => { files: [], authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I was a push to master\n\n", + subject: "I was a push to main\n\n", labels: ["pushToBaseBranch"], }, { diff --git a/packages/core/src/__tests__/get-remote.test.ts b/packages/core/src/__tests__/get-remote.test.ts index ffc633edf..76f17d9bd 100644 --- a/packages/core/src/__tests__/get-remote.test.ts +++ b/packages/core/src/__tests__/get-remote.test.ts @@ -1,4 +1,10 @@ import { Auto } from "../auto"; +import { execSync } from "child_process"; + +const exec = jest.fn(); +// @ts-ignore +execSync.mockImplementation(exec); +exec.mockReturnValue(""); jest.mock("child_process"); @@ -69,4 +75,11 @@ describe("getRemote", () => { "https://x-access-token:XXXX@github.com/fake/remote" ); }); + + test("should use main if it exists", async () => { + exec.mockReturnValue("foo\nbar\nbaz\nmain"); + const auto = new Auto(); + + expect(auto.baseBranch).toBe("main"); + }); }); diff --git a/packages/core/src/__tests__/git.test.ts b/packages/core/src/__tests__/git.test.ts index 2a1d7e7c8..61acb5694 100644 --- a/packages/core/src/__tests__/git.test.ts +++ b/packages/core/src/__tests__/git.test.ts @@ -88,7 +88,7 @@ const options = { owner: "Adam Dierkens", repo: "test", token: "MyToken", - baseBranch: "master", + baseBranch: "main", }; describe("github", () => { @@ -129,7 +129,7 @@ describe("github", () => { const gh = new Git(options); gh.getTags = (ref: string) => { - if (ref === "origin/master") { + if (ref === "origin/main") { return Promise.resolve(["1.0.0", "1.2.3", "1.4.0"]); } @@ -149,7 +149,7 @@ describe("github", () => { const gh = new Git(options); gh.getTags = (ref: string) => { - if (ref === "origin/master") { + if (ref === "origin/main") { return Promise.resolve(["1.0.0", "1.2.3", "1.4.0"]); } @@ -179,7 +179,7 @@ describe("github", () => { const gh = new Git(options); gh.getTags = (ref: string) => { - if (ref === "origin/master") { + if (ref === "origin/main") { return Promise.resolve(baseTags); } @@ -280,7 +280,7 @@ describe("github", () => { test("getTags", async () => { const gh = new Git(options); - expect(Array.isArray(await gh.getTags("master"))).toBe(true); + expect(Array.isArray(await gh.getTags("main"))).toBe(true); }); test("getLastTagNotInBaseBranch", async () => { diff --git a/packages/core/src/__tests__/release.test.ts b/packages/core/src/__tests__/release.test.ts index 16ccfec0f..ad9077e7b 100644 --- a/packages/core/src/__tests__/release.test.ts +++ b/packages/core/src/__tests__/release.test.ts @@ -6,6 +6,7 @@ import { dummyLog } from "../utils/logger"; import makeCommitFromMsg from "./make-commit-from-msg"; import child from "child_process"; import { getCurrentBranch } from "../utils/get-current-branch"; +import { DEFAULT_PRERELEASE_BRANCHES } from "../config"; const { execSync } = child; const exec = jest.fn(); @@ -91,7 +92,7 @@ const execSpy = jest.fn(); jest.mock("../utils/exec-promise.ts", () => (...args) => execSpy(...args)); const currentBranch = jest.fn(); -currentBranch.mockReturnValue("master"); +currentBranch.mockReturnValue("main"); jest.mock("../utils/get-current-branch.ts"); // @ts-ignore getCurrentBranch.mockImplementation(currentBranch); @@ -101,6 +102,12 @@ const writeSpy = jest.fn(); let readResult = "{}"; +const config = { + baseBranch: "main", + prereleaseBranches: DEFAULT_PRERELEASE_BRANCHES, + labels: defaultLabels, +}; + jest.mock("fs", () => ({ // @ts-ignore existsSync: (...args) => existsSync(...args), @@ -123,7 +130,7 @@ const git = new Git({ owner: "Andrew", repo: "test", token: "MY_TOKEN", - baseBranch: "master", + baseBranch: "main", }); describe("getVersionMap", () => { @@ -158,13 +165,13 @@ describe("Release", () => { describe("getCommits", () => { test("should default to HEAD", async () => { - const gh = new Release(git); + const gh = new Release(git, config); await gh.getCommits("12345"); expect(getGitLog).toHaveBeenCalled(); }); test("should use configured HEAD", async () => { - const gh = new Release(git); + const gh = new Release(git, config); await gh.getCommits("12345", "1234"); expect(getGitLog).toHaveBeenCalled(); }); @@ -177,7 +184,7 @@ describe("Release", () => { ]; getGitLog.mockReturnValueOnce(commits); - const gh = new Release(git); + const gh = new Release(git, config); expect(await gh.getCommits("12345", "1234")).toMatchSnapshot(); }); @@ -223,7 +230,7 @@ describe("Release", () => { }; }); - const gh = new Release(git); + const gh = new Release(git, config); const modifiedCommits = await gh.getCommits("12345", "1234"); expect(getUserByUsername).toHaveBeenCalled(); expect(modifiedCommits).toMatchSnapshot(); @@ -271,7 +278,7 @@ describe("Release", () => { }; }); - const gh = new Release(git); + const gh = new Release(git, config); gh.hooks.onCreateLogParse.tap("test", (parser) => { parser.hooks.omitCommit.tap("test", (commit) => Boolean(commit.authors.find((author) => author.username === "adam")) @@ -282,7 +289,7 @@ describe("Release", () => { }); test("should ignore rebased commits if no last release", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getLatestReleaseInfo.mockReturnValueOnce({}); const commits = await logParse.normalizeCommits([ @@ -295,7 +302,7 @@ describe("Release", () => { }); test("should match rebased commits to PRs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getLatestReleaseInfo.mockReturnValueOnce({ published_at: "2019-01-16", @@ -327,7 +334,7 @@ describe("Release", () => { }); test("should match rebased commits to PRs with first commit", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getLatestReleaseInfo.mockImplementationOnce(() => { throw new Error("no releases yet"); @@ -360,7 +367,7 @@ describe("Release", () => { }); test("should omit commits that have already been released", async () => { - const gh = new Release(git); + const gh = new Release(git, config); jest.spyOn(console, "log").mockImplementationOnce(() => {}); getLatestReleaseInfo.mockReturnValueOnce({ @@ -391,7 +398,7 @@ describe("Release", () => { }); test("should not omit commits in next branch", async () => { - const gh = new Release(git); + const gh = new Release(git, config); jest.spyOn(console, "log").mockImplementationOnce(() => {}); getLatestReleaseInfo.mockReturnValueOnce({ @@ -425,7 +432,7 @@ describe("Release", () => { }); test("should include PR opener in authors (in case of external rebase)", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const info = { data: { @@ -456,7 +463,7 @@ describe("Release", () => { }); test("should use latest title of PR", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const info = { data: { @@ -491,7 +498,7 @@ describe("Release", () => { describe("addToChangelog", () => { test("creates new changelog if one didn't exist - from 0", async () => { - const gh = new Release(git); + const gh = new Release(git, config); await gh.addToChangelog( "# My new Notes", "klajsdlfk4lj51l43k5hj234l", @@ -502,7 +509,7 @@ describe("Release", () => { }); test("creates new changelog if one didn't exist", async () => { - const gh = new Release(git); + const gh = new Release(git, config); await gh.addToChangelog("# My new Notes", "v1.0.0", "v1.0.0"); expect(writeSpy.mock.calls[0][1].includes(`v1.0.1`)).toBe(true); @@ -513,7 +520,7 @@ describe("Release", () => { noVersionPrefix: true, prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); await gh.addToChangelog("# My new Notes", "1.0.0", "1.0.0"); @@ -521,7 +528,7 @@ describe("Release", () => { }); test("prepends to old changelog", async () => { - const gh = new Release(git); + const gh = new Release(git, config); existsSync.mockReturnValueOnce(true); readResult = "# My old Notes"; @@ -537,17 +544,17 @@ describe("Release", () => { describe("generateReleaseNotes", () => { test("should default to HEAD", async () => { - const gh = new Release(git); + const gh = new Release(git, config); expect(await gh.generateReleaseNotes("1234")).toBe(""); }); test("should use configured HEAD", async () => { - const gh = new Release(git); + const gh = new Release(git, config); expect(await gh.generateReleaseNotes("1234", "123")).toBe(""); }); test("should include PR-less commits", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ { @@ -603,7 +610,7 @@ describe("Release", () => { }); test("should get extra user data for login", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ { @@ -631,7 +638,7 @@ describe("Release", () => { }); test("should allow user to configure section headings", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First (#1234)"), @@ -652,7 +659,7 @@ describe("Release", () => { }); test("should match rebased commits to PRs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getLatestReleaseInfo.mockReturnValueOnce({ published_at: "2019-01-16", @@ -679,7 +686,7 @@ describe("Release", () => { hash: "1", authorName: "Adam Dierkens", authorEmail: "adam@dierkens.com", - subject: "I am a commit to master", + subject: "I am a commit to main", }, ]); graphql.mockReturnValueOnce({ @@ -690,7 +697,7 @@ describe("Release", () => { }); test("should match commits with related PRs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getLatestReleaseInfo.mockReturnValueOnce({ published_at: "2019-01-16", @@ -729,7 +736,7 @@ describe("Release", () => { }); test("should find matching PRs for shas through search", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getGitLog.mockReturnValueOnce([ makeCommitFromMsg("Doom Patrol enabled", { @@ -761,7 +768,7 @@ describe("Release", () => { }); test("should ignore closed prs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getGitLog.mockReturnValueOnce([ makeCommitFromMsg("Doom Patrol enabled", { @@ -795,7 +802,7 @@ describe("Release", () => { }); test("should detect pre-release branches", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getGitLog.mockReturnValueOnce([ makeCommitFromMsg("Doom Patrol enabled", { @@ -834,7 +841,7 @@ describe("Release", () => { }); test("should include PRs merged to other PRs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); getGitLog.mockReturnValueOnce([ makeCommitFromMsg("Doom (#12343)", { @@ -900,7 +907,7 @@ describe("Release", () => { }); test("should gracefully handle failed fetches to merged PRs", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = await logParse.normalizeCommits([ makeCommitFromMsg("First"), @@ -921,7 +928,7 @@ describe("Release", () => { describe("getSemverBump", () => { test("default to patch", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First"), makeCommitFromMsg("Second"), @@ -934,7 +941,7 @@ describe("Release", () => { }); test("should use higher version", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First (#1234)"), makeCommitFromMsg("Second"), @@ -948,7 +955,7 @@ describe("Release", () => { }); test("should not publish a release", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First (#1234)"), makeCommitFromMsg("Second (#1235)"), @@ -970,7 +977,7 @@ describe("Release", () => { }); test("should publish a release", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First (#1234)"), makeCommitFromMsg("Second (#1235)"), @@ -990,7 +997,7 @@ describe("Release", () => { }); test("should default to publish a prepatch", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const commits = [ makeCommitFromMsg("First (#1234)"), makeCommitFromMsg("Second (#1235)"), @@ -1010,7 +1017,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); const commits = [ makeCommitFromMsg("First (#1234)"), @@ -1031,7 +1038,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); const commits = [ makeCommitFromMsg("First (#1234)"), @@ -1062,7 +1069,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: customLabels, - baseBranch: "master", + baseBranch: "main", }); const commits = [ makeCommitFromMsg("First (#1234)"), @@ -1098,7 +1105,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: customLabels, - baseBranch: "master", + baseBranch: "main", }); const commits = [ makeCommitFromMsg("First (#1234)"), @@ -1124,7 +1131,7 @@ describe("Release", () => { describe("addLabelsToProject", () => { test("should add labels", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const customLabels: ILabelDefinition[] = [ { name: "1", description: "major", releaseType: SEMVER.major }, { name: "2", description: "minor", releaseType: SEMVER.minor }, @@ -1159,7 +1166,7 @@ describe("Release", () => { { prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }, mockLogger ); @@ -1177,7 +1184,7 @@ describe("Release", () => { }); test("should not add old labels", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const labels: ILabelDefinition[] = [ { name: "1", description: "major", releaseType: SEMVER.major }, { name: "2", description: "minor", releaseType: SEMVER.minor }, @@ -1199,7 +1206,7 @@ describe("Release", () => { }); test("should not add old labels - case sensitive", async () => { - const gh = new Release(git); + const gh = new Release(git, config); const labels: ILabelDefinition[] = [ { name: "major", description: "", releaseType: SEMVER.major }, { name: "Minor", description: "", releaseType: SEMVER.minor }, @@ -1224,7 +1231,7 @@ describe("Release", () => { let gh = new Release(git, { prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); const labels: ILabelDefinition[] = [ { @@ -1245,7 +1252,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); await gh.addLabelsToProject(labels); expect(createLabel).toHaveBeenCalledWith({ @@ -1260,7 +1267,7 @@ describe("Release", () => { onlyPublishWithReleaseLabel: true, prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); const labels: ILabelDefinition[] = [ { @@ -1280,7 +1287,7 @@ describe("Release", () => { gh = new Release(git, { prereleaseBranches: ["next"], labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", }); await gh.addLabelsToProject(labels); expect(createLabel).toHaveBeenCalledWith({ diff --git a/packages/core/src/__tests__/semver.test.ts b/packages/core/src/__tests__/semver.test.ts index d59e7742a..2655f7488 100644 --- a/packages/core/src/__tests__/semver.test.ts +++ b/packages/core/src/__tests__/semver.test.ts @@ -84,7 +84,7 @@ describe("calculateSemVerBump", () => { ).toBe(SEMVER.noVersion); }); - test("should respect onlyPublishWithReleaseLabel when no labels present on push to master", () => { + test("should respect onlyPublishWithReleaseLabel when no labels present on push to baseBranch", () => { expect( calculateSemVerBump([], semverMap, { onlyPublishWithReleaseLabel: true, diff --git a/packages/core/src/auto-args.ts b/packages/core/src/auto-args.ts index 1503cf63c..c9ed1f93e 100644 --- a/packages/core/src/auto-args.ts +++ b/packages/core/src/auto-args.ts @@ -83,7 +83,7 @@ interface Prerelease { } interface BaseBranch { - /** The branch to treat as the base. Default is master */ + /** The branch to treat as the base */ baseBranch?: string; } @@ -146,10 +146,10 @@ export type ILatestOptions = BaseBranch & export type IShipItOptions = ILatestOptions & { /** - * Make auto publish prerelease versions when merging to master. + * Make auto publish prerelease versions when merging to baseBranch. * Only PRs merged with "release" label will generate a "latest" release. * Only use this flag if you do not want to maintain a prerelease branch, - * and instead only want to use master. + * and instead only want to use baseBranch. */ onlyGraduateWithReleaseLabel?: boolean; }; diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 74a1c7c54..24f6e35a2 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -347,6 +347,19 @@ function escapeRegExp(str: string) { return str.replace(/[.*+?^${}()|[\]\\]/g, "\\$&"); // $& means the whole matched string } +/** Check if a repo has a branch */ +function hasBranch(branch: string) { + const branches = execSync("git branch --list --all", { + encoding: "utf-8", + }).split("\n"); + + return branches.some((b) => { + const parts = b.split("/"); + + return b === branch || parts[parts.length - 1] === branch; + }); +} + /** The Error that gets thrown when a label existence check fails */ export class LabelExistsError extends Error { /** @@ -369,7 +382,7 @@ export default class Auto { logger: ILogger; /** Options auto was initialized with */ options: ApiOptions; - /** The branch auto uses as master. */ + /** The branch auto uses as the base. */ baseBranch: string; /** The remote git to push changes to. This is the full URL with auth */ remote!: string; @@ -391,7 +404,8 @@ export default class Auto { /** Initialize auto and it's environment */ constructor(options: ApiOptions = {}) { this.options = options; - this.baseBranch = options.baseBranch || "master"; + this.baseBranch = + options.baseBranch || (hasBranch("main") && "main") || "master"; setLogLevel( "quiet" in options && options.quiet ? "quiet" @@ -931,10 +945,13 @@ export default class Auto { const prNumber = getPrNumberFromEnv(pr); if (!prNumber) { - // If pr-check is ran on CI on master then we exit successfully since + // If pr-check is ran on CI on baseBranch then we exit successfully since // running pr-check in this scenario wouldn't make sense anyway. Enables // adding this command without resorting to bash if/else statements. - if (env.isCi && (env.branch === "master" || this.inPrereleaseBranch())) { + if ( + env.isCi && + (env.branch === this.baseBranch || this.inPrereleaseBranch()) + ) { process.exit(0); } @@ -1189,7 +1206,10 @@ export default class Auto { const from = (await this.git.shaExists("HEAD^")) ? "HEAD^" : "HEAD"; const commitsInRelease = await this.release.getCommitsInRelease(from); - this.logger.veryVerbose.info('Found commits in canary release', commitsInRelease); + this.logger.veryVerbose.info( + "Found commits in canary release", + commitsInRelease + ); const labels = commitsInRelease.map((commit) => commit.labels); @@ -1284,7 +1304,7 @@ export default class Auto { } /** - * Create a next (or test) version of the project. If on master will + * Create a next (or test) version of the project. If on baseBranch will * release to the default "next" branch. */ async next(args: INextOptions): Promise { @@ -1308,18 +1328,26 @@ export default class Auto { await this.checkClean(); await this.setGitUser(); - this.hooks.onCreateLogParse.tap("Omit merges from master", (logParse) => { - logParse.hooks.omitCommit.tap("Omit merges from master", (commit) => { - const shouldOmit = commit.subject.match(/^Merge (?:\S+\/)*master/); - - if (shouldOmit) { - this.logger.verbose.info( - `Omitting merge commit from master: ${commit.subject}` - ); - return true; - } - }); - }); + this.hooks.onCreateLogParse.tap( + `Omit merges from ${this.baseBranch}`, + (logParse) => { + logParse.hooks.omitCommit.tap( + `Omit merges from ${this.baseBranch}`, + (commit) => { + const shouldOmit = commit.subject.match( + new RegExp(`^Merge (?:\\S+\\/)*${this.baseBranch}`) + ); + + if (shouldOmit) { + this.logger.verbose.info( + `Omitting merge commit from ${this.baseBranch}: ${commit.subject}` + ); + return true; + } + } + ); + } + ); const currentBranch = getCurrentBranch(); const forkPoints = ( @@ -1473,7 +1501,7 @@ export default class Auto { const isPR = "isPr" in env && env.isPr; const from = (await this.git.shaExists("HEAD^")) ? "HEAD^" : "HEAD"; const head = await this.release.getCommitsInRelease(from); - // env-ci sets branch to target branch (ex: master) in some CI services. + // env-ci sets branch to target branch (ex: main) in some CI services. // so we should make sure we aren't in a PR just to be safe const currentBranch = getCurrentBranch(); const isBaseBranch = !isPR && currentBranch === this.baseBranch; @@ -1527,7 +1555,7 @@ export default class Auto { if (options.dryRun && !options.quiet) { this.logger.log.success( - "Below is what would happen upon merge of the current branch into master" + `Below is what would happen upon merge of the current branch into ${this.baseBranch}` ); await this.publishFullRelease(options); } diff --git a/packages/core/src/changelog.ts b/packages/core/src/changelog.ts index a689697b2..48d00c812 100644 --- a/packages/core/src/changelog.ts +++ b/packages/core/src/changelog.ts @@ -19,7 +19,7 @@ export interface IGenerateReleaseNotesOptions { baseUrl: string; /** The labels configured by the user */ labels: ILabelDefinition[]; - /** The branch that is used as the base. defaults to master */ + /** The branch that is used as the base */ baseBranch: string; /** The branches that is used as prerelease branches. defaults to next */ prereleaseBranches: string[]; diff --git a/packages/core/src/git.ts b/packages/core/src/git.ts index a8da2170a..9fdfeb3b0 100644 --- a/packages/core/src/git.ts +++ b/packages/core/src/git.ts @@ -36,7 +36,7 @@ export interface IGitOptions { repo: string; /** The URL to the GitHub (public or enterprise) the project is using */ baseUrl?: string; - /** The main branch of the repo. Usually master */ + /** The main branch of the repo */ baseBranch: string; /** The URL to the GitHub graphql API (public or enterprise) the project is using */ graphqlBaseUrl?: string; @@ -439,14 +439,14 @@ export default class Git { /** Get the users associated with the GH_TOKEN */ @memoize() async getUser() { - const [, user] = await on(this.github.users.getAuthenticated()) || {}; + const [, user] = (await on(this.github.users.getAuthenticated())) || {}; return user?.data; } /** Get collaborator permission level to the repo. */ @memoize() async getTokenPermissionLevel() { - const user = await this.getUser() + const user = await this.getUser(); if (!user) { return { @@ -876,17 +876,21 @@ export default class Git { /** Get all the tags for a given branch. */ async getTags(branch: string) { - const tags = await execPromise("git", [ - "tag", - "--sort='creatordate'", - "--merged", - branch, - ]); - - return tags - .split("\n") - .map((tag) => tag.trim()) - .filter(Boolean); + try { + const tags = await execPromise("git", [ + "tag", + "--sort='creatordate'", + "--merged", + branch, + ]); + + return tags + .split("\n") + .map((tag) => tag.trim()) + .filter(Boolean); + } catch (error) { + return [] + } } /** Get the a tag that isn't in the base branch */ diff --git a/packages/core/src/release.ts b/packages/core/src/release.ts index 7c7463953..10b01cdf6 100644 --- a/packages/core/src/release.ts +++ b/packages/core/src/release.ts @@ -29,7 +29,6 @@ import { ISearchQuery, } from "./match-sha-to-pr"; import { LoadedAutoRc } from "./types"; -import { DEFAULT_PRERELEASE_BRANCHES } from "./config"; /** Construct a map of label => semver label */ export const getVersionMap = (labels = defaultLabels) => @@ -71,15 +70,7 @@ export default class Release { private readonly versionLabels: IVersionLabels; /** Initialize the release manager */ - constructor( - git: Git, - config: LoadedAutoRc = { - baseBranch: "master", - prereleaseBranches: DEFAULT_PRERELEASE_BRANCHES, - labels: defaultLabels, - }, - logger: ILogger = dummyLog() - ) { + constructor(git: Git, config: LoadedAutoRc, logger: ILogger = dummyLog()) { this.config = config; this.logger = logger; this.hooks = makeReleaseHooks(); diff --git a/packages/core/src/types.ts b/packages/core/src/types.ts index 1d5d21255..108d0bbba 100644 --- a/packages/core/src/types.ts +++ b/packages/core/src/types.ts @@ -18,7 +18,7 @@ const githubInformation = t.partial({ githubApi: t.string, /** The github graphql api to interact with */ githubGraphqlApi: t.string, - /** The branch that is used as the base. defaults to master */ + /** The branch that is used as the base */ baseBranch: t.string, }); @@ -128,7 +128,7 @@ export const loadedAutoRc = t.intersection([ labels: t.array(labelDefinition), /** Branches to create pre-releases from */ prereleaseBranches: t.array(t.string), - /** The branch that is used as the base. defaults to master */ + /** The branch that is used as the base */ baseBranch: t.string, }), ]); diff --git a/packages/core/src/utils/__tests__/verify-auth.test.ts b/packages/core/src/utils/__tests__/verify-auth.test.ts index 3b369acb4..66d852ff5 100644 --- a/packages/core/src/utils/__tests__/verify-auth.test.ts +++ b/packages/core/src/utils/__tests__/verify-auth.test.ts @@ -13,7 +13,7 @@ describe("verify-auth", () => { throw new Error(); }, })); - expect(await verifyAuth("origin", "master")).toBe(false); + expect(await verifyAuth("origin", "main")).toBe(false); }); test("should verify auth when we can push to remote", async () => { @@ -22,7 +22,7 @@ describe("verify-auth", () => { kill: () => {}, on: (_: string, cb: () => void) => cb(), })); - expect(await verifyAuth("origin", "master")).toBe(true); + expect(await verifyAuth("origin", "main")).toBe(true); }); test("should not verify auth when we can't push to remote", async () => { @@ -34,6 +34,6 @@ describe("verify-auth", () => { kill: () => {}, on: (_: string, cb: () => void) => cb(), })); - expect(await verifyAuth("bad", "master")).toBe(false); + expect(await verifyAuth("bad", "main")).toBe(false); }); }); diff --git a/packages/core/src/utils/get-current-branch.ts b/packages/core/src/utils/get-current-branch.ts index a89034cca..cbc6e07d9 100644 --- a/packages/core/src/utils/get-current-branch.ts +++ b/packages/core/src/utils/get-current-branch.ts @@ -7,7 +7,7 @@ const env = envCi(); export function getCurrentBranch() { const isPR = "isPr" in env && env.isPr; let branch: string | undefined; - // env-ci sets branch to target branch (ex: master) in some CI services. + // env-ci sets branch to target branch (ex: main) in some CI services. // so we should make sure we aren't in a PR just to be safe if (isPR && "prBranch" in env) { diff --git a/plugins/conventional-commits/__tests__/conventional-commits.test.ts b/plugins/conventional-commits/__tests__/conventional-commits.test.ts index a368b0aef..e88108425 100644 --- a/plugins/conventional-commits/__tests__/conventional-commits.test.ts +++ b/plugins/conventional-commits/__tests__/conventional-commits.test.ts @@ -1,4 +1,4 @@ -import Auto from "@auto-it/core"; +import Auto, { DEFAULT_PRERELEASE_BRANCHES } from "@auto-it/core"; import makeCommitFromMsg from "@auto-it/core/dist/__tests__/make-commit-from-msg"; import Git from "@auto-it/core/dist/git"; import LogParse from "@auto-it/core/dist/log-parse"; @@ -13,6 +13,12 @@ import ConventionalCommitsPlugin from "../src"; const versionLabels = getVersionMap(defaultLabels); +const config = { + baseBranch: "main", + prereleaseBranches: DEFAULT_PRERELEASE_BRANCHES, + labels: defaultLabels, +}; + test("should do nothing when conventional commit message is not present", async () => { const conventionalCommitsPlugin = new ConventionalCommitsPlugin(); const autoHooks = makeHooks(); @@ -142,7 +148,7 @@ test("should not include label-less head commit if any other commit in PR has co semVerLabels: versionLabels, logger: dummyLog(), git: mockGit, - release: new Release(mockGit), + release: new Release(mockGit, config), } as Auto); autoHooks.onCreateLogParse.call(logParse); @@ -179,7 +185,7 @@ test("should include labeled head commit", async () => { semVerLabels: versionLabels, logger: dummyLog(), git: mockGit, - release: new Release(mockGit), + release: new Release(mockGit, config), } as Auto); autoHooks.onCreateLogParse.call(logParse); @@ -212,7 +218,7 @@ test("should respect PR label if SEMVER", async () => { semVerLabels: versionLabels, logger: dummyLog(), git: mockGit, - release: new Release(mockGit), + release: new Release(mockGit, config), } as Auto); autoHooks.onCreateLogParse.call(logParse); @@ -245,7 +251,7 @@ test("should add conventional commit label if none/skip", async () => { semVerLabels: versionLabels, logger: dummyLog(), git: mockGit, - release: new Release(mockGit), + release: new Release(mockGit, config), } as Auto); autoHooks.onCreateLogParse.call(logParse); @@ -277,7 +283,7 @@ test("should not add skip when a non skip commit is present with a skip commit", semVerLabels: versionLabels, logger: dummyLog(), git: mockGit, - release: new Release(mockGit), + release: new Release(mockGit, config), } as Auto); autoHooks.onCreateLogParse.call(logParse); diff --git a/plugins/crates/__tests__/crates.test.ts b/plugins/crates/__tests__/crates.test.ts index 44c6911e0..160bebdac 100644 --- a/plugins/crates/__tests__/crates.test.ts +++ b/plugins/crates/__tests__/crates.test.ts @@ -224,7 +224,7 @@ describe("CratesPlugin", () => { hooks, logger: dummyLog(), remote: "origin", - baseBranch: "master", + baseBranch: "main", } as Auto.Auto); await hooks.publish.promise({ bump: Auto.SEMVER.patch }); expect(exec).toHaveBeenCalledWith("cargo", ["publish"]); @@ -233,7 +233,7 @@ describe("CratesPlugin", () => { "--follow-tags", "--set-upstream", "origin", - "master", + "main", ]); }); }); diff --git a/plugins/docker/__tests__/docker.test.ts b/plugins/docker/__tests__/docker.test.ts index 416ddd9d6..9fd38fa49 100644 --- a/plugins/docker/__tests__/docker.test.ts +++ b/plugins/docker/__tests__/docker.test.ts @@ -289,7 +289,7 @@ describe("Docker Plugin", () => { const hooks = setup( { getLatestTagInBranch: () => "v1.0.0", - getCurrentBranch: () => "master", + getCurrentBranch: () => "main", remote: "github.com", }, { registry, image: sourceImage, tagLatest: false } @@ -308,7 +308,7 @@ describe("Docker Plugin", () => { const hooks = setup( { getLatestTagInBranch: () => "v1.0.0", - getCurrentBranch: () => "master", + getCurrentBranch: () => "main", remote: "github.com", }, { registry, image: sourceImage, tagLatest: true } diff --git a/plugins/jira/__tests__/jira.test.ts b/plugins/jira/__tests__/jira.test.ts index af12ff136..1f6742ea5 100644 --- a/plugins/jira/__tests__/jira.test.ts +++ b/plugins/jira/__tests__/jira.test.ts @@ -112,7 +112,7 @@ const testOptions = (): IGenerateReleaseNotesOptions => ({ repo: "auto", baseUrl: "https://github.custom.com/foobar/auto", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); const logParse = new LogParse(); diff --git a/plugins/npm/__tests__/monorepo-log.test.ts b/plugins/npm/__tests__/monorepo-log.test.ts index 1500548d1..e50c2f3bd 100644 --- a/plugins/npm/__tests__/monorepo-log.test.ts +++ b/plugins/npm/__tests__/monorepo-log.test.ts @@ -103,7 +103,7 @@ test("should group sections for packages", async () => { repo: "test", baseUrl: "https://github.custom.com/", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); @@ -167,7 +167,7 @@ test("should create sections for packages", async () => { repo: "test", baseUrl: "https://github.custom.com/", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); @@ -227,7 +227,7 @@ test("should be able to disable sections for packages", async () => { repo: "test", baseUrl: "https://github.custom.com/", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); @@ -287,7 +287,7 @@ test("should add versions for independent packages", async () => { repo: "test", baseUrl: "https://github.custom.com/", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); @@ -344,7 +344,7 @@ test("should create extra change logs for sub-packages", async () => { repo: "test", baseUrl: "https://github.custom.com/", labels: defaultLabels, - baseBranch: "master", + baseBranch: "main", prereleaseBranches: ["next"], }); t.hooks.renderChangelogTitle.tap("test", (label) => label); diff --git a/plugins/npm/__tests__/npm-next.test.ts b/plugins/npm/__tests__/npm-next.test.ts index 669d07d8f..877bbec60 100644 --- a/plugins/npm/__tests__/npm-next.test.ts +++ b/plugins/npm/__tests__/npm-next.test.ts @@ -68,7 +68,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -121,7 +121,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -155,7 +155,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -199,7 +199,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -259,7 +259,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -304,7 +304,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -343,7 +343,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -387,7 +387,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", prefixRelease: (v: string) => v, @@ -456,7 +456,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (v: string) => `v${v}`, git: { @@ -536,7 +536,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (v: string) => `v${v}`, git: { @@ -593,7 +593,7 @@ describe("next", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (v: string) => `v${v}`, git: { diff --git a/plugins/npm/__tests__/npm.test.ts b/plugins/npm/__tests__/npm.test.ts index d4ea442ae..9fefa7c96 100644 --- a/plugins/npm/__tests__/npm.test.ts +++ b/plugins/npm/__tests__/npm.test.ts @@ -33,7 +33,7 @@ jest.mock( () => (...args: any[]) => execPromise(...args) ); jest.mock("../../../packages/core/dist/utils/get-current-branch", () => ({ - getCurrentBranch: () => "master", + getCurrentBranch: () => "main", })); jest.mock( "../../../packages/core/dist/utils/get-lerna-packages", @@ -180,7 +180,7 @@ describe("getAuthor", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -200,7 +200,7 @@ describe("getAuthor", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -227,7 +227,7 @@ describe("getAuthor", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -253,7 +253,7 @@ describe("getRepository", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -285,7 +285,7 @@ describe("getPreviousVersion", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, } as Auto.Auto); @@ -308,7 +308,7 @@ describe("getPreviousVersion", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, } as Auto.Auto); @@ -332,7 +332,7 @@ describe("getPreviousVersion", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, } as Auto.Auto); @@ -366,7 +366,7 @@ describe("getPreviousVersion", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, } as Auto.Auto); @@ -401,7 +401,7 @@ describe("modifyConfig", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger, } as Auto.Auto); @@ -417,7 +417,7 @@ describe("modifyConfig", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger, } as Auto.Auto); @@ -448,7 +448,7 @@ describe("modifyConfig", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger, } as Auto.Auto); @@ -473,7 +473,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger, } as Auto.Auto); @@ -503,7 +503,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -531,7 +531,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -567,7 +567,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -603,7 +603,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -651,7 +651,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -676,7 +676,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -703,7 +703,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -731,7 +731,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -762,7 +762,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -799,7 +799,7 @@ describe("publish", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); @@ -817,7 +817,7 @@ describe("publish", () => { "--follow-tags", "--set-upstream", "origin", - "master", + "main", ]); }); }); @@ -835,7 +835,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -866,7 +866,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -901,7 +901,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -935,7 +935,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -972,7 +972,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -1007,7 +1007,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), getCurrentVersion: () => "1.2.3", git: { @@ -1038,7 +1038,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("1.2.3"), @@ -1086,7 +1086,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("1.2.3"), @@ -1138,7 +1138,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("1.2.3"), @@ -1197,7 +1197,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("1.2.3"), @@ -1245,7 +1245,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), } as Auto.Auto); existsSync.mockReturnValueOnce(true); @@ -1295,7 +1295,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("@foo/lib:1.1.0"), @@ -1342,7 +1342,7 @@ describe("canary", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), git: { getLatestRelease: () => Promise.resolve("@foo/lib:1.1.0"), @@ -1400,7 +1400,7 @@ describe("makeRelease", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, git: { publish } as any, @@ -1469,7 +1469,7 @@ describe("beforeCommitChangelog", () => { config: { prereleaseBranches: ["next"] }, hooks, remote: "origin", - baseBranch: "master", + baseBranch: "main", logger: dummyLog(), prefixRelease: (str) => str, release: { diff --git a/plugins/npm/src/index.ts b/plugins/npm/src/index.ts index ef2d8cd77..040f6d217 100644 --- a/plugins/npm/src/index.ts +++ b/plugins/npm/src/index.ts @@ -651,7 +651,7 @@ export default class NPMPlugin implements IPlugin { const prereleaseBranches = auto.config?.prereleaseBranches || DEFAULT_PRERELEASE_BRANCHES; const branch = getCurrentBranch(); - // if ran from master we publish the prerelease to the first + // if ran from baseBranch we publish the prerelease to the first // configured prerelease branch const prereleaseBranch = branch && prereleaseBranches.includes(branch) @@ -1263,7 +1263,7 @@ export default class NPMPlugin implements IPlugin { if (!this.commitNextVersion) { // we do not want to commit the next version. this causes - // merge conflicts when merged into master. We also do not want + // merge conflicts when merged into baseBranch. We also do not want // to re-implement the magic lerna does. So instead we let lerna // commit+tag the new version and roll back all the tags to the // previous commit. @@ -1304,7 +1304,7 @@ export default class NPMPlugin implements IPlugin { "version", newVersion, // we do not want to commit the next version. this causes - // merge conflicts when merged into master + // merge conflicts when merged into baseBranch "--no-git-tag-version", ...verboseArgs, ]); diff --git a/plugins/released/__tests__/released-label.test.ts b/plugins/released/__tests__/released-label.test.ts index db9d78040..be69ec43d 100644 --- a/plugins/released/__tests__/released-label.test.ts +++ b/plugins/released/__tests__/released-label.test.ts @@ -12,7 +12,7 @@ import botList from "@auto-it/bot-list"; import ReleasedLabelPlugin from "../src"; -const git = new Git({ owner: "1", repo: "2", baseBranch: "master" }); +const git = new Git({ owner: "1", repo: "2", baseBranch: "main" }); const log = new LogParse(); const comment = jest.fn(); From 563fefa9b59278e08a9d85f4d0a134ad668829e7 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:01:48 -0800 Subject: [PATCH 063/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 41 +++++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 45 +++++++++++++++++++++ packages/core/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/all-contributors/CHANGELOG.md | 40 ++++++++++++++++++ plugins/brew/CHANGELOG.md | 40 ++++++++++++++++++ plugins/chrome/CHANGELOG.md | 40 ++++++++++++++++++ plugins/cocoapods/CHANGELOG.md | 40 ++++++++++++++++++ plugins/conventional-commits/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/crates/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/docker/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/exec/CHANGELOG.md | 40 ++++++++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 40 ++++++++++++++++++ plugins/gem/CHANGELOG.md | 40 ++++++++++++++++++ plugins/gh-pages/CHANGELOG.md | 40 ++++++++++++++++++ plugins/git-tag/CHANGELOG.md | 40 ++++++++++++++++++ plugins/gradle/CHANGELOG.md | 40 ++++++++++++++++++ plugins/jira/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/maven/CHANGELOG.md | 40 ++++++++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 40 ++++++++++++++++++ plugins/npm/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/omit-commits/CHANGELOG.md | 40 ++++++++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 40 ++++++++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 40 ++++++++++++++++++ plugins/released/CHANGELOG.md | 44 ++++++++++++++++++++ plugins/s3/CHANGELOG.md | 40 ++++++++++++++++++ plugins/slack/CHANGELOG.md | 40 ++++++++++++++++++ plugins/twitter/CHANGELOG.md | 40 ++++++++++++++++++ plugins/upload-assets/CHANGELOG.md | 40 ++++++++++++++++++ plugins/vscode/CHANGELOG.md | 44 ++++++++++++++++++++ 30 files changed, 1199 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d57ae8d5b..be0aaa152 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,44 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- `auto`, `@auto-it/core`, `@auto-it/conventional-commits`, `@auto-it/crates`, `@auto-it/docker`, `@auto-it/jira`, `@auto-it/npm`, `@auto-it/released`, `@auto-it/vscode` + - Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.11.0 (Tue Jan 19 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index d4fb08853..a2962653f 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.11.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index c0625048c..df2bd72b2 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,48 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- remove "master" from docs ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.11.0 (Tue Jan 19 2021) #### 🔩 Dependency Updates diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9faa1244b..841a50e4a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index 0a2350bcf..de03df696 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index 36cd82588..201741d43 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index db1cb3a50..a3ec4a1bd 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index 08640128e..b0c9a5cf1 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index 0eb224f64..6aa862985 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index 5189dd41f..8118f5b86 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index d971b3c1c..4083c1c4c 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index dda9b51cd..74e8d0ce5 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index 62f67b69d..f711f703e 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index 3110f13f7..84755d391 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index 21893db36..e07ce5b27 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 79e39280c..b49a35102 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index 5d444399b..f400bdd8b 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index cd88e608b..d9303213f 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index 5e3d92d4c..eb6353076 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 4e2ee101b..8b8257233 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index a5c73924c..04693b90c 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.11.0 (Tue Jan 19 2021) :tada: This release contains work from a new contributor! :tada: diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index 0359d6913..3b20a411a 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index 37d0f93cd..f2d301f47 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index 20ea052b0..0daa59920 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index a87e10a86..14110ad61 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- use `main` branch if it exists ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index f8bc422c3..a7ab997cd 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index d6e230877..21a9e1896 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 689b0b0b3..9d438728d 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.11.0 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index 180123017..d0c5822f6 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,43 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 57074fd19..7ae39523b 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,47 @@ +# v10.12.0 (Thu Jan 21 2021) + +### Release Notes + +#### Support "main" as a default "baseBranch" ([#1736](https://github.com/intuit/auto/pull/1736)) + +Many communities, both on GitHub and in the wider Git community, are considering renaming the default branch name of their repository from `master` to `main`. + +This pull request add default support for a `main` branch instead of `master`. If `main` is detected then that will be used as the `baseBranch` without the need for any configuration. + +## Why + +The community is shifting. + +Todo: + +- [x] Add tests +- [ ] Add docs + +## Change Type + +Indicate the type of change your pull request is: + +- [ ] `documentation` +- [ ] `patch` +- [x] `minor` +- [ ] `major` + +--- + +#### 🚀 Enhancement + +- Support "main" as a default "baseBranch" [#1736](https://github.com/intuit/auto/pull/1736) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- remove "master" from docs ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.10.1 (Tue Jan 19 2021) #### 🐛 Bug Fix From 44c605020fb8d45b2104777c7d059c8b1c56a60b Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:01:50 -0800 Subject: [PATCH 064/191] Bump version to: v10.12.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 69463e129..60ccb70b8 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.11.0", + "version": "10.12.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 6bbc63ba1..ff350529e 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.11.0", + "version": "10.12.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 68eab3497..028c840c5 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.11.0", + "version": "10.12.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 7b55eb85c..fe97292c6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.11.0", + "version": "10.12.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 8e30c5d47..1ff23cf7d 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.11.0", + "version": "10.12.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 178abe409..bede342b6 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 0db65b280..2de801846 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index c84dbd87d..54975c305 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index c4236ad9d..ff1aa09c1 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 3d9290df3..9e7597353 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index b0937ddc8..2200dbb9a 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 4ef62f928..44f32d3aa 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 4ad04a838..9f2bf00d8 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 21ef53aa4..7814aac67 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index e5fdaa099..07500af65 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 02eccede8..0e5d8752e 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 256e0428f..a0a879b7d 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index c8d700e10..2fb7a3730 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index f8d979823..c5418da2f 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index a8dd0899a..ef5f322cb 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 1a4aedbef..2fa765376 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 2e8936f10..04a63b398 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 9779f0d71..0f3e8753b 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index c56136e62..81dd5c72d 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 0c5b43f78..ca13f385f 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index edf06686f..cbc39d5fd 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index f7c2178e8..67189be1d 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index e24fbd9b3..5f558f040 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 61e2f87a6..36206d3fc 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 056b13432..19c7d0324 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 4bdf1e1b7..a85daf407 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.11.0", + "version": "10.12.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 20f200a927f012f30a244b0a7fc772f301dcd671 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:01:51 -0800 Subject: [PATCH 065/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 576df3465..531c73ada 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.11.0/auto-macos.gz" - version "v10.11.0" - sha256 "910c62b452b08753eaf86f1722afa075066a51a18dfe2ca488c36e2d7a5e4d91" + url "https://github.com/intuit/auto/releases/download/v10.12.0/auto-macos.gz" + version "v10.12.0" + sha256 "f1a4befd664b1302ac89c0d2518d3b772082e6cc7b3d9efd9280bddb78d10085" def install libexec.install Dir["*"] From 1f96b1e8a0f7f232e89d13b66262cced94d19f50 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:17:31 -0800 Subject: [PATCH 066/191] respect `skip` and `none` releases for prereleases --- packages/core/src/__tests__/auto.test.ts | 27 ++++++++++++++++++++++++ packages/core/src/auto.ts | 9 +++++--- 2 files changed, 33 insertions(+), 3 deletions(-) diff --git a/packages/core/src/__tests__/auto.test.ts b/packages/core/src/__tests__/auto.test.ts index 0d7a897c9..893de02f6 100644 --- a/packages/core/src/__tests__/auto.test.ts +++ b/packages/core/src/__tests__/auto.test.ts @@ -1355,6 +1355,33 @@ describe("Auto", () => { await auto.next({}); expect(afterRelease).toHaveBeenCalled(); }); + + test("respects none release labels", async () => { + const auto = new Auto({ ...defaults, plugins: [] }); + + // @ts-ignore + auto.checkClean = () => Promise.resolve(true); + auto.logger = dummyLog(); + await auto.loadConfig(); + auto.remote = "origin"; + auto.git!.publish = () => Promise.resolve({ data: {} } as any); + auto.git!.getLastTagNotInBaseBranch = () => + Promise.reject(new Error("Test")); + auto.git!.getLatestTagInBranch = () => Promise.reject(new Error("Test")); + auto.git!.getLatestRelease = () => Promise.resolve("abcd"); + auto.release!.generateReleaseNotes = () => Promise.resolve("notes"); + auto.release!.getCommitsInRelease = () => + Promise.resolve([ + makeCommitFromMsg("Test Commit", { labels: ["skip-release"] }), + ]); + + const next = jest.fn(); + auto.hooks.next.tap("test", next); + jest.spyOn(auto.release!, "getCommits").mockImplementation(); + + await auto.next({}); + expect(next).not.toHaveBeenCalled(); + }); }); describe("shipit", () => { diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 24f6e35a2..485a1d862 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -1383,9 +1383,12 @@ export default class Auto { const commits = await this.release.getCommitsInRelease(lastTag); const releaseNotes = await this.release.generateReleaseNotes(lastTag); const labels = commits.map((commit) => commit.labels); - const bump = - calculateSemVerBump(labels, this.semVerLabels!, this.config) || - SEMVER.patch; + const bump = calculateSemVerBump(labels, this.semVerLabels!, this.config); + + if (bump === "") { + this.logger.log.info("No version published."); + return; + } if (!args.quiet) { this.logger.log.info("Full Release notes for next release:"); From b205b48afa86da4ec2ce1f64ef03612bf32801f2 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:46:12 -0800 Subject: [PATCH 067/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/core/CHANGELOG.md | 13 +++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++++++ plugins/cocoapods/CHANGELOG.md | 12 ++++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 12 ++++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++++++ plugins/released/CHANGELOG.md | 12 ++++++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++++++ 30 files changed, 351 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index be0aaa152..3d135b715 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- `@auto-it/core` + - respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index a2962653f..4908b0322 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.1/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index df2bd72b2..896e86c50 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 841a50e4a..9b194ef45 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- respect `skip` and `none` releases for prereleases ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index de03df696..429a35612 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index 201741d43..9188d36c5 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index a3ec4a1bd..5a6f73012 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index b0c9a5cf1..b2e240dd1 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index 6aa862985..aaca8346c 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index 8118f5b86..5e05e5e28 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index 4083c1c4c..022c1018f 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index 74e8d0ce5..fdaf74486 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index f711f703e..237040b21 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index 84755d391..0f6a54237 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index e07ce5b27..c52c25db2 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index b49a35102..934208801 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index f400bdd8b..c0c341c8b 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index d9303213f..876117024 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index eb6353076..28b19f020 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 8b8257233..197146706 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index 04693b90c..26a7586e7 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index 3b20a411a..124e97ba4 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index f2d301f47..5e61e16aa 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index 0daa59920..19dd2bf69 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index 14110ad61..27fd4efe0 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index a7ab997cd..1e68e6135 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index 21a9e1896..483843f43 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 9d438728d..070f55001 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index d0c5822f6..2cd778b3a 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 7ae39523b..12b767a0a 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.1 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- respect `skip` and `none` releases for prereleases [#1738](https://github.com/intuit/auto/pull/1738) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.0 (Thu Jan 21 2021) ### Release Notes From aa43348cf16a062868c609bdc42fe33bc032ad6c Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:46:15 -0800 Subject: [PATCH 068/191] Bump version to: v10.12.1 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 60ccb70b8..358ef8987 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.12.0", + "version": "10.12.1", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index ff350529e..1c739021c 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.12.0", + "version": "10.12.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 028c840c5..5ef9108d6 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.12.0", + "version": "10.12.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index fe97292c6..efbf91b98 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.12.0", + "version": "10.12.1", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 1ff23cf7d..358d0e156 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.12.0", + "version": "10.12.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index bede342b6..40ad6baac 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 2de801846..e1ff4bcbf 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 54975c305..52ab136f0 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index ff1aa09c1..8afbbf7f6 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 9e7597353..a8f83d665 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 2200dbb9a..4d193b821 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 44f32d3aa..89b8f2015 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 9f2bf00d8..8c48e2c28 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 7814aac67..d63c214b6 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 07500af65..d67874c67 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 0e5d8752e..6bca89dae 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index a0a879b7d..bcbc08c71 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 2fb7a3730..63c94f478 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index c5418da2f..c7000e434 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index ef5f322cb..c10cfc61d 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 2fa765376..3800218ae 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 04a63b398..a83f7569c 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 0f3e8753b..1e95c44c5 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 81dd5c72d..2b6f62619 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index ca13f385f..db61a4fb6 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index cbc39d5fd..b35e52450 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 67189be1d..8acb105c9 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 5f558f040..e214a6492 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 36206d3fc..51e0174df 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 19c7d0324..c4c3052d6 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index a85daf407..8757542d9 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.12.0", + "version": "10.12.1", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From f825549811ed1aa385ac318ad5af1daa2686289d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:46:15 -0800 Subject: [PATCH 069/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 531c73ada..50b57b5f0 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.12.0/auto-macos.gz" - version "v10.12.0" - sha256 "f1a4befd664b1302ac89c0d2518d3b772082e6cc7b3d9efd9280bddb78d10085" + url "https://github.com/intuit/auto/releases/download/v10.12.1/auto-macos.gz" + version "v10.12.1" + sha256 "b7fe7abd838da0e9e0f06e60e82e34439f7c219a91fd204e80cf39f50c434c2d" def install libexec.install Dir["*"] From ecdb43aeb94e9ceac5ed281ed04083171a77590b Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 14:52:28 -0800 Subject: [PATCH 070/191] handle case where auto isn't used in a git repo --- packages/core/src/auto.ts | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/packages/core/src/auto.ts b/packages/core/src/auto.ts index 485a1d862..57d9dd25d 100644 --- a/packages/core/src/auto.ts +++ b/packages/core/src/auto.ts @@ -349,15 +349,19 @@ function escapeRegExp(str: string) { /** Check if a repo has a branch */ function hasBranch(branch: string) { - const branches = execSync("git branch --list --all", { - encoding: "utf-8", - }).split("\n"); + try { + const branches = execSync("git branch --list --all", { + encoding: "utf-8", + }).split("\n"); - return branches.some((b) => { - const parts = b.split("/"); + return branches.some((b) => { + const parts = b.split("/"); - return b === branch || parts[parts.length - 1] === branch; - }); + return b === branch || parts[parts.length - 1] === branch; + }); + } catch (error) { + return false; + } } /** The Error that gets thrown when a label existence check fails */ From 06c0afcdfa788b6bad6e1ad23fca9e73bd4c9990 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 15:17:20 -0800 Subject: [PATCH 071/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ packages/core/CHANGELOG.md | 13 +++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++++++ plugins/cocoapods/CHANGELOG.md | 12 ++++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 12 ++++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++++++ plugins/released/CHANGELOG.md | 12 ++++++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++++++ 30 files changed, 351 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d135b715..091f3e858 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- `@auto-it/core` + - handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 4908b0322..ef6e857f2 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.2/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 896e86c50..7454a5e34 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9b194ef45..cb5b3cb81 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- handle case where auto isn't used in a git repo ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index 429a35612..8bfe3602b 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index 9188d36c5..e10888348 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index 5a6f73012..3f3e51786 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index b2e240dd1..077edd8c6 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index aaca8346c..6f277e3ed 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index 5e05e5e28..fd506e844 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index 022c1018f..c37fa722a 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index fdaf74486..81016c6e5 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index 237040b21..cbb6bad1a 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index 0f6a54237..c440b08d1 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index c52c25db2..f48d2884d 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 934208801..64719da93 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index c0c341c8b..fb003f9d6 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index 876117024..55b6831ac 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index 28b19f020..b069b2921 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 197146706..4ae763c67 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index 26a7586e7..6d0b63307 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index 124e97ba4..651658fd9 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index 5e61e16aa..01b85fa90 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index 19dd2bf69..203e93ca7 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index 27fd4efe0..c3c59c4ca 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index 1e68e6135..e2e67b9bf 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index 483843f43..bd36ee03d 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 070f55001..054ff7ac8 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index 2cd778b3a..9e822ef7c 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 12b767a0a..699d32546 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.12.2 (Thu Jan 21 2021) + +#### 🐛 Bug Fix + +- handle case where auto isn't used in a git repo [#1739](https://github.com/intuit/auto/pull/1739) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.1 (Thu Jan 21 2021) #### 🐛 Bug Fix From 0e35b90f381e33b35d31f2c9dc727c8f40ed356c Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 15:17:22 -0800 Subject: [PATCH 072/191] Bump version to: v10.12.2 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 31 files changed, 31 insertions(+), 31 deletions(-) diff --git a/lerna.json b/lerna.json index 358ef8987..6429ecf77 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.12.1", + "version": "10.12.2", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 1c739021c..ac22c12af 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.12.1", + "version": "10.12.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 5ef9108d6..edde05959 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.12.1", + "version": "10.12.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index efbf91b98..7e3eaacc9 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.12.1", + "version": "10.12.2", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 358d0e156..349eaf0c2 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.12.1", + "version": "10.12.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 40ad6baac..c7433bb83 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index e1ff4bcbf..fd0d683e2 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 52ab136f0..6768568df 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 8afbbf7f6..839126d16 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index a8f83d665..70f781de4 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 4d193b821..94f3af930 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 89b8f2015..458f0ade9 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 8c48e2c28..66c32ff6f 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index d63c214b6..121d13653 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index d67874c67..8f336f13e 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 6bca89dae..4ddc3fe11 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index bcbc08c71..6c0d01d80 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 63c94f478..06c47b923 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index c7000e434..a9b2aa236 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index c10cfc61d..1a54de9a5 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 3800218ae..beecd0cd5 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index a83f7569c..6e47a9b6a 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 1e95c44c5..1acc4606b 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 2b6f62619..575864110 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index db61a4fb6..c869ea2e5 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index b35e52450..b261a0d88 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 8acb105c9..6693d7da8 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index e214a6492..afcc62acd 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 51e0174df..563a1883f 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index c4c3052d6..91bc40cd7 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 8757542d9..066aa42c8 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.12.1", + "version": "10.12.2", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 77b188386404342288436daa30a20b27600ba60d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Thu, 21 Jan 2021 15:17:22 -0800 Subject: [PATCH 073/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index 50b57b5f0..b030192eb 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.12.1/auto-macos.gz" - version "v10.12.1" - sha256 "b7fe7abd838da0e9e0f06e60e82e34439f7c219a91fd204e80cf39f50c434c2d" + url "https://github.com/intuit/auto/releases/download/v10.12.2/auto-macos.gz" + version "v10.12.2" + sha256 "1e9f7e3e71d61f1b72cb76142eeecace84d90dc3794fdfc55449d5eb9dcac42f" def install libexec.install Dir["*"] From 7158ff2806e97850c1d54b3bd0367e59602b2feb Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Fri, 22 Jan 2021 10:54:30 -0800 Subject: [PATCH 074/191] fix jenkins setup --- docs/pages/docs/build-platforms/jenkins.mdx | 4 +- package.json | 2 +- yarn.lock | 55 ++++----------------- 3 files changed, 13 insertions(+), 48 deletions(-) diff --git a/docs/pages/docs/build-platforms/jenkins.mdx b/docs/pages/docs/build-platforms/jenkins.mdx index 6c7078e49..2d63d5f48 100644 --- a/docs/pages/docs/build-platforms/jenkins.mdx +++ b/docs/pages/docs/build-platforms/jenkins.mdx @@ -69,7 +69,7 @@ pipeline { stage('Next') { when { branch 'next' } steps { - sh 'git checkout next' + sh 'git checkout -b next' sh "auto shipit" } } @@ -80,7 +80,7 @@ pipeline { // Make sure to checkout your baseBranch here or the push will fail! // The error will look like the following: // error: src refspec main does not match any - sh 'git checkout main' + sh 'git checkout -b main' sh 'auto shipit' } } diff --git a/package.json b/package.json index 66f5d7851..14d597d16 100644 --- a/package.json +++ b/package.json @@ -66,7 +66,7 @@ "jest-snapshot-serializer-ansi": "^1.0.0", "lerna": "^3.13.4", "lint-staged": "^10.0.7", - "next-ignite": "^0.8.21", + "next-ignite": "^0.8.23", "prettier": "^2.0.1", "push-dir": "^0.4.1", "rimraf": "^3.0.0", diff --git a/yarn.lock b/yarn.lock index bc649d343..1674d6b68 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.10.0" + version "10.11.0" "@auto-it/core@link:packages/core": - version "10.10.0" + version "10.11.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.10.0" + version "10.11.0" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.10.0" + version "10.11.0" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.10.0" + version "10.11.0" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.10.0" + version "10.11.0" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2678,19 +2678,6 @@ "@typescript-eslint/types" "4.13.0" "@typescript-eslint/visitor-keys" "4.13.0" -"@typescript-eslint/scope-manager@4.13.0": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.13.0.tgz#5b45912a9aa26b29603d8fa28f5e09088b947141" - integrity sha512-UpK7YLG2JlTp/9G4CHe7GxOwd93RBf3aHO5L+pfjIrhtBvZjHKbMhBXTIQNkbz7HZ9XOe++yKrXutYm5KmjWgQ== - dependencies: - "@typescript-eslint/types" "4.13.0" - "@typescript-eslint/visitor-keys" "4.13.0" - -"@typescript-eslint/types@4.13.0": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" - integrity sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ== - "@typescript-eslint/types@4.13.0": version "4.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" @@ -2710,28 +2697,6 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/typescript-estree@4.13.0": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz#cf6e2207c7d760f5dfd8d18051428fadfc37b45e" - integrity sha512-9A0/DFZZLlGXn5XA349dWQFwPZxcyYyCFX5X88nWs2uachRDwGeyPz46oTsm9ZJE66EALvEns1lvBwa4d9QxMg== - dependencies: - "@typescript-eslint/types" "4.13.0" - "@typescript-eslint/visitor-keys" "4.13.0" - debug "^4.1.1" - globby "^11.0.1" - is-glob "^4.0.1" - lodash "^4.17.15" - semver "^7.3.2" - tsutils "^3.17.1" - -"@typescript-eslint/visitor-keys@4.13.0": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" - integrity sha512-6RoxWK05PAibukE7jElqAtNMq+RWZyqJ6Q/GdIxaiUj2Ept8jh8+FUVlbq9WxMYxkmEOPvCE5cRSyupMpwW31g== - dependencies: - "@typescript-eslint/types" "4.13.0" - eslint-visitor-keys "^2.0.0" - "@typescript-eslint/visitor-keys@4.13.0": version "4.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" @@ -10283,10 +10248,10 @@ neo-async@^2.6.2: resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.2.tgz#b4aafb93e3aeb2d8174ca53cf163ab7d7308305f" integrity sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw== -next-ignite@^0.8.21: - version "0.8.21" - resolved "https://registry.yarnpkg.com/next-ignite/-/next-ignite-0.8.21.tgz#8ea6620701eb6a8b359c939389e0707a98e1de7a" - integrity sha512-2QeaoU7muEsIVM1JUGVzDQplg6HQh2Bd2zfOfl0PFCsC0wZGGM+CNFQrYxOI7KomSqoHBwlUrlCsDZE4+u83WA== +next-ignite@^0.8.23: + version "0.8.23" + resolved "https://registry.yarnpkg.com/next-ignite/-/next-ignite-0.8.23.tgz#c3f3eb56684eda1ffc2ec87748457233f7cb6980" + integrity sha512-3bGURwXsu+lqR1rAh/7Vft0uGrJY0kREKLj6TzvlEQjWgu3RZZrOu+wNCpLzRNFB6khJMvsIDTehjsvPFBRhfQ== dependencies: "@babel/helper-call-delegate" "^7.12.1" "@mapbox/rehype-prism" "^0.4.0" From 44e63702516898147e8a5a0a0a267224af616546 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:29:25 +0000 Subject: [PATCH 075/191] Bump fast-glob from 3.2.4 to 3.2.5 Bumps [fast-glob](https://github.com/mrmlnc/fast-glob) from 3.2.4 to 3.2.5. - [Release notes](https://github.com/mrmlnc/fast-glob/releases) - [Commits](https://github.com/mrmlnc/fast-glob/compare/3.2.4...3.2.5) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..cbae76d5f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -6457,9 +6457,9 @@ fast-glob@^2.2.6: micromatch "^3.1.10" fast-glob@^3.1.1, fast-glob@^3.2.2: - version "3.2.4" - resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3" - integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ== + version "3.2.5" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.5.tgz#7939af2a656de79a4f1901903ee8adcaa7cb9661" + integrity sha512-2DtFcgT68wiTTiwZ2hNdJfcHNke9XOfnwmBRWXhmeKM8rF0TGwmC/Qto3S7RoZKp5cilZbxzO5iTNTQsJ+EeDg== dependencies: "@nodelib/fs.stat" "^2.0.2" "@nodelib/fs.walk" "^1.2.3" From 0c7efaf5bccf0792733d1d0ea3de5786361bc43d Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:31:22 +0000 Subject: [PATCH 076/191] Bump fp-ts from 2.8.2 to 2.9.3 Bumps [fp-ts](https://github.com/gcanti/fp-ts) from 2.8.2 to 2.9.3. - [Release notes](https://github.com/gcanti/fp-ts/releases) - [Changelog](https://github.com/gcanti/fp-ts/blob/master/CHANGELOG.md) - [Commits](https://github.com/gcanti/fp-ts/compare/2.8.2...2.9.3) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..5b22b7d68 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -6716,9 +6716,9 @@ forwarded@~0.1.2: integrity sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ= fp-ts@^2.5.3: - version "2.8.2" - resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.8.2.tgz#7948dea1ceef32e487d7f7f47bd2d3c4fcccfc0d" - integrity sha512-YKLBW75Rp+L9DuY1jr7QO6mZLTmJjy7tOqSAMcB2q2kBomqLjBMyV7dotpcnZmUYY6khMsfgYWtPbUDOFcNmkA== + version "2.9.3" + resolved "https://registry.yarnpkg.com/fp-ts/-/fp-ts-2.9.3.tgz#419b9103018ddf7c785acf2b3fecb2662afab5af" + integrity sha512-NjzcHYgigcbPQ6yJ52zwgsVDwKz3vwy9sjbxyzcvfXQm+j1BGeOPRuzLKEwsLyE4Xut6gG1FXJtsU9/gUB7tXg== fragment-cache@^0.2.1: version "0.2.1" From 62e11febef2483cba4717cef63711467386ae6c2 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:32:25 +0000 Subject: [PATCH 077/191] Bump type-fest from 0.18.0 to 0.20.2 Bumps [type-fest](https://github.com/sindresorhus/type-fest) from 0.18.0 to 0.20.2. - [Release notes](https://github.com/sindresorhus/type-fest/releases) - [Commits](https://github.com/sindresorhus/type-fest/compare/v0.18.0...v0.20.2) Signed-off-by: dependabot-preview[bot] --- packages/core/package.json | 2 +- yarn.lock | 19 ++++++++++++------- 2 files changed, 13 insertions(+), 8 deletions(-) diff --git a/packages/core/package.json b/packages/core/package.json index 7e3eaacc9..0e0c64ac6 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -70,7 +70,7 @@ "terminal-link": "^2.1.1", "tinycolor2": "^1.4.1", "tslib": "2.0.3", - "type-fest": "^0.18.0", + "type-fest": "^0.20.2", "typescript-memoize": "^1.0.0-alpha.3", "url-join": "^4.0.0" }, diff --git a/yarn.lock b/yarn.lock index 1674d6b68..b02494801 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -97,12 +97,12 @@ terminal-link "^2.1.1" tinycolor2 "^1.4.1" tslib "2.0.3" - type-fest "^0.18.0" + type-fest "^0.20.2" typescript-memoize "^1.0.0-alpha.3" url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -14467,6 +14467,11 @@ type-fest@^0.18.0: resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.18.0.tgz#2edfa6382d48653707344f7fccdb0443d460e8d6" integrity sha512-fbDukFPnJBdn2eZ3RR+5mK2slHLFd6gYHY7jna1KWWy4Yr4XysHuCdXRzy+RiG/HwG4WJat00vdC2UHky5eKiQ== +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + type-fest@^0.3.0: version "0.3.1" resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.3.1.tgz#63d00d204e059474fe5e1b7c011112bbd1dc29e1" From c18179907160c2485db83448bd2af1f7dc94b5c0 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:33:32 +0000 Subject: [PATCH 078/191] Bump change-case from 4.1.1 to 4.1.2 Bumps [change-case](https://github.com/blakeembrey/change-case) from 4.1.1 to 4.1.2. - [Release notes](https://github.com/blakeembrey/change-case/releases) - [Commits](https://github.com/blakeembrey/change-case/compare/change-case@4.1.1...change-case@4.1.2) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 219 ++++++++++++++++++++++++++++-------------------------- 1 file changed, 112 insertions(+), 107 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..f64f2dfbd 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -4003,13 +4003,13 @@ callsites@^3.0.0: resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== -camel-case@^4.1.1: - version "4.1.1" - resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.1.tgz#1fc41c854f00e2f7d0139dfeba1542d6896fe547" - integrity sha512-7fa2WcG4fYFkclIvEmxBbTvmibwF2/agfEBc6q3lOpVu0A13ltLsA+Hr/8Hp6kp5f+G7hKi6t8lys6XxP+1K6Q== +camel-case@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/camel-case/-/camel-case-4.1.2.tgz#9728072a954f805228225a6deea6b38461e1bd5a" + integrity sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw== dependencies: - pascal-case "^3.1.1" - tslib "^1.10.0" + pascal-case "^3.1.2" + tslib "^2.0.3" camelcase-css@2.0.1, camelcase-css@^2.0.1: version "2.0.1" @@ -4077,14 +4077,14 @@ caniuse-lite@^1.0.30001109, caniuse-lite@^1.0.30001154: resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001176.tgz#e44bac506d4656bae4944a1417f41597bd307335" integrity sha512-VWdkYmqdkDLRe0lvfJlZQ43rnjKqIGKHWhWWRbkqMsJIUaYDNf/K/sdZZcVO6YKQklubokdkJY+ujArsuJ5cag== -capital-case@^1.0.3: - version "1.0.3" - resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.3.tgz#339bd77e8fab6cf75111d4fca509b3edf7c117c8" - integrity sha512-OlUSJpUr7SY0uZFOxcwnDOU7/MpHlKTZx2mqnDYQFrDudXLFm0JJ9wr/l4csB+rh2Ug0OPuoSO53PqiZBqno9A== +capital-case@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/capital-case/-/capital-case-1.0.4.tgz#9d130292353c9249f6b00fa5852bee38a717e669" + integrity sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" - upper-case-first "^2.0.1" + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" capture-exit@^2.0.0: version "2.0.0" @@ -4153,22 +4153,22 @@ chalk@^4.0.0, chalk@^4.1.0: supports-color "^7.1.0" change-case@^4.0.0: - version "4.1.1" - resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.1.tgz#d5005709275952e7963fed7b91e4f9fdb6180afa" - integrity sha512-qRlUWn/hXnX1R1LBDF/RelJLiqNjKjUqlmuBVSEIyye8kq49CXqkZWKmi8XeUAdDXWFOcGLUMZ+aHn3Q5lzUXw== - dependencies: - camel-case "^4.1.1" - capital-case "^1.0.3" - constant-case "^3.0.3" - dot-case "^3.0.3" - header-case "^2.0.3" - no-case "^3.0.3" - param-case "^3.0.3" - pascal-case "^3.1.1" - path-case "^3.0.3" - sentence-case "^3.0.3" - snake-case "^3.0.3" - tslib "^1.10.0" + version "4.1.2" + resolved "https://registry.yarnpkg.com/change-case/-/change-case-4.1.2.tgz#fedfc5f136045e2398c0410ee441f95704641e12" + integrity sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A== + dependencies: + camel-case "^4.1.2" + capital-case "^1.0.4" + constant-case "^3.0.4" + dot-case "^3.0.4" + header-case "^2.0.4" + no-case "^3.0.4" + param-case "^3.0.4" + pascal-case "^3.1.2" + path-case "^3.0.4" + sentence-case "^3.0.4" + snake-case "^3.0.4" + tslib "^2.0.3" char-regex@^1.0.2: version "1.0.2" @@ -4730,14 +4730,14 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0: resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e" integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4= -constant-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.3.tgz#ac910a99caf3926ac5112f352e3af599d8c5fc0a" - integrity sha512-FXtsSnnrFYpzDmvwDGQW+l8XK3GV1coLyBN0eBz16ZUzGaZcT2ANVCJmLeuw2GQgxKHQIe9e0w2dzkSfaRlUmA== +constant-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/constant-case/-/constant-case-3.0.4.tgz#3b84a9aeaf4cf31ec45e6bf5de91bdfb0589faf1" + integrity sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" - upper-case "^2.0.1" + no-case "^3.0.4" + tslib "^2.0.3" + upper-case "^2.0.2" constants-browserify@^1.0.0: version "1.0.0" @@ -5653,13 +5653,13 @@ domutils@^2.4.2, domutils@^2.4.3, domutils@^2.4.4: domelementtype "^2.0.1" domhandler "^4.0.0" -dot-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.3.tgz#21d3b52efaaba2ea5fda875bb1aa8124521cf4aa" - integrity sha512-7hwEmg6RiSQfm/GwPL4AAWXKy3YNNZA3oFv2Pdiey0mwkRCPZ9x6SZbkLcn8Ma5PYeVokzoD4Twv2n7LKp5WeA== +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" dot-prop@^3.0.0: version "3.0.0" @@ -7453,13 +7453,13 @@ he@1.2.0: resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== -header-case@^2.0.3: - version "2.0.3" - resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.3.tgz#8a7407d16edfd5c970f8ebb116e6383f855b5a72" - integrity sha512-LChe/V32mnUQnTwTxd3aAlNMk8ia9tjCDb/LjYtoMrdAPApxLB+azejUk5ERZIZdIqvinwv6BAUuFXH/tQPdZA== +header-case@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/header-case/-/header-case-2.0.4.tgz#5a42e63b55177349cf405beb8d775acabb92c063" + integrity sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q== dependencies: - capital-case "^1.0.3" - tslib "^1.10.0" + capital-case "^1.0.4" + tslib "^2.0.3" hey-listen@^1.0.8: version "1.0.8" @@ -9575,12 +9575,12 @@ loud-rejection@^1.0.0: currently-unhandled "^0.4.1" signal-exit "^3.0.0" -lower-case@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.1.tgz#39eeb36e396115cc05e29422eaea9e692c9408c7" - integrity sha512-LiWgfDLLb1dwbFQZsSglpRj+1ctGnayXz3Uv0/WO8n558JycT5fg6zkNcnW0G68Nn0aEldTFeEfmjCfmqry/rQ== +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== dependencies: - tslib "^1.10.0" + tslib "^2.0.3" lowercase-keys@^1.0.0: version "1.0.1" @@ -10389,13 +10389,13 @@ nice-try@^1.0.4: resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366" integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ== -no-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.3.tgz#c21b434c1ffe48b39087e86cfb4d2582e9df18f8" - integrity sha512-ehY/mVQCf9BL0gKfsJBvFJen+1V//U+0HQMPrWct40ixE4jnv0bfvxDbWtAHL9EcaPEOJHVVYKoQn1TlZUB8Tw== +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== dependencies: - lower-case "^2.0.1" - tslib "^1.10.0" + lower-case "^2.0.2" + tslib "^2.0.3" node-abi@^2.7.0: version "2.19.3" @@ -11068,13 +11068,13 @@ parallel-transform@^1.1.0: inherits "^2.0.3" readable-stream "^2.1.5" -param-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.3.tgz#4be41f8399eff621c56eebb829a5e451d9801238" - integrity sha512-VWBVyimc1+QrzappRs7waeN2YmoZFCGXWASRYX1/rGHtXqEcrGEIDm+jqIwFa2fRXNgQEwrxaYuIrX0WcAguTA== +param-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/param-case/-/param-case-3.0.4.tgz#7d17fe4aa12bde34d4a77d91acfb6219caad01c5" + integrity sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A== dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + dot-case "^3.0.4" + tslib "^2.0.3" parent-module@^1.0.0: version "1.0.1" @@ -11225,13 +11225,13 @@ parseurl@~1.3.3: resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ== -pascal-case@^3.1.1: - version "3.1.1" - resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.1.tgz#5ac1975133ed619281e88920973d2cd1f279de5f" - integrity sha512-XIeHKqIrsquVTQL2crjq3NfJUxmdLasn3TYOU0VBM+UX2a6ztAWBlJQBePLGY7VHW8+2dRadeIPK5+KImwTxQA== +pascal-case@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/pascal-case/-/pascal-case-3.1.2.tgz#b48e0ef2b98e205e7c1dae747d0b1508237660eb" + integrity sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" + no-case "^3.0.4" + tslib "^2.0.3" pascalcase@^0.1.1: version "0.1.1" @@ -11248,13 +11248,13 @@ path-browserify@1.0.1: resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-1.0.1.tgz#d98454a9c3753d5790860f16f68867b9e46be1fd" integrity sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g== -path-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.3.tgz#d48119aed52c4712e036ca40c6b15984f909554f" - integrity sha512-UMFU6UETFpCNWbIWNczshPrnK/7JAXBP2NYw80ojElbQ2+JYxdqWDBkvvqM93u4u6oLmuJ/tPOf2tM8KtXv4eg== +path-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/path-case/-/path-case-3.0.4.tgz#9168645334eb942658375c56f80b4c0cb5f82c6f" + integrity sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg== dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + dot-case "^3.0.4" + tslib "^2.0.3" path-dirname@^1.0.0: version "1.0.2" @@ -12978,14 +12978,14 @@ send@0.17.1: range-parser "~1.2.1" statuses "~1.5.0" -sentence-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.3.tgz#47576e4adff7abf42c63c815b0543c9d2f85a930" - integrity sha512-ZPr4dgTcNkEfcGOMFQyDdJrTU9uQO1nb1cjf+nuzb6FxgMDgKddZOM29qEsB7jvsZSMruLRcL2KfM4ypKpa0LA== +sentence-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/sentence-case/-/sentence-case-3.0.4.tgz#3645a7b8c117c787fde8702056225bb62a45131f" + integrity sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg== dependencies: - no-case "^3.0.3" - tslib "^1.10.0" - upper-case-first "^2.0.1" + no-case "^3.0.4" + tslib "^2.0.3" + upper-case-first "^2.0.2" serialize-javascript@^3.1.0: version "3.1.0" @@ -13225,13 +13225,13 @@ smart-buffer@4.0.2: resolved "https://registry.yarnpkg.com/smart-buffer/-/smart-buffer-4.0.2.tgz#5207858c3815cc69110703c6b94e46c15634395d" integrity sha512-JDhEpTKzXusOqXZ0BUIdH+CjFdO/CR3tLlf5CN34IypI+xMmXW1uB16OOY8z3cICbJlDAVJzNbwBhNO0wt9OAw== -snake-case@^3.0.3: - version "3.0.3" - resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.3.tgz#c598b822ab443fcbb145ae8a82c5e43526d5bbee" - integrity sha512-WM1sIXEO+rsAHBKjGf/6R1HBBcgbncKS08d2Aqec/mrDSpU80SiOU41hO7ny6DToHSyrlwTYzQBIK1FPSx4Y3Q== +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== dependencies: - dot-case "^3.0.3" - tslib "^1.10.0" + dot-case "^3.0.4" + tslib "^2.0.3" snapdragon-node@^2.0.1: version "2.1.1" @@ -14377,7 +14377,7 @@ tslib@1.10.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a" integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ== -tslib@2.0.3, tslib@^2.0.0: +tslib@2.0.3: version "2.0.3" resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== @@ -14387,6 +14387,11 @@ tslib@^1.10.0, tslib@^1.11.1, tslib@^1.8.1, tslib@^1.9.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== +tslib@^2.0.0, tslib@^2.0.3: + version "2.1.0" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.1.0.tgz#da60860f1c2ecaa5703ab7d39bc05b6bf988b97a" + integrity sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A== + tsutils@^3.17.1: version "3.17.1" resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759" @@ -14787,19 +14792,19 @@ upath@^1.2.0: resolved "https://registry.yarnpkg.com/upath/-/upath-1.2.0.tgz#8f66dbcd55a883acdae4408af8b035a5044c1894" integrity sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg== -upper-case-first@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.1.tgz#32ab436747d891cc20ab1e43d601cb4d0a7fbf4a" - integrity sha512-105J8XqQ+9RxW3l9gHZtgve5oaiR9TIwvmZAMAIZWRHe00T21cdvewKORTlOJf/zXW6VukuTshM+HXZNWz7N5w== +upper-case-first@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case-first/-/upper-case-first-2.0.2.tgz#992c3273f882abd19d1e02894cc147117f844324" + integrity sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg== dependencies: - tslib "^1.10.0" + tslib "^2.0.3" -upper-case@^2.0.1: - version "2.0.1" - resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.1.tgz#6214d05e235dc817822464ccbae85822b3d8665f" - integrity sha512-laAsbea9SY5osxrv7S99vH9xAaJKrw5Qpdh4ENRLcaxipjKsiaBwiAsxfa8X5mObKNTQPsupSq0J/VIxsSJe3A== +upper-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/upper-case/-/upper-case-2.0.2.tgz#d89810823faab1df1549b7d97a76f8662bae6f7a" + integrity sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg== dependencies: - tslib "^1.10.0" + tslib "^2.0.3" uri-js@^4.2.2: version "4.2.2" From 5d852833a94aa3aa5c6e54666efd2fd7a47d4257 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:34:56 +0000 Subject: [PATCH 079/191] Bump file-type from 16.0.1 to 16.2.0 Bumps [file-type](https://github.com/sindresorhus/file-type) from 16.0.1 to 16.2.0. - [Release notes](https://github.com/sindresorhus/file-type/releases) - [Commits](https://github.com/sindresorhus/file-type/compare/v16.0.1...v16.2.0) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..cf143328f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -6555,9 +6555,9 @@ file-entry-cache@^6.0.0: flat-cache "^3.0.4" file-type@^16.0.0: - version "16.0.1" - resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.0.1.tgz#d12d19c716e49d79e0a27bcf502961498b0b9928" - integrity sha512-rwXqMZiizJd0uXZE52KN2DtPBAV99qz9cUTHHt8pSyaQzgVYrHJGR0qt2p4N/yzHEL/tGrlB/TgawQb4Fnxxyw== + version "16.2.0" + resolved "https://registry.yarnpkg.com/file-type/-/file-type-16.2.0.tgz#d4f1da71ddda758db7f15f93adfaed09ce9e2715" + integrity sha512-1Wwww3mmZCMmLjBfslCluwt2mxH80GsAXYrvPnfQ42G1EGWag336kB1iyCgyn7UXiKY3cJrNykXPrCwA7xb5Ag== dependencies: readable-web-to-node-stream "^3.0.0" strtok3 "^6.0.3" From 510d936a4a29bc042ff2b11cb43a94a5b3fb6034 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:35:22 +0000 Subject: [PATCH 080/191] Bump @typescript-eslint/eslint-plugin from 4.13.0 to 4.14.0 Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.13.0 to 4.14.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.14.0/packages/eslint-plugin) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 71 +++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 53 insertions(+), 18 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..d6faffb09 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2635,12 +2635,12 @@ "@types/yargs-parser" "*" "@typescript-eslint/eslint-plugin@^4.1.1": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.13.0.tgz#5f580ea520fa46442deb82c038460c3dd3524bb6" - integrity sha512-ygqDUm+BUPvrr0jrXqoteMqmIaZ/bixYOc3A4BRwzEPTZPi6E+n44rzNZWaB0YvtukgP+aoj0i/fyx7FkM2p1w== + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.14.0.tgz#92db8e7c357ed7d69632d6843ca70b71be3a721d" + integrity sha512-IJ5e2W7uFNfg4qh9eHkHRUCbgZ8VKtGwD07kannJvM5t/GU8P8+24NX8gi3Hf5jST5oWPY8kyV1s/WtfiZ4+Ww== dependencies: - "@typescript-eslint/experimental-utils" "4.13.0" - "@typescript-eslint/scope-manager" "4.13.0" + "@typescript-eslint/experimental-utils" "4.14.0" + "@typescript-eslint/scope-manager" "4.14.0" debug "^4.1.1" functional-red-black-tree "^1.0.1" lodash "^4.17.15" @@ -2648,15 +2648,15 @@ semver "^7.3.2" tsutils "^3.17.1" -"@typescript-eslint/experimental-utils@4.13.0", "@typescript-eslint/experimental-utils@^4.0.1": - version "4.13.0" - resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.13.0.tgz#9dc9ab375d65603b43d938a0786190a0c72be44e" - integrity sha512-/ZsuWmqagOzNkx30VWYV3MNB/Re/CGv/7EzlqZo5RegBN8tMuPaBgNK6vPBCQA8tcYrbsrTdbx3ixMRRKEEGVw== +"@typescript-eslint/experimental-utils@4.14.0", "@typescript-eslint/experimental-utils@^4.0.1": + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.14.0.tgz#5aa7b006736634f588a69ee343ca959cd09988df" + integrity sha512-6i6eAoiPlXMKRbXzvoQD5Yn9L7k9ezzGRvzC/x1V3650rUk3c3AOjQyGYyF9BDxQQDK2ElmKOZRD0CbtdkMzQQ== dependencies: "@types/json-schema" "^7.0.3" - "@typescript-eslint/scope-manager" "4.13.0" - "@typescript-eslint/types" "4.13.0" - "@typescript-eslint/typescript-estree" "4.13.0" + "@typescript-eslint/scope-manager" "4.14.0" + "@typescript-eslint/types" "4.14.0" + "@typescript-eslint/typescript-estree" "4.14.0" eslint-scope "^5.0.0" eslint-utils "^2.0.0" @@ -2678,11 +2678,24 @@ "@typescript-eslint/types" "4.13.0" "@typescript-eslint/visitor-keys" "4.13.0" +"@typescript-eslint/scope-manager@4.14.0": + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.14.0.tgz#55a4743095d684e1f7b7180c4bac2a0a3727f517" + integrity sha512-/J+LlRMdbPh4RdL4hfP1eCwHN5bAhFAGOTsvE6SxsrM/47XQiPSgF5MDgLyp/i9kbZV9Lx80DW0OpPkzL+uf8Q== + dependencies: + "@typescript-eslint/types" "4.14.0" + "@typescript-eslint/visitor-keys" "4.14.0" + "@typescript-eslint/types@4.13.0": version "4.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.13.0.tgz#6a7c6015a59a08fbd70daa8c83dfff86250502f8" integrity sha512-/+aPaq163oX+ObOG00M0t9tKkOgdv9lq0IQv/y4SqGkAXmhFmCfgsELV7kOCTb2vVU5VOmVwXBXJTDr353C1rQ== +"@typescript-eslint/types@4.14.0": + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.14.0.tgz#d8a8202d9b58831d6fd9cee2ba12f8a5a5dd44b6" + integrity sha512-VsQE4VvpldHrTFuVPY1ZnHn/Txw6cZGjL48e+iBxTi2ksa9DmebKjAeFmTVAYoSkTk7gjA7UqJ7pIsyifTsI4A== + "@typescript-eslint/typescript-estree@4.13.0": version "4.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.13.0.tgz#cf6e2207c7d760f5dfd8d18051428fadfc37b45e" @@ -2697,6 +2710,20 @@ semver "^7.3.2" tsutils "^3.17.1" +"@typescript-eslint/typescript-estree@4.14.0": + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.14.0.tgz#4bcd67486e9acafc3d0c982b23a9ab8ac8911ed7" + integrity sha512-wRjZ5qLao+bvS2F7pX4qi2oLcOONIB+ru8RGBieDptq/SudYwshveORwCVU4/yMAd4GK7Fsf8Uq1tjV838erag== + dependencies: + "@typescript-eslint/types" "4.14.0" + "@typescript-eslint/visitor-keys" "4.14.0" + debug "^4.1.1" + globby "^11.0.1" + is-glob "^4.0.1" + lodash "^4.17.15" + semver "^7.3.2" + tsutils "^3.17.1" + "@typescript-eslint/visitor-keys@4.13.0": version "4.13.0" resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.13.0.tgz#9acb1772d3b3183182b6540d3734143dce9476fe" @@ -2705,6 +2732,14 @@ "@typescript-eslint/types" "4.13.0" eslint-visitor-keys "^2.0.0" +"@typescript-eslint/visitor-keys@4.14.0": + version "4.14.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.14.0.tgz#b1090d9d2955b044b2ea2904a22496849acbdf54" + integrity sha512-MeHHzUyRI50DuiPgV9+LxcM52FCJFYjJiWHtXlbyC27b80mfOwKeiKI+MHOTEpcpfmoPFm/vvQS88bYIx6PZTA== + dependencies: + "@typescript-eslint/types" "4.14.0" + eslint-visitor-keys "^2.0.0" + "@webassemblyjs/ast@1.9.0": version "1.9.0" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.9.0.tgz#bd850604b4042459a5a41cd7d338cbed695ed964" From ee255585f2bf9e367a392ffcb9b261a4268462fd Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:36:01 +0000 Subject: [PATCH 081/191] Bump gitlog from 4.0.3 to 4.0.4 Bumps [gitlog](https://github.com/domharrington/node-gitlog) from 4.0.3 to 4.0.4. - [Release notes](https://github.com/domharrington/node-gitlog/releases) - [Changelog](https://github.com/domharrington/node-gitlog/blob/master/CHANGELOG.md) - [Commits](https://github.com/domharrington/node-gitlog/compare/v4.0.3...v4.0.4) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..68354f457 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -7028,12 +7028,12 @@ github-slugger@^1.1.1: emoji-regex ">=6.0.0 <=6.1.1" gitlog@^4.0.3: - version "4.0.3" - resolved "https://registry.yarnpkg.com/gitlog/-/gitlog-4.0.3.tgz#36422e6910fccaa1e5d8413f62245797161743cc" - integrity sha512-rWejI3r/UXo2egYMJRwI3w/lTVNjP8yT9oz29hkv69qlatKj3Y0PmUYU1x+3fILx+qJJBKjEEHgYTFygOV3a+Q== + version "4.0.4" + resolved "https://registry.yarnpkg.com/gitlog/-/gitlog-4.0.4.tgz#8da6c08748dc290eb6c2fc11e3c505fb73715564" + integrity sha512-jeY2kO7CVyTa6cUM7ZD2ZxIyBkna1xvW2esV/3o8tbhiUneX1UBQCH4D9aMrHgGiohBjyXbuZogyjKXslnY5Yg== dependencies: debug "^4.1.1" - tslib "^1.11.1" + tslib "^1.14.1" glob-parent@^3.1.0: version "3.1.0" @@ -14382,10 +14382,10 @@ tslib@2.0.3, tslib@^2.0.0: resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.0.3.tgz#8e0741ac45fc0c226e58a17bfc3e64b9bc6ca61c" integrity sha512-uZtkfKblCEQtZKBF6EBXVZeQNl82yqtDQdv+eck8u7tdPxjLu2/lp5/uPW+um2tpuxINHWy3GhiccY7QgEaVHQ== -tslib@^1.10.0, tslib@^1.11.1, tslib@^1.8.1, tslib@^1.9.0: - version "1.11.1" - resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.11.1.tgz#eb15d128827fbee2841549e171f45ed338ac7e35" - integrity sha512-aZW88SY8kQbU7gpV19lN24LtXh/yD4ZZg6qieAJDDg+YBsJcSmLGK9QpnUjAKVG/xefmvJGd1WUmfpT/g6AJGA== +tslib@^1.10.0, tslib@^1.14.1, tslib@^1.8.1, tslib@^1.9.0: + version "1.14.1" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00" + integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg== tsutils@^3.17.1: version "3.17.1" From 7059adf2d16654af24f07aeb157adce58e9b5959 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:36:25 +0000 Subject: [PATCH 082/191] Bump husky from 4.3.0 to 4.3.8 Bumps [husky](https://github.com/typicode/husky) from 4.3.0 to 4.3.8. - [Release notes](https://github.com/typicode/husky/releases) - [Commits](https://github.com/typicode/husky/compare/v4.3.0...v4.3.8) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 71 +++++++++++++++++++++++++++++++++++++++---------------- 1 file changed, 50 insertions(+), 21 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..ec2741120 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -6654,12 +6654,20 @@ find-up@^4.0.0, find-up@^4.1.0: locate-path "^5.0.0" path-exists "^4.0.0" -find-versions@^3.2.0: - version "3.2.0" - resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-3.2.0.tgz#10297f98030a786829681690545ef659ed1d254e" - integrity sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww== +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +find-versions@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/find-versions/-/find-versions-4.0.0.tgz#3c57e573bf97769b8cb8df16934b627915da4965" + integrity sha512-wgpWy002tA+wgmO27buH/9KzyEOQnKsG/R0yrcjPT9BOFm0zRBVQbZ95nRGXWMywS8YR5knRbpohio0bcJABxQ== dependencies: - semver-regex "^2.0.0" + semver-regex "^3.1.2" flat-cache@^3.0.4: version "3.0.4" @@ -7624,17 +7632,17 @@ humanize-ms@^1.2.1: ms "^2.0.0" husky@^4.0.7: - version "4.3.0" - resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.0.tgz#0b2ec1d66424e9219d359e26a51c58ec5278f0de" - integrity sha512-tTMeLCLqSBqnflBZnlVDhpaIMucSGaYyX6855jM4AguGeWCeSzNdb1mfyWduTZ3pe3SJVvVWGL0jO1iKZVPfTA== + version "4.3.8" + resolved "https://registry.yarnpkg.com/husky/-/husky-4.3.8.tgz#31144060be963fd6850e5cc8f019a1dfe194296d" + integrity sha512-LCqqsB0PzJQ/AlCgfrfzRe3e3+NvmefAdKQhRYpxS4u6clblBoDdzzvHi8fmxKRzvMxPY/1WZWzomPZww0Anow== dependencies: chalk "^4.0.0" ci-info "^2.0.0" compare-versions "^3.6.0" cosmiconfig "^7.0.0" - find-versions "^3.2.0" + find-versions "^4.0.0" opencollective-postinstall "^2.0.2" - pkg-dir "^4.2.0" + pkg-dir "^5.0.0" please-upgrade-node "^3.2.0" slash "^3.0.0" which-pm-runs "^1.0.0" @@ -9453,6 +9461,13 @@ locate-path@^5.0.0: dependencies: p-locate "^4.1.0" +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + lodash._reinterpolate@^3.0.0: version "3.0.0" resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d" @@ -10950,7 +10965,7 @@ p-is-promise@^3.0.0: resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-3.0.0.tgz#58e78c7dfe2e163cf2a04ff869e7c1dba64a5971" integrity sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ== -p-limit@3.1.0: +p-limit@3.1.0, p-limit@^3.0.2: version "3.1.0" resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== @@ -10992,6 +11007,13 @@ p-locate@^4.1.0: dependencies: p-limit "^2.2.0" +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + p-map-series@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/p-map-series/-/p-map-series-1.0.0.tgz#bf98fe575705658a9e1351befb85ae4c1f07bdca" @@ -11435,6 +11457,13 @@ pkg-dir@^4.1.0, pkg-dir@^4.2.0: dependencies: find-up "^4.0.0" +pkg-dir@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-5.0.0.tgz#a02d6aebe6ba133a928f74aec20bafdfe6b8e760" + integrity sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA== + dependencies: + find-up "^5.0.0" + pkg-fetch@^2.6.9: version "2.6.9" resolved "https://registry.yarnpkg.com/pkg-fetch/-/pkg-fetch-2.6.9.tgz#c18c5fa9604c57a3df3d9630afb64e176bc8732d" @@ -12932,10 +12961,10 @@ semver-compare@^1.0.0: resolved "https://registry.yarnpkg.com/semver-compare/-/semver-compare-1.0.0.tgz#0dee216a1c941ab37e9efb1788f6afc5ff5537fc" integrity sha1-De4hahyUGrN+nvsXiPavxf9VN/w= -semver-regex@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-2.0.0.tgz#a93c2c5844539a770233379107b38c7b4ac9d338" - integrity sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw== +semver-regex@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/semver-regex/-/semver-regex-3.1.2.tgz#34b4c0d361eef262e07199dbef316d0f2ab11807" + integrity sha512-bXWyL6EAKOJa81XG1OZ/Yyuq+oT0b2YLlxx7c+mrdYPaPbnj6WgVULXhinMIeZGufuUBu/eVRqXEhiv4imfwxA== "semver@2 || 3 || 4 || 5", "semver@2.x || 3.x || 4 || 5", semver@^5.1.0, semver@^5.3.0, semver@^5.4.1, semver@^5.5.0, semver@^5.5.1, semver@^5.6.0, semver@^5.7.0: version "5.7.1" From 71fb267e7ff20ff9e706e28358d4a3e451afff9e Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Mon, 25 Jan 2021 13:37:44 +0000 Subject: [PATCH 083/191] Bump @types/jsdom from 16.2.5 to 16.2.6 Bumps [@types/jsdom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jsdom) from 16.2.5 to 16.2.6. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jsdom) Signed-off-by: dependabot-preview[bot] --- yarn.lock | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/yarn.lock b/yarn.lock index 1674d6b68..ba30a3a6e 100644 --- a/yarn.lock +++ b/yarn.lock @@ -59,10 +59,10 @@ integrity sha512-TYiuOxy5Pf9ORn94X/ujl7PY9opIh+l6NzRAV8EBLpIv3IC9gmEoev4wmmyP7Q33J0/nGjqxAaZcq/n2SZrYaQ== "@auto-it/bot-list@link:packages/bot-list": - version "10.11.0" + version "10.12.2" "@auto-it/core@link:packages/core": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@octokit/plugin-enterprise-compatibility" "^1.2.2" @@ -102,7 +102,7 @@ url-join "^4.0.0" "@auto-it/npm@link:plugins/npm": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/core" "link:packages/core" "@auto-it/package-json-utils" "link:packages/package-json-utils" @@ -119,13 +119,13 @@ user-home "^2.0.0" "@auto-it/package-json-utils@link:packages/package-json-utils": - version "10.11.0" + version "10.12.2" dependencies: parse-author "^2.0.0" parse-github-url "1.0.2" "@auto-it/released@link:plugins/released": - version "10.11.0" + version "10.12.2" dependencies: "@auto-it/bot-list" "link:packages/bot-list" "@auto-it/core" "link:packages/core" @@ -135,7 +135,7 @@ tslib "2.0.3" "@auto-it/slack@link:plugins/slack": - version "10.11.0" + version "10.12.2" dependencies: "@atomist/slack-messages" "~1.2.0" "@auto-it/core" "link:packages/core" @@ -2460,9 +2460,9 @@ integrity sha512-+oY0FDTO2GYKEV0YPvSshGq9t7YozVkgvXLty7zogQNuCxBhT9/3INX9Q7H1aRZ4SUDRXAKlJuA4EA5nTt7SNw== "@types/jsdom@^16.2.3": - version "16.2.5" - resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-16.2.5.tgz#74ebad438741d249ecb416c5486dcde4217eb66c" - integrity sha512-k/ZaTXtReAjwWu0clU0KLS53dyqZnA8mm+jwKFeFrvufXgICp+VNbskETFxKKAguv0pkaEKTax5MaRmvalM+TA== + version "16.2.6" + resolved "https://registry.yarnpkg.com/@types/jsdom/-/jsdom-16.2.6.tgz#9ddf0521e49be5365797e690c3ba63148e562c29" + integrity sha512-yQA+HxknGtW9AkRTNyiSH3OKW5V+WzO8OPTdne99XwJkYC+KYxfNIcoJjeiSqP3V00PUUpFP6Myoo9wdIu78DQ== dependencies: "@types/node" "*" "@types/parse5" "*" From 7e93b6ee3c24624664400b592738322f302a7358 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 09:34:37 -0800 Subject: [PATCH 084/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 31 +++++++++++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++ packages/core/CHANGELOG.md | 28 +++++++++++++++++++ plugins/all-contributors/CHANGELOG.md | 12 ++++++++ plugins/brew/CHANGELOG.md | 12 ++++++++ plugins/chrome/CHANGELOG.md | 12 ++++++++ plugins/cocoapods/CHANGELOG.md | 16 +++++++++++ plugins/conventional-commits/CHANGELOG.md | 12 ++++++++ plugins/crates/CHANGELOG.md | 12 ++++++++ plugins/docker/CHANGELOG.md | 12 ++++++++ plugins/exec/CHANGELOG.md | 12 ++++++++ plugins/first-time-contributor/CHANGELOG.md | 12 ++++++++ plugins/gem/CHANGELOG.md | 12 ++++++++ plugins/gh-pages/CHANGELOG.md | 12 ++++++++ plugins/git-tag/CHANGELOG.md | 12 ++++++++ plugins/gradle/CHANGELOG.md | 12 ++++++++ plugins/jira/CHANGELOG.md | 12 ++++++++ plugins/magic-zero/CHANGELOG.md | 14 ++++++++++ plugins/maven/CHANGELOG.md | 12 ++++++++ plugins/microsoft-teams/CHANGELOG.md | 12 ++++++++ plugins/npm/CHANGELOG.md | 16 +++++++++++ plugins/omit-commits/CHANGELOG.md | 12 ++++++++ plugins/omit-release-notes/CHANGELOG.md | 12 ++++++++ plugins/pr-body-labels/CHANGELOG.md | 12 ++++++++ plugins/released/CHANGELOG.md | 12 ++++++++ plugins/s3/CHANGELOG.md | 12 ++++++++ plugins/slack/CHANGELOG.md | 12 ++++++++ plugins/twitter/CHANGELOG.md | 12 ++++++++ plugins/upload-assets/CHANGELOG.md | 12 ++++++++ plugins/vscode/CHANGELOG.md | 12 ++++++++ 31 files changed, 406 insertions(+), 1 deletion(-) create mode 100644 plugins/magic-zero/CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 091f3e858..8cbe1b10a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,34 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- `@auto-it/core`, `@auto-it/cocoapods`, `@auto-it/magic-zero`, `@auto-it/npm` + - Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 📝 Documentation + +- fix jenkins setup [#1740](https://github.com/intuit/auto/pull/1740) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🔩 Dependency Updates + +- Bump @typescript-eslint/eslint-plugin from 4.13.0 to 4.14.0 [#1747](https://github.com/intuit/auto/pull/1747) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jsdom from 16.2.5 to 16.2.6 [#1750](https://github.com/intuit/auto/pull/1750) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump husky from 4.3.0 to 4.3.8 [#1749](https://github.com/intuit/auto/pull/1749) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump gitlog from 4.0.3 to 4.0.4 [#1748](https://github.com/intuit/auto/pull/1748) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump file-type from 16.0.1 to 16.2.0 [#1746](https://github.com/intuit/auto/pull/1746) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump change-case from 4.1.1 to 4.1.2 [#1745](https://github.com/intuit/auto/pull/1745) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump fp-ts from 2.8.2 to 2.9.3 [#1743](https://github.com/intuit/auto/pull/1743) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump fast-glob from 3.2.4 to 3.2.5 [#1742](https://github.com/intuit/auto/pull/1742) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- `@auto-it/core` + - Bump type-fest from 0.18.0 to 0.20.2 [#1744](https://github.com/intuit/auto/pull/1744) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 2 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index ef6e857f2..663144a4b 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.12.2/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.13.0/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 7454a5e34..5f44fead6 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index cb5b3cb81..69f96277a 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,3 +1,31 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- Bump type-fest from 0.18.0 to 0.20.2 ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- make modifyConfig async ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🔩 Dependency Updates + +- Bump @typescript-eslint/eslint-plugin from 4.13.0 to 4.14.0 [#1747](https://github.com/intuit/auto/pull/1747) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump @types/jsdom from 16.2.5 to 16.2.6 [#1750](https://github.com/intuit/auto/pull/1750) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump husky from 4.3.0 to 4.3.8 [#1749](https://github.com/intuit/auto/pull/1749) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump gitlog from 4.0.3 to 4.0.4 [#1748](https://github.com/intuit/auto/pull/1748) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump file-type from 16.0.1 to 16.2.0 [#1746](https://github.com/intuit/auto/pull/1746) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump change-case from 4.1.1 to 4.1.2 [#1745](https://github.com/intuit/auto/pull/1745) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) +- Bump type-fest from 0.18.0 to 0.20.2 [#1744](https://github.com/intuit/auto/pull/1744) ([@dependabot-preview[bot]](https://github.com/dependabot-preview[bot])) + +#### Authors: 2 + +- [@dependabot-preview[bot]](https://github.com/dependabot-preview[bot]) +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/all-contributors/CHANGELOG.md b/plugins/all-contributors/CHANGELOG.md index 8bfe3602b..54a78fbc4 100644 --- a/plugins/all-contributors/CHANGELOG.md +++ b/plugins/all-contributors/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/brew/CHANGELOG.md b/plugins/brew/CHANGELOG.md index e10888348..edc423ac9 100644 --- a/plugins/brew/CHANGELOG.md +++ b/plugins/brew/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/chrome/CHANGELOG.md b/plugins/chrome/CHANGELOG.md index 3f3e51786..3b7163765 100644 --- a/plugins/chrome/CHANGELOG.md +++ b/plugins/chrome/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/cocoapods/CHANGELOG.md b/plugins/cocoapods/CHANGELOG.md index 077edd8c6..86df57b5c 100644 --- a/plugins/cocoapods/CHANGELOG.md +++ b/plugins/cocoapods/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- make modifyConfig async ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/conventional-commits/CHANGELOG.md b/plugins/conventional-commits/CHANGELOG.md index 6f277e3ed..403b6d6dc 100644 --- a/plugins/conventional-commits/CHANGELOG.md +++ b/plugins/conventional-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/crates/CHANGELOG.md b/plugins/crates/CHANGELOG.md index fd506e844..42b3ffd41 100644 --- a/plugins/crates/CHANGELOG.md +++ b/plugins/crates/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/docker/CHANGELOG.md b/plugins/docker/CHANGELOG.md index c37fa722a..1f0b70d86 100644 --- a/plugins/docker/CHANGELOG.md +++ b/plugins/docker/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/exec/CHANGELOG.md b/plugins/exec/CHANGELOG.md index 81016c6e5..18ae0a32a 100644 --- a/plugins/exec/CHANGELOG.md +++ b/plugins/exec/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/first-time-contributor/CHANGELOG.md b/plugins/first-time-contributor/CHANGELOG.md index cbb6bad1a..a746bcc3e 100644 --- a/plugins/first-time-contributor/CHANGELOG.md +++ b/plugins/first-time-contributor/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gem/CHANGELOG.md b/plugins/gem/CHANGELOG.md index c440b08d1..f597d89f4 100644 --- a/plugins/gem/CHANGELOG.md +++ b/plugins/gem/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gh-pages/CHANGELOG.md b/plugins/gh-pages/CHANGELOG.md index f48d2884d..874f24801 100644 --- a/plugins/gh-pages/CHANGELOG.md +++ b/plugins/gh-pages/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/git-tag/CHANGELOG.md b/plugins/git-tag/CHANGELOG.md index 64719da93..91db3c89e 100644 --- a/plugins/git-tag/CHANGELOG.md +++ b/plugins/git-tag/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/gradle/CHANGELOG.md b/plugins/gradle/CHANGELOG.md index fb003f9d6..8a1794c04 100644 --- a/plugins/gradle/CHANGELOG.md +++ b/plugins/gradle/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/jira/CHANGELOG.md b/plugins/jira/CHANGELOG.md index 55b6831ac..b19409d82 100644 --- a/plugins/jira/CHANGELOG.md +++ b/plugins/jira/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/magic-zero/CHANGELOG.md b/plugins/magic-zero/CHANGELOG.md new file mode 100644 index 000000000..ee2002260 --- /dev/null +++ b/plugins/magic-zero/CHANGELOG.md @@ -0,0 +1,14 @@ +# v10.6.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- add missing dep ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- Add magic-zero plugin ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) diff --git a/plugins/maven/CHANGELOG.md b/plugins/maven/CHANGELOG.md index b069b2921..bb6f2143c 100644 --- a/plugins/maven/CHANGELOG.md +++ b/plugins/maven/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/microsoft-teams/CHANGELOG.md b/plugins/microsoft-teams/CHANGELOG.md index 4ae763c67..34142f93c 100644 --- a/plugins/microsoft-teams/CHANGELOG.md +++ b/plugins/microsoft-teams/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index 6d0b63307..74b56b3a5 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,19 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### 🐛 Bug Fix + +- make modifyConfig async ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/omit-commits/CHANGELOG.md b/plugins/omit-commits/CHANGELOG.md index 651658fd9..c53d9fd9d 100644 --- a/plugins/omit-commits/CHANGELOG.md +++ b/plugins/omit-commits/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/omit-release-notes/CHANGELOG.md b/plugins/omit-release-notes/CHANGELOG.md index 01b85fa90..7b0c420d0 100644 --- a/plugins/omit-release-notes/CHANGELOG.md +++ b/plugins/omit-release-notes/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/pr-body-labels/CHANGELOG.md b/plugins/pr-body-labels/CHANGELOG.md index 203e93ca7..03b55639f 100644 --- a/plugins/pr-body-labels/CHANGELOG.md +++ b/plugins/pr-body-labels/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/released/CHANGELOG.md b/plugins/released/CHANGELOG.md index c3c59c4ca..71ce88482 100644 --- a/plugins/released/CHANGELOG.md +++ b/plugins/released/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/s3/CHANGELOG.md b/plugins/s3/CHANGELOG.md index e2e67b9bf..9c5e4a37b 100644 --- a/plugins/s3/CHANGELOG.md +++ b/plugins/s3/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/slack/CHANGELOG.md b/plugins/slack/CHANGELOG.md index bd36ee03d..bc29367c7 100644 --- a/plugins/slack/CHANGELOG.md +++ b/plugins/slack/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/twitter/CHANGELOG.md b/plugins/twitter/CHANGELOG.md index 054ff7ac8..e398f68ff 100644 --- a/plugins/twitter/CHANGELOG.md +++ b/plugins/twitter/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/upload-assets/CHANGELOG.md b/plugins/upload-assets/CHANGELOG.md index 9e822ef7c..20edef230 100644 --- a/plugins/upload-assets/CHANGELOG.md +++ b/plugins/upload-assets/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix diff --git a/plugins/vscode/CHANGELOG.md b/plugins/vscode/CHANGELOG.md index 699d32546..811bb5720 100644 --- a/plugins/vscode/CHANGELOG.md +++ b/plugins/vscode/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.0 (Mon Jan 25 2021) + +#### 🚀 Enhancement + +- Add `@auto-it/magic-zero` Plugin [#1701](https://github.com/intuit/auto/pull/1701) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.12.2 (Thu Jan 21 2021) #### 🐛 Bug Fix From a51355d192897032c9131d847aff87bac4d0283f Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 09:34:40 -0800 Subject: [PATCH 085/191] Bump version to: v10.13.0 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/magic-zero/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/lerna.json b/lerna.json index 6429ecf77..f0c061098 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.12.2", + "version": "10.13.0", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index ac22c12af..3317657b6 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.12.2", + "version": "10.13.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index edde05959..b8aa6be87 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.12.2", + "version": "10.13.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 0e0c64ac6..8f605ed25 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.12.2", + "version": "10.13.0", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 349eaf0c2..5351d018c 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.12.2", + "version": "10.13.0", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index c7433bb83..0cf3f4f87 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index fd0d683e2..865622bf8 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 6768568df..1bf8efb83 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 839126d16..193b9f408 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index 70f781de4..e371f76d4 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 94f3af930..2c554dc2f 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 458f0ade9..73871f1d9 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index 66c32ff6f..dc0415f5a 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 121d13653..a05aeedd5 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 8f336f13e..d0a0ae8b5 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 4ddc3fe11..7f3c61ef5 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index 6c0d01d80..f5f179cf8 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 06c47b923..0051b5f0b 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index a9b2aa236..26c85ee4a 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json index c4fba6d83..6149e9824 100644 --- a/plugins/magic-zero/package.json +++ b/plugins/magic-zero/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/magic-zero", - "version": "10.5.0", + "version": "10.13.0", "main": "dist/index.js", "description": "A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 1a54de9a5..75d6090ae 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index beecd0cd5..c9fd04a93 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index 6e47a9b6a..bdee5c209 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 1acc4606b..ec1a30930 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 575864110..3bf539ec2 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index c869ea2e5..0007175ce 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index b261a0d88..67b7a95b5 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 6693d7da8..2c4297f83 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index afcc62acd..c42af87d6 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 563a1883f..9c5c18920 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 91bc40cd7..26796d862 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index 066aa42c8..da3d9ab79 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.12.2", + "version": "10.13.0", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 662e677167cb147efef208fb33ff34883b53f7c9 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 09:34:40 -0800 Subject: [PATCH 086/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index b030192eb..c3b64766c 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.12.2/auto-macos.gz" - version "v10.12.2" - sha256 "1e9f7e3e71d61f1b72cb76142eeecace84d90dc3794fdfc55449d5eb9dcac42f" + url "https://github.com/intuit/auto/releases/download/v10.13.0/auto-macos.gz" + version "v10.13.0" + sha256 "9c01794c7a472f71ba05f51e3e044c2fdd9a1c0b1a5505659e9c1a7b08d004dc" def install libexec.install Dir["*"] From 31a4ce4cc11db7d54c596f5248232d25082f08b9 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 11:33:52 -0800 Subject: [PATCH 087/191] format commit message --- plugins/npm/src/index.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/npm/src/index.ts b/plugins/npm/src/index.ts index 040f6d217..498467a45 100644 --- a/plugins/npm/src/index.ts +++ b/plugins/npm/src/index.ts @@ -35,7 +35,7 @@ import setTokenOnCI, { getRegistry, DEFAULT_REGISTRY } from "./set-npm-token"; import { writeFile, isMonorepo, readFile, getLernaJson } from "./utils"; const { isCi } = envCi(); -const VERSION_COMMIT_MESSAGE = '"Bump version to: %s [skip ci]"'; +const VERSION_COMMIT_MESSAGE = "Bump version to: %s [skip ci]"; /** Get the last published version for a npm package */ async function getPublishedVersion(name: string) { @@ -947,7 +947,7 @@ export default class NPMPlugin implements IPlugin { "-m", isIndependent ? '"Bump independent versions [skip ci]"' - : VERSION_COMMIT_MESSAGE, + : JSON.stringify(VERSION_COMMIT_MESSAGE), this.exact && "--exact", ...verboseArgs, ]); @@ -969,7 +969,7 @@ export default class NPMPlugin implements IPlugin { latestBump, "--no-commit-hooks", "-m", - VERSION_COMMIT_MESSAGE, + JSON.stringify(VERSION_COMMIT_MESSAGE), ...verboseArgs, ]); auto.logger.verbose.info("Successfully versioned repo"); From 269397de243551e5ac5c0fdecbbc26f26c7c4a5f Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 11:55:36 -0800 Subject: [PATCH 088/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 13 +++++++++++++ 4 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8cbe1b10a..04e75d2aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.13.1 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- `@auto-it/npm` + - format commit message [#1751](https://github.com/intuit/auto/pull/1751) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.0 (Mon Jan 25 2021) #### 🚀 Enhancement diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 663144a4b..7d3050efc 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.13.0/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.13.1/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 5f44fead6..81b6b2132 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.1 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- format commit message [#1751](https://github.com/intuit/auto/pull/1751) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.0 (Mon Jan 25 2021) #### 🚀 Enhancement diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index 74b56b3a5..c4daeac65 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.13.1 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- format commit message [#1751](https://github.com/intuit/auto/pull/1751) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- format commit message ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.0 (Mon Jan 25 2021) #### 🚀 Enhancement From 057ef8ed013d64dab9a9958d1a3df87d6eda1d3d Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 11:55:39 -0800 Subject: [PATCH 089/191] Bump version to: v10.13.1 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/magic-zero/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/lerna.json b/lerna.json index f0c061098..7b53c16b1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.13.0", + "version": "10.13.1", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 3317657b6..4c59158fd 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.13.0", + "version": "10.13.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index b8aa6be87..9bf7ccb6f 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.13.0", + "version": "10.13.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 8f605ed25..749bed405 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.13.0", + "version": "10.13.1", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 5351d018c..4ea69c080 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.13.0", + "version": "10.13.1", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index 0cf3f4f87..de3e20f86 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index 865622bf8..bbf762516 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 1bf8efb83..53a2ea6b6 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 193b9f408..2cf3f742f 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index e371f76d4..cb87e48a7 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 2c554dc2f..96d995d2a 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index 73871f1d9..e710758a3 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index dc0415f5a..bc4c8db51 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index a05aeedd5..1ef71695e 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index d0a0ae8b5..8a3944068 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 7f3c61ef5..877f13d0e 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index f5f179cf8..b9c69dbe1 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 0051b5f0b..74f2ce64f 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index 26c85ee4a..fd69afa09 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json index 6149e9824..00b6fe45e 100644 --- a/plugins/magic-zero/package.json +++ b/plugins/magic-zero/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/magic-zero", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index 75d6090ae..e852e3dd3 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index c9fd04a93..88e321622 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index bdee5c209..a3cb7c7c5 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index ec1a30930..80579606b 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 3bf539ec2..26ca9e0a9 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 0007175ce..10c854edd 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index 67b7a95b5..c5a1279ae 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 2c4297f83..860225dc0 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index c42af87d6..406a60510 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 9c5c18920..7a351d958 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 26796d862..2d2e3630c 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index da3d9ab79..ab9ed2c49 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.13.0", + "version": "10.13.1", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 986996e56db544bad3b4f0cceea7b2ece8e3de4b Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 11:55:40 -0800 Subject: [PATCH 090/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index c3b64766c..b64bce947 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.13.0/auto-macos.gz" - version "v10.13.0" - sha256 "9c01794c7a472f71ba05f51e3e044c2fdd9a1c0b1a5505659e9c1a7b08d004dc" + url "https://github.com/intuit/auto/releases/download/v10.13.1/auto-macos.gz" + version "v10.13.1" + sha256 "4ea54ed5f05c75f082034a0cdd3741f271662dcf99e0454d82421584d9812625" def install libexec.install Dir["*"] From af9f855e238ebf50c8094f3e689439e8ef433456 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 13:13:20 -0800 Subject: [PATCH 091/191] fix commit message when using npx --- plugins/npm/__tests__/npm.test.ts | 14 +++++++------- plugins/npm/src/index.ts | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/plugins/npm/__tests__/npm.test.ts b/plugins/npm/__tests__/npm.test.ts index 9fefa7c96..eebb407c2 100644 --- a/plugins/npm/__tests__/npm.test.ts +++ b/plugins/npm/__tests__/npm.test.ts @@ -489,7 +489,7 @@ describe("publish", () => { Auto.SEMVER.patch, "--no-commit-hooks", "-m", - '"Bump version to: %s [skip ci]"', + "Bump version to: %s [skip ci]", "--loglevel", "silly", ]); @@ -519,7 +519,7 @@ describe("publish", () => { Auto.SEMVER.patch, "--no-commit-hooks", "-m", - '"Bump version to: %s [skip ci]"', + "Bump version to: %s [skip ci]", ]); }); @@ -554,7 +554,7 @@ describe("publish", () => { "--yes", "--no-push", "-m", - '"Bump version to: %s [skip ci]"', + '\'"Bump version to: %s [skip ci]"\'', false, ]); }); @@ -590,7 +590,7 @@ describe("publish", () => { "--yes", "--no-push", "-m", - '"Bump version to: %s [skip ci]"', + '\'"Bump version to: %s [skip ci]"\'', false, ]); }); @@ -626,7 +626,7 @@ describe("publish", () => { "--yes", "--no-push", "-m", - '"Bump version to: %s [skip ci]"', + '\'"Bump version to: %s [skip ci]"\'', "--exact", ]); @@ -750,7 +750,7 @@ describe("publish", () => { "1.0.1", "--no-commit-hooks", "-m", - '"Bump version to: %s [skip ci]"', + "Bump version to: %s [skip ci]", ]); }); @@ -786,7 +786,7 @@ describe("publish", () => { "--yes", "--no-push", "-m", - '"Bump version to: %s [skip ci]"', + '\'"Bump version to: %s [skip ci]"\'', false, ]); }); diff --git a/plugins/npm/src/index.ts b/plugins/npm/src/index.ts index 498467a45..5d00685db 100644 --- a/plugins/npm/src/index.ts +++ b/plugins/npm/src/index.ts @@ -947,7 +947,7 @@ export default class NPMPlugin implements IPlugin { "-m", isIndependent ? '"Bump independent versions [skip ci]"' - : JSON.stringify(VERSION_COMMIT_MESSAGE), + : `'"${VERSION_COMMIT_MESSAGE}"'`, this.exact && "--exact", ...verboseArgs, ]); @@ -969,7 +969,7 @@ export default class NPMPlugin implements IPlugin { latestBump, "--no-commit-hooks", "-m", - JSON.stringify(VERSION_COMMIT_MESSAGE), + VERSION_COMMIT_MESSAGE, ...verboseArgs, ]); auto.logger.verbose.info("Successfully versioned repo"); From a24db22069342d2128e6fb4724526ad3cca60730 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 13:37:29 -0800 Subject: [PATCH 092/191] Update CHANGELOG.md [skip ci] --- CHANGELOG.md | 13 +++++++++++++ docs/pages/docs/configuration/non-npm.mdx | 2 +- packages/cli/CHANGELOG.md | 12 ++++++++++++ plugins/npm/CHANGELOG.md | 13 +++++++++++++ 4 files changed, 39 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 04e75d2aa..783169ec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.13.2 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- `@auto-it/npm` + - fix commit message when using npx [#1752](https://github.com/intuit/auto/pull/1752) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.1 (Mon Jan 25 2021) #### 🐛 Bug Fix diff --git a/docs/pages/docs/configuration/non-npm.mdx b/docs/pages/docs/configuration/non-npm.mdx index 7d3050efc..43a501012 100644 --- a/docs/pages/docs/configuration/non-npm.mdx +++ b/docs/pages/docs/configuration/non-npm.mdx @@ -11,7 +11,7 @@ Simply download the appropriate version for your operating system and make it ex ```bash # Download a platform specific version of auto -curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.13.1/auto-linux.gz | gunzip > ~/auto +curl -vkL -o - https://github.com/intuit/auto/releases/download/v10.13.2/auto-linux.gz | gunzip > ~/auto # Make auto executable chmod a+x ~/auto ``` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 81b6b2132..811c26672 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,3 +1,15 @@ +# v10.13.2 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- fix commit message when using npx [#1752](https://github.com/intuit/auto/pull/1752) ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.1 (Mon Jan 25 2021) #### 🐛 Bug Fix diff --git a/plugins/npm/CHANGELOG.md b/plugins/npm/CHANGELOG.md index c4daeac65..c503c4dbd 100644 --- a/plugins/npm/CHANGELOG.md +++ b/plugins/npm/CHANGELOG.md @@ -1,3 +1,16 @@ +# v10.13.2 (Mon Jan 25 2021) + +#### 🐛 Bug Fix + +- fix commit message when using npx [#1752](https://github.com/intuit/auto/pull/1752) ([@hipstersmoothie](https://github.com/hipstersmoothie)) +- fix commit message when using npx ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +#### Authors: 1 + +- Andrew Lisowski ([@hipstersmoothie](https://github.com/hipstersmoothie)) + +--- + # v10.13.1 (Mon Jan 25 2021) #### 🐛 Bug Fix From feb0b661b293d14ad9354faeb2e75b7c2e6e5949 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 13:37:31 -0800 Subject: [PATCH 093/191] Bump version to: v10.13.2 [skip ci] --- lerna.json | 2 +- packages/bot-list/package.json | 2 +- packages/cli/package.json | 2 +- packages/core/package.json | 2 +- packages/package-json-utils/package.json | 2 +- plugins/all-contributors/package.json | 2 +- plugins/brew/package.json | 2 +- plugins/chrome/package.json | 2 +- plugins/cocoapods/package.json | 2 +- plugins/conventional-commits/package.json | 2 +- plugins/crates/package.json | 2 +- plugins/docker/package.json | 2 +- plugins/exec/package.json | 2 +- plugins/first-time-contributor/package.json | 2 +- plugins/gem/package.json | 2 +- plugins/gh-pages/package.json | 2 +- plugins/git-tag/package.json | 2 +- plugins/gradle/package.json | 2 +- plugins/jira/package.json | 2 +- plugins/magic-zero/package.json | 2 +- plugins/maven/package.json | 2 +- plugins/microsoft-teams/package.json | 2 +- plugins/npm/package.json | 2 +- plugins/omit-commits/package.json | 2 +- plugins/omit-release-notes/package.json | 2 +- plugins/pr-body-labels/package.json | 2 +- plugins/released/package.json | 2 +- plugins/s3/package.json | 2 +- plugins/slack/package.json | 2 +- plugins/twitter/package.json | 2 +- plugins/upload-assets/package.json | 2 +- plugins/vscode/package.json | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/lerna.json b/lerna.json index 7b53c16b1..618196fc1 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "10.13.1", + "version": "10.13.2", "npmClient": "yarn", "useWorkspaces": true, "packages": [ diff --git a/packages/bot-list/package.json b/packages/bot-list/package.json index 4c59158fd..2b7a8cb07 100644 --- a/packages/bot-list/package.json +++ b/packages/bot-list/package.json @@ -2,7 +2,7 @@ "name": "@auto-it/bot-list", "main": "dist/index.js", "description": "A list of bots for auto plugins to ignore", - "version": "10.13.1", + "version": "10.13.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/cli/package.json b/packages/cli/package.json index 9bf7ccb6f..646ab3a9c 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -2,7 +2,7 @@ "name": "auto", "bin": "dist/bin/auto.js", "description": "CLI tools to help facilitate semantic versioning based on GitHub PR labels", - "version": "10.13.1", + "version": "10.13.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/packages/core/package.json b/packages/core/package.json index 749bed405..2f096234c 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/core", - "version": "10.13.1", + "version": "10.13.2", "description": "Node API for using auto.", "main": "dist/auto.js", "license": "MIT", diff --git a/packages/package-json-utils/package.json b/packages/package-json-utils/package.json index 4ea69c080..47aa6e826 100644 --- a/packages/package-json-utils/package.json +++ b/packages/package-json-utils/package.json @@ -3,7 +3,7 @@ "main": "dist/index.js", "types": "dist/index.d.ts", "description": "Shared utilities for parsing information from a package.json", - "version": "10.13.1", + "version": "10.13.2", "license": "MIT", "author": { "name": "Andrew Lisowski", diff --git a/plugins/all-contributors/package.json b/plugins/all-contributors/package.json index de3e20f86..1a54fa9dc 100644 --- a/plugins/all-contributors/package.json +++ b/plugins/all-contributors/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/all-contributors", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Automatically add contributors as changelogs are produced.", "license": "MIT", diff --git a/plugins/brew/package.json b/plugins/brew/package.json index bbf762516..a50742779 100644 --- a/plugins/brew/package.json +++ b/plugins/brew/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/brew", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Automate the creation of Homebrew formulae.", "license": "MIT", diff --git a/plugins/chrome/package.json b/plugins/chrome/package.json index 53a2ea6b6..a95522d45 100644 --- a/plugins/chrome/package.json +++ b/plugins/chrome/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/chrome", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Chrome publishing plugin for auto", "license": "MIT", diff --git a/plugins/cocoapods/package.json b/plugins/cocoapods/package.json index 2cf3f742f..8129d84df 100644 --- a/plugins/cocoapods/package.json +++ b/plugins/cocoapods/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/cocoapods", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Use auto to version your cocoapod", "license": "MIT", diff --git a/plugins/conventional-commits/package.json b/plugins/conventional-commits/package.json index cb87e48a7..d71ddc9ed 100644 --- a/plugins/conventional-commits/package.json +++ b/plugins/conventional-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/conventional-commits", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Conventional commit plugin for auto", "license": "MIT", diff --git a/plugins/crates/package.json b/plugins/crates/package.json index 96d995d2a..5f240a378 100644 --- a/plugins/crates/package.json +++ b/plugins/crates/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/crates", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Deploy Rust crates to crates.io", "license": "MIT", diff --git a/plugins/docker/package.json b/plugins/docker/package.json index e710758a3..b2cddcab5 100644 --- a/plugins/docker/package.json +++ b/plugins/docker/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/docker", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Facilitates publishing built images to a Docker Registry.", "license": "MIT", diff --git a/plugins/exec/package.json b/plugins/exec/package.json index bc4c8db51..5af2071c1 100644 --- a/plugins/exec/package.json +++ b/plugins/exec/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/exec", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Tap into select hooks and run a command on the terminal", "license": "MIT", diff --git a/plugins/first-time-contributor/package.json b/plugins/first-time-contributor/package.json index 1ef71695e..756dfdda7 100644 --- a/plugins/first-time-contributor/package.json +++ b/plugins/first-time-contributor/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/first-time-contributor", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Thank first time contributors for their work right in your release notes.", "license": "MIT", diff --git a/plugins/gem/package.json b/plugins/gem/package.json index 8a3944068..9161ac370 100644 --- a/plugins/gem/package.json +++ b/plugins/gem/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gem", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "", "license": "MIT", diff --git a/plugins/gh-pages/package.json b/plugins/gh-pages/package.json index 877f13d0e..333d5b3b8 100644 --- a/plugins/gh-pages/package.json +++ b/plugins/gh-pages/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gh-pages", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Automate publishing to your gh-pages documentation website", "license": "MIT", diff --git a/plugins/git-tag/package.json b/plugins/git-tag/package.json index b9c69dbe1..eea7f8c97 100644 --- a/plugins/git-tag/package.json +++ b/plugins/git-tag/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/git-tag", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Manage your projects version through just a git tag", "license": "MIT", diff --git a/plugins/gradle/package.json b/plugins/gradle/package.json index 74f2ce64f..ccf94f261 100644 --- a/plugins/gradle/package.json +++ b/plugins/gradle/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/gradle", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "A plugin that calls gradle-release-plugin with versioning information.", "license": "MIT", diff --git a/plugins/jira/package.json b/plugins/jira/package.json index fd69afa09..d3ec7f03f 100644 --- a/plugins/jira/package.json +++ b/plugins/jira/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/jira", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Jira plugin for auto", "license": "MIT", diff --git a/plugins/magic-zero/package.json b/plugins/magic-zero/package.json index 00b6fe45e..61445346b 100644 --- a/plugins/magic-zero/package.json +++ b/plugins/magic-zero/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/magic-zero", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "A plugin that closely adheres to semver versioning for 0.0.x and 0.x.y releases", "license": "MIT", diff --git a/plugins/maven/package.json b/plugins/maven/package.json index e852e3dd3..4343a01c0 100644 --- a/plugins/maven/package.json +++ b/plugins/maven/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/maven", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Maven publishing plugin for auto", "license": "MIT", diff --git a/plugins/microsoft-teams/package.json b/plugins/microsoft-teams/package.json index 88e321622..1cec84317 100644 --- a/plugins/microsoft-teams/package.json +++ b/plugins/microsoft-teams/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/microsoft-teams", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Microsoft Teams plugin for auto", "license": "MIT", diff --git a/plugins/npm/package.json b/plugins/npm/package.json index a3cb7c7c5..e53288d58 100644 --- a/plugins/npm/package.json +++ b/plugins/npm/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/npm", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "NPM publishing plugin for auto", "license": "MIT", diff --git a/plugins/omit-commits/package.json b/plugins/omit-commits/package.json index 80579606b..048a4bcaa 100644 --- a/plugins/omit-commits/package.json +++ b/plugins/omit-commits/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-commits", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Omit commits plugin for auto", "license": "MIT", diff --git a/plugins/omit-release-notes/package.json b/plugins/omit-release-notes/package.json index 26ca9e0a9..87d108cb1 100644 --- a/plugins/omit-release-notes/package.json +++ b/plugins/omit-release-notes/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/omit-release-notes", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Omit release notes plugin for auto", "license": "MIT", diff --git a/plugins/pr-body-labels/package.json b/plugins/pr-body-labels/package.json index 10c854edd..463b9ef5c 100644 --- a/plugins/pr-body-labels/package.json +++ b/plugins/pr-body-labels/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/pr-body-labels", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Allow outside contributors to indicate what semver label should be applied to the Pull Request", "license": "MIT", diff --git a/plugins/released/package.json b/plugins/released/package.json index c5a1279ae..723d8cbe0 100644 --- a/plugins/released/package.json +++ b/plugins/released/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/released", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Released plugin for auto. Comments with version + extra", "license": "MIT", diff --git a/plugins/s3/package.json b/plugins/s3/package.json index 860225dc0..e53058813 100644 --- a/plugins/s3/package.json +++ b/plugins/s3/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/s3", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Post your built artifacts to s3", "license": "MIT", diff --git a/plugins/slack/package.json b/plugins/slack/package.json index 406a60510..53166df47 100644 --- a/plugins/slack/package.json +++ b/plugins/slack/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/slack", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Slack plugin for auto", "license": "MIT", diff --git a/plugins/twitter/package.json b/plugins/twitter/package.json index 7a351d958..c8ef63edf 100644 --- a/plugins/twitter/package.json +++ b/plugins/twitter/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/twitter", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Twitter plugin for auto", "license": "MIT", diff --git a/plugins/upload-assets/package.json b/plugins/upload-assets/package.json index 2d2e3630c..9b640abd4 100644 --- a/plugins/upload-assets/package.json +++ b/plugins/upload-assets/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/upload-assets", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Upload assets plugin for auto", "license": "MIT", diff --git a/plugins/vscode/package.json b/plugins/vscode/package.json index ab9ed2c49..910675162 100644 --- a/plugins/vscode/package.json +++ b/plugins/vscode/package.json @@ -1,6 +1,6 @@ { "name": "@auto-it/vscode", - "version": "10.13.1", + "version": "10.13.2", "main": "dist/index.js", "description": "Publish an vscode extension", "license": "MIT", From 90695bd9dfa03eeedfa34967dacbdc62e3263a00 Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Mon, 25 Jan 2021 13:37:32 -0800 Subject: [PATCH 094/191] Bump auto brew formula [skip ci] --- Formula/auto.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/auto.rb b/Formula/auto.rb index b64bce947..4567e8c6d 100644 --- a/Formula/auto.rb +++ b/Formula/auto.rb @@ -1,9 +1,9 @@ class Auto < Formula desc "Generate releases based on semantic version labels on pull requests." homepage "https://intuit.github.io/auto" - url "https://github.com/intuit/auto/releases/download/v10.13.1/auto-macos.gz" - version "v10.13.1" - sha256 "4ea54ed5f05c75f082034a0cdd3741f271662dcf99e0454d82421584d9812625" + url "https://github.com/intuit/auto/releases/download/v10.13.2/auto-macos.gz" + version "v10.13.2" + sha256 "207ab1e3ea8b4333b101c6d309d809fc9641c0dfc9b6c830c3613102e182763a" def install libexec.install Dir["*"] From 934ba85b1f828ac2efd1f73344d54bc963078f5e Mon Sep 17 00:00:00 2001 From: Andrew Lisowski Date: Wed, 27 Jan 2021 09:11:03 -0800 Subject: [PATCH 095/191] update docs site --- docs/pages/_app.js | 1 - docs/pages/_document.js | 11 +- docs/pages/docs/index.mdx | 8 +- docs/public/attach-dark-mode.js | 42 - docs/public/manifest.json | 10 + package.json | 2 +- yarn.lock | 1660 +++++++++++++++++++++++++++++-- 7 files changed, 1615 insertions(+), 119 deletions(-) delete mode 100644 docs/public/attach-dark-mode.js create mode 100644 docs/public/manifest.json diff --git a/docs/pages/_app.js b/docs/pages/_app.js index feee54ce9..4c3a66901 100644 --- a/docs/pages/_app.js +++ b/docs/pages/_app.js @@ -6,7 +6,6 @@ import SimpleReactLightbox, { SRLWrapper } from "simple-react-lightbox"; import { config } from "@fortawesome/fontawesome-svg-core"; import "@fortawesome/fontawesome-svg-core/styles.css"; -import "prismjs/themes/prism.css"; import "next-ignite/dist/main.css"; import "../css/syntax-highlighting-overrides.css"; diff --git a/docs/pages/_document.js b/docs/pages/_document.js index eb3814ef7..59b5737ab 100644 --- a/docs/pages/_document.js +++ b/docs/pages/_document.js @@ -1,6 +1,5 @@ import React from "react"; import Document, { Html, Head, Main, NextScript } from "next/document"; -import { formatPath } from "next-ignite"; class MyDocument extends Document { render() { @@ -33,11 +32,12 @@ class MyDocument extends Document { `} -