From 77bbed48315a7cc275dc05a53d197197928f4b88 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Fri, 30 Sep 2022 14:44:45 -0700 Subject: [PATCH] release: 4.7.1 (#5607) * chore(release): bump version to 4.7.1 * docs: update MAINTAINING * chore: update release_template * chore: update CHANGELOG * chore: bump helm chart version * Update ci/helm-chart/Chart.yaml Co-authored-by: Asher * fixup!: changelog Co-authored-by: Asher --- .github/PULL_REQUEST_TEMPLATE/release_template.md | 5 +++-- CHANGELOG.md | 13 +++++++++++++ ci/helm-chart/Chart.yaml | 4 ++-- ci/helm-chart/values.yaml | 2 +- docs/MAINTAINING.md | 2 +- docs/helm.md | 4 ++-- docs/manifest.json | 2 +- package.json | 2 +- patches/telemetry.diff | 2 +- test/unit/node/test-plugin/package.json | 2 +- 10 files changed, 26 insertions(+), 12 deletions(-) diff --git a/.github/PULL_REQUEST_TEMPLATE/release_template.md b/.github/PULL_REQUEST_TEMPLATE/release_template.md index 1712e320b..b4d29aaca 100644 --- a/.github/PULL_REQUEST_TEMPLATE/release_template.md +++ b/.github/PULL_REQUEST_TEMPLATE/release_template.md @@ -12,5 +12,6 @@ Follow "Publishing a release" steps in `ci/README.md` -- [ ] publish release and merge PR -- [ ] update the AUR package +- [ ] update `CHANGELOG.md` +- [ ] manually run "Draft release" workflow after merging this PR +- [ ] merge PR opened in [code-server-aur](https://github.com/coder/code-server-aur) diff --git a/CHANGELOG.md b/CHANGELOG.md index 958cf2a23..f6a8479fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -20,6 +20,19 @@ Code v99.99.999 --> +## [4.7.1](https://github.com/coder/code-server/releases/tag/v4.7.1) - 2022-09-30 + +Code v1.71.2 + +### Changed + +- Updated Code to 1.71.2 + +### Fixed + +- Fixed install script not upgrading code-server when already installed on RPM-based machines +- Fixed install script failing to gain root permissions on FreeBSD + ## [4.7.0](https://github.com/coder/code-server/releases/tag/v4.7.0) - 2022-09-09 Code v1.71.0 diff --git a/ci/helm-chart/Chart.yaml b/ci/helm-chart/Chart.yaml index e9cbb6275..6414cd616 100644 --- a/ci/helm-chart/Chart.yaml +++ b/ci/helm-chart/Chart.yaml @@ -15,9 +15,9 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 3.2.2 +version: 3.2.3 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to # follow Semantic Versioning. They should reflect the version the application is using. -appVersion: 4.7.0 +appVersion: 4.7.1 diff --git a/ci/helm-chart/values.yaml b/ci/helm-chart/values.yaml index 598bf1c85..a01aaa9d7 100644 --- a/ci/helm-chart/values.yaml +++ b/ci/helm-chart/values.yaml @@ -6,7 +6,7 @@ replicaCount: 1 image: repository: codercom/code-server - tag: '4.7.0' + tag: '4.7.1' pullPolicy: Always # Specifies one or more secrets to be used when pulling images from a diff --git a/docs/MAINTAINING.md b/docs/MAINTAINING.md index ce8e164c6..8f2d5e4a5 100644 --- a/docs/MAINTAINING.md +++ b/docs/MAINTAINING.md @@ -141,7 +141,7 @@ changelog](https://github.com/emacs-mirror/emacs/blob/master/etc/NEWS). 1. Create a new branch called `release/v0.0.0` (replace 0s with actual version aka v4.5.0) 1. If you don't do this, the `npm-brew` GitHub workflow will fail. It looks for the release artifacts under the branch pattern. -1. Run `yarn release:prep ` (e.g., `yarn release:prep 3.8.1`) +1. Run `yarn release:prep` 1. Bump chart version in `Chart.yaml`. 1. Summarize the major changes in the `CHANGELOG.md` 1. Download CI artifacts and make sure code-server works locally. diff --git a/docs/helm.md b/docs/helm.md index d9c13888b..5cfdbeb0f 100644 --- a/docs/helm.md +++ b/docs/helm.md @@ -1,6 +1,6 @@ # code-server Helm Chart -[![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square)](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![AppVersion: 4.7.0](https://img.shields.io/badge/AppVersion-4.7.0-informational?style=flat-square)](https://img.shields.io/badge/AppVersion-4.7.0-informational?style=flat-square) +[![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square)](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square) [![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)](https://img.shields.io/badge/Type-application-informational?style=flat-square) [![AppVersion: 4.7.1](https://img.shields.io/badge/AppVersion-4.7.1-informational?style=flat-square)](https://img.shields.io/badge/AppVersion-4.7.1-informational?style=flat-square) [code-server](https://github.com/coder/code-server) code-server is VS Code running on a remote server, accessible through the browser. @@ -73,7 +73,7 @@ and their default values. | hostnameOverride | string | `""` | | image.pullPolicy | string | `"Always"` | | image.repository | string | `"codercom/code-server"` | -| image.tag | string | `"4.7.0"` | +| image.tag | string | `"4.7.1"` | | imagePullSecrets | list | `[]` | | ingress.enabled | bool | `false` | | nameOverride | string | `""` | diff --git a/docs/manifest.json b/docs/manifest.json index f5ca081f8..e5e7aae31 100644 --- a/docs/manifest.json +++ b/docs/manifest.json @@ -1,5 +1,5 @@ { - "versions": ["v4.7.0"], + "versions": ["v4.7.1"], "routes": [ { "title": "Home", diff --git a/package.json b/package.json index 4d4011449..96cf91af1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "code-server", "license": "MIT", - "version": "4.7.0", + "version": "4.7.1", "description": "Run VS Code on a remote server.", "homepage": "https://github.com/coder/code-server", "bugs": { diff --git a/patches/telemetry.diff b/patches/telemetry.diff index abfe8a429..7245d2d58 100644 --- a/patches/telemetry.diff +++ b/patches/telemetry.diff @@ -3,7 +3,7 @@ Add support for telemetry endpoint To test: 1. Create a RequestBin - https://requestbin.io/ 2. Run code-server with `CS_TELEMETRY_URL` set: - i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.7.0-macos-amd64/bin/code-server` + i.e. `CS_TELEMETRY_URL="https://requestbin.io/1ebub9z1" ./code-server-4.7.1-macos-amd64/bin/code-server` 3. Load code-server in browser an do things (i.e. open a file) 4. Refresh RequestBin and you should see logs diff --git a/test/unit/node/test-plugin/package.json b/test/unit/node/test-plugin/package.json index 4d4d1f39b..d3ac54843 100644 --- a/test/unit/node/test-plugin/package.json +++ b/test/unit/node/test-plugin/package.json @@ -3,7 +3,7 @@ "name": "test-plugin", "version": "1.0.0", "engines": { - "code-server": "^4.7.0" + "code-server": "^4.7.1" }, "main": "out/index.js", "devDependencies": {