From dd34a1d372f2ff60742899d196d5cae0d1b64b56 Mon Sep 17 00:00:00 2001 From: Kingdon P Barrett Date: Sat, 20 Jan 2024 10:30:45 -0500 Subject: [PATCH 1/2] plan rollback to v0.27.0 Signed-off-by: Kingdon P Barrett --- CHANGELOG.md | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index d85373b7..6223a275 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,33 @@ See [releases](https://github.com/weaveworks/vscode-gitops-tools/releases) for s The current release notes are always published on the Releases page, by automation. This `CHANGELOG` is manually curated by a release engineer from those notes for house-keeping. +# v0.27.0 + +* Roll back to pre-0.25.x codebase (WIP) + +# v0.26.0 + +* Add 'run flux install ?' confirmation dialog (#498) +* Support WGE features with an enablement in Extension Settings (#496) + +# v0.25.4 + +* Fix spawning and not killing `kubectl proxy` processes (#491) +* Recommend settings for log viewer (#487) + +# v0.25.3 + +* Merge pull request for weaveworks/rebase-0.25-edge (#484) +* Upgrade @vscode/extension-telemetry +* Bump vscode engine version +* Pin extension telemetry @ 0.6.x until we can resolve #477 +* Added kubectl apply right-click option and keyboard shortcut for open file +* Remove extraneous console.log in case of performance impact +* Refactoring toolkitNode +* Added loading spinners to "Loading..." +* No icons for nested namespaces +* Update node labels after refresh + # v0.25.2 * Live update for all flux types and UI fixes (#479) From b0b6f870bbab4c9a06d1d19fde994e778dd8f64f Mon Sep 17 00:00:00 2001 From: Arun Sathiya Date: Thu, 18 Jan 2024 15:08:41 -0800 Subject: [PATCH 2/2] ci: Use GITHUB_OUTPUT envvar instead of set-output command `save-state` and `set-output` commands used in GitHub Actions are deprecated and [GitHub recommends using environment files](https://github.blog/changelog/2023-07-24-github-actions-update-on-save-state-and-set-output-commands/). This PR updates the usage of `set-output` to `$GITHUB_OUTPUT` Instructions for envvar usage from GitHub docs: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter --- .github/workflows/build-vsix.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-vsix.yml b/.github/workflows/build-vsix.yml index 85712321..2141aed7 100644 --- a/.github/workflows/build-vsix.yml +++ b/.github/workflows/build-vsix.yml @@ -235,7 +235,7 @@ jobs: # - name: Get the version # id: version -# run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} +# run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT # shell: bash # # - uses: apexskier/github-semver-parse@671ddf80785e4d721e76723ec1e687317f85bfe9 # pin@v1