From 3ae8595f41f38aa4ae795a25203d859c71e1c2fc Mon Sep 17 00:00:00 2001 From: "token-generator-app[bot]" <82042599+token-generator-app[bot]@users.noreply.github.com> Date: Wed, 17 May 2023 08:58:43 +0000 Subject: [PATCH 1/2] chore(main): release 15.1.1 --- CHANGELOG.md | 15 +++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 18 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a75a4192f0..544ac198f1b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog). +## [15.1.1](https://github.com/netlify/cli/compare/v15.1.0...v15.1.1) (2023-05-17) + + +### Bug Fixes + +* **deps:** pin dependencies ([#5729](https://github.com/netlify/cli/issues/5729)) ([cfb217d](https://github.com/netlify/cli/commit/cfb217d9e361fee43da82c2986418f2d08fedf8a)) +* **deps:** update dependency @netlify/zip-it-and-ship-it to v9.6.0 ([#5734](https://github.com/netlify/cli/issues/5734)) ([89440ac](https://github.com/netlify/cli/commit/89440ac7203054d0b1bb44a97f74388d26ee645a)) +* **deps:** update dependency configstore to v6 ([#5732](https://github.com/netlify/cli/issues/5732)) ([8b15932](https://github.com/netlify/cli/commit/8b15932032131063b1c5e1a75ab790ef8aaf0752)) +* **deps:** update dependency dot-prop to v7 ([#5737](https://github.com/netlify/cli/issues/5737)) ([82abf15](https://github.com/netlify/cli/commit/82abf15fdfdd106917be051188959fece953d750)) +* **deps:** update dependency env-paths to v3 ([#5733](https://github.com/netlify/cli/issues/5733)) ([025206e](https://github.com/netlify/cli/commit/025206e8c93ee0dade7bf9d6cc748314db9dc178)) +* **deps:** update dependency ora to v6.3.1 ([#5740](https://github.com/netlify/cli/issues/5740)) ([79bafc9](https://github.com/netlify/cli/commit/79bafc9378c72c8d9ce6fe9519d3599842ed8840)) +* **deps:** update dependency read-pkg-up to v9 ([#5736](https://github.com/netlify/cli/issues/5736)) ([c1845dc](https://github.com/netlify/cli/commit/c1845dc6b4266a60417df00e2e08bccd11136746)) +* **deps:** update dependency to-readable-stream to v3 ([e41bd63](https://github.com/netlify/cli/commit/e41bd63f8de08cd59a3de46242daad741fe1f464)) +* **deps:** update netlify packages ([#5735](https://github.com/netlify/cli/issues/5735)) ([0e1e5d1](https://github.com/netlify/cli/commit/0e1e5d118e6cff757ff2f7a7814ee33e2da204ad)) + ## [15.1.0](https://github.com/netlify/cli/compare/v15.0.3...v15.1.0) (2023-05-15) diff --git a/package-lock.json b/package-lock.json index 1d9add15190..3a24de5f2dc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "netlify-cli", - "version": "15.1.0", + "version": "15.1.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "netlify-cli", - "version": "15.1.0", + "version": "15.1.1", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 2d6ba2c852d..c3603374b0a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "netlify-cli", "description": "Netlify command line tool", - "version": "15.1.0", + "version": "15.1.1", "author": "Netlify Inc.", "type": "module", "engines": { From b7cc01bbcbe3dfd1c5d37e090915cd8df28e07ca Mon Sep 17 00:00:00 2001 From: Daniel Tschinder <231804+danez@users.noreply.github.com> Date: Wed, 17 May 2023 11:35:19 +0200 Subject: [PATCH 2/2] chore: do not run benchmark on release PR --- .github/workflows/benchmark-post.yml | 5 ++--- .github/workflows/benchmark.yml | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/benchmark-post.yml b/.github/workflows/benchmark-post.yml index 03b31a6ae6e..9489dc6d31b 100644 --- a/.github/workflows/benchmark-post.yml +++ b/.github/workflows/benchmark-post.yml @@ -1,8 +1,7 @@ -name: Post package size - +name: Post benchmarks on: workflow_run: - workflows: [Calculate package size] + workflows: [Calculate benchmarks] types: - completed diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index e679cb8551b..2920016057e 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -1,13 +1,13 @@ -name: Calculate package size +name: Calculate benchmarks on: push: branches: [main] pull_request: branches: [main] - jobs: package-size: + if: startsWith(github.head_ref, 'release-please') == false runs-on: ubuntu-latest steps: - name: Git checkout