Skip to content

Commit

Permalink
release: sourcegraph@5.0.0 (#49861)
Browse files Browse the repository at this point in the history
This pull request is part of the Sourcegraph 5.0.0 release.


* [Release batch
change](https://k8s.sgdev.org/organizations/sourcegraph/batch-changes/release-sourcegraph-5.0.0)
* [Tracking
issue](#48131)

### Test plan

CI checks in this repository should pass, and a manual review should
confirm if the generated changes are correct.

### ⚠️ Additional changes required

These steps must be completed before this PR can be merged, unless
otherwise stated. Push any required changes directly to this PR branch.

- [ ] Ensure all other pull requests in the batch change have been
merged
- [ ] Run `pnpm run release release:finalize` to generate the tags
required. CI will not pass until this command is run.
- [ ] Re-run the build on this branch (using either the command `sg ci
build` or the Buildkite UI) and merge when the build passes.

cc @coury-clark
  • Loading branch information
coury-clark committed Mar 22, 2023
1 parent 4c1785b commit 4a5a592
Show file tree
Hide file tree
Showing 24 changed files with 56 additions and 33 deletions.
6 changes: 3 additions & 3 deletions cmd/frontend/internal/app/updatecheck/handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,17 +35,17 @@ var (
// non-cluster, non-docker-compose, and non-pure-docker installations what the latest
// version is. The version here _must_ be available at https://hub.docker.com/r/sourcegraph/server/tags/
// before landing in master.
latestReleaseDockerServerImageBuild = newPingResponse("4.5.1")
latestReleaseDockerServerImageBuild = newPingResponse("5.0.0")

// latestReleaseKubernetesBuild is only used by sourcegraph.com to tell existing Sourcegraph
// cluster deployments what the latest version is. The version here _must_ be available in
// a tag at https://github.com/sourcegraph/deploy-sourcegraph before landing in master.
latestReleaseKubernetesBuild = newPingResponse("4.5.1")
latestReleaseKubernetesBuild = newPingResponse("5.0.0")

// latestReleaseDockerComposeOrPureDocker is only used by sourcegraph.com to tell existing Sourcegraph
// Docker Compose or Pure Docker deployments what the latest version is. The version here _must_ be
// available in a tag at https://github.com/sourcegraph/deploy-sourcegraph-docker before landing in master.
latestReleaseDockerComposeOrPureDocker = newPingResponse("4.5.1")
latestReleaseDockerComposeOrPureDocker = newPingResponse("5.0.0")

// latestReleaseApp is only used by sourcegraph.com to tell existing Sourcegraph
// App instances what the latest version is. The version here _must_ be available for download/released
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v4.5.1'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.0.0'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/home/ec2-user/deploy-sourcegraph-docker'
DOCKER_COMPOSE_VERSION='1.29.2'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/azure.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v4.5.1'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.0.0'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
DOCKER_COMPOSE_VERSION='1.29.2'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v4.5.1'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.0.0'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
DOCKER_DATA_ROOT='/mnt/docker-data'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/google_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ set -euxo pipefail
###############################################################################
# Please read the notes below the script if you are cloning a private repository
DEPLOY_SOURCEGRAPH_DOCKER_FORK_CLONE_URL='https://github.com/sourcegraph/deploy-sourcegraph-docker.git'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v4.5.1'
DEPLOY_SOURCEGRAPH_DOCKER_FORK_REVISION='v5.0.0'
##################### NO CHANGES REQUIRED BELOW THIS LINE #####################
# IMPORTANT: DO NOT MAKE ANY CHANGES FROM THIS POINT ONWARD
DEPLOY_SOURCEGRAPH_DOCKER_CHECKOUT='/root/deploy-sourcegraph-docker'
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-compose/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Continue with the following steps *after* you have created a public or private c

```bash
# Specify the version you want to install
export SOURCEGRAPH_VERSION="v4.5.1"
export SOURCEGRAPH_VERSION="v5.0.0"
# Check out the selected version for use, in a new branch called "release"
git checkout $SOURCEGRAPH_VERSION -b release
```
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/aws.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
- usermod -a -G docker ec2-user
# Install and run Sourcegraph. Restart the container upon subsequent reboots
- [ sh, -c, 'docker run -d --publish 80:7080 --publish 443:7080 --publish 127.0.0.1:3370:3370 --restart unless-stopped --volume /home/ec2-user/.sourcegraph/config:/etc/sourcegraph --volume /home/ec2-user/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:4.5.1' ]
- [ sh, -c, 'docker run -d --publish 80:7080 --publish 443:7080 --publish 127.0.0.1:3370:3370 --restart unless-stopped --volume /home/ec2-user/.sourcegraph/config:/etc/sourcegraph --volume /home/ec2-user/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.0.0' ]
```

- Select **Next: ...** until you get to the **Configure Security Group** page. Then add the following rules:
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/digitalocean.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
1. Run the Sourcegraph Docker image as a daemon:

```
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:4.5.1
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.0.0
```
1. Navigate to the droplet's IP address to finish initializing Sourcegraph. If you have configured a
DNS entry for the IP, configure `externalURL` to reflect that.
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/docker-single-container/google_cloud.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ This tutorial shows you how to deploy [single-container Sourcegraph with Docker]
sudo apt-get install -y docker-ce
mkdir -p /root/.sourcegraph/config
mkdir -p /root/.sourcegraph/data
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:4.5.1
docker run -d --publish 80:7080 --publish 443:7443 --restart unless-stopped --volume /root/.sourcegraph/config:/etc/sourcegraph --volume /root/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.0.0
```

- Create your VM, then navigate to its public IP address.
Expand Down
10 changes: 5 additions & 5 deletions doc/admin/deploy/docker-single-container/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It takes less than a minute to run and install Sourcegraph using Docker:
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->

<pre class="pre-wrap start-sourcegraph-command"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> --volume ~/.sourcegraph/config:/etc/sourcegraph<span class="virtual-br"></span> --volume ~/.sourcegraph/data:/var/opt/sourcegraph<span class="virtual-br"></span> sourcegraph/server:4.5.1</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> --volume ~/.sourcegraph/config:/etc/sourcegraph<span class="virtual-br"></span> --volume ~/.sourcegraph/data:/var/opt/sourcegraph<span class="virtual-br"></span> sourcegraph/server:5.0.0</code></pre>

Once the server is ready (logo is displayed in the terminal), navigate to the hostname or IP address on port `7080`. Create the admin account, then you'll be guided through setting up Sourcegraph for code searching and navigation.

Expand Down Expand Up @@ -46,7 +46,7 @@ For example, to mount a `.gitconfig`, create a file `/mnt/sourcegraph/config/git
Alternatively you can create a new Docker image which inherits from Sourcegraph and then mutates the environment:

```dockerfile
FROM sourcegraph/server:4.5.1
FROM sourcegraph/server:5.0.0

COPY gitconfig /etc/gitconfig
COPY ssh /root/.ssh
Expand Down Expand Up @@ -87,7 +87,7 @@ This is required to [collect debug data](../../pprof.md).
The docker run command for single-container Sourcegraph needs an additional publish flag to expose the debug port:

```bash script
docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --publish 127.0.0.1:6060:6060 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:4.5.1
docker run --publish 7080:7080 --publish 127.0.0.1:3370:3370 --publish 127.0.0.1:6060:6060 --rm --volume ~/.sourcegraph/config:/etc/sourcegraph --volume ~/.sourcegraph/data:/var/opt/sourcegraph sourcegraph/server:5.0.0
```

If Sourcegraph is deployed to a remote server, then access via an SSH tunnel using a tool
Expand All @@ -105,7 +105,7 @@ Add the following to your docker run command:
```
docker run [...]
-e (YOUR CODE)
sourcegraph/server:4.5.1
sourcegraph/server:5.0.0
```

## Operation
Expand Down Expand Up @@ -254,7 +254,7 @@ Sourcegraph can be **tested** on Windows 10 using roughly the same steps provide
1. [Install Docker for Windows](https://docs.docker.com/docker-for-windows/install/)
2. Using a command prompt, follow the same [installation steps provided above](#install-sourcegraph-with-docker) but remove the `--volume` arguments. For example by pasting this:

<pre class="pre-wrap"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> sourcegraph/server:4.5.1</code></pre>
<pre class="pre-wrap"><code>docker run<span class="virtual-br"></span> --publish 7080:7080 --publish 127.0.0.1:3370:3370 --rm<span class="virtual-br"></span> sourcegraph/server:5.0.0</code></pre>

### Low resource environments

Expand Down
14 changes: 7 additions & 7 deletions doc/admin/deploy/kubernetes/helm.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ helm repo add sourcegraph https://helm.sourcegraph.com/release
Install the Sourcegraph chart using default values:

```sh
helm install --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm install --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

Sourcegraph should now be available via the address set. Browsing to the url should now provide access to the Sourcegraph UI to create the initial administrator account.
Expand All @@ -81,7 +81,7 @@ Example overrides can be found in the [examples](https://github.com/sourcegraph/

Providing the override file to Helm is done with the inclusion of the values flag and the name of the file:
```sh
helm upgrade --install --values ./override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install --values ./override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```
When making configuration changes, it's recommended to review the changes that will be applied—see [Reviewing Changes](#reviewing-changes).

Expand Down Expand Up @@ -518,7 +518,7 @@ The override file includes a [BackendConfig] CRD. This is necessary to instruct
**2** – Install the chart

```sh
helm upgrade --install --values ./override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install --values ./override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

It will take around 10 minutes for the load balancer to be fully ready, you may check on the status and obtain the load balancer IP using the following command:
Expand Down Expand Up @@ -637,7 +637,7 @@ storageClass:
**2** – Install the chart

```sh
helm upgrade --install --values ./override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install --values ./override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

It will take some time for the load balancer to be fully ready, use the following to check on the status and obtain the load balancer address (once available):
Expand Down Expand Up @@ -722,7 +722,7 @@ storageClass:
**2** – Install the chart

```sh
helm upgrade --install --values ./override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install --values ./override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

It will take some time for the load balancer to be fully ready, you can check on the status and obtain the load balancer address (when ready) using:
Expand Down Expand Up @@ -808,7 +808,7 @@ storageClass:
**2** – Install the chart

```sh
helm upgrade --install --values ./override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install --values ./override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

It may take some time before your ingress is up and ready to proceed. Depending on how your Ingress Controller works, you may be able to check on its status and obtain the public address of your Ingress using:
Expand Down Expand Up @@ -911,7 +911,7 @@ helm repo update sourcegraph
1. Install the new version:

```bash
helm upgrade --install -f override.yaml --version 4.5.1-rev.1 sourcegraph sourcegraph/sourcegraph
helm upgrade --install -f override.yaml --version 5.0.0-rev.1 sourcegraph sourcegraph/sourcegraph
```

1. Verify the installation has started:
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/deploy/machine-images/gce.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ SSH into the VM as user `sourcegraph` and run the following command:

```bash
# Please update the version number according to the upgrade notes
helm upgrade -i -f /home/sourcegraph/deploy/install/override.yaml --version 4.5.1 sourcegraph sourcegraph/sourcegraph
helm upgrade -i -f /home/sourcegraph/deploy/install/override.yaml --version 5.0.0 sourcegraph sourcegraph/sourcegraph
# Note: /home/sourcegraph/deploy/install/override.yaml is the override file for your instance size
```

Expand Down
2 changes: 1 addition & 1 deletion doc/admin/executors/deploy_executors_kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Ensure you have the following tools installed:
2. Run `cd deploy-sourcegraph-helm/charts/sourcegraph-executor`.
3. Edit the `values.yaml` with any other customizations you may require.
4. Run the following command:
1. `helm upgrade --install -f values.yaml --version 4.5.1 sg-executor sourcegraph/sourcegraph-executor`
1. `helm upgrade --install -f values.yaml --version 5.0.0 sg-executor sourcegraph/sourcegraph-executor`
5. Confirm executors are working are working by checking the _Executors_ page under **Site admin > Executors > Instances** .


Expand Down
4 changes: 2 additions & 2 deletions doc/admin/external_services/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Add the following to your `docker run` command:
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->

<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGHOST=psql1.mycompany.org<span class="virtual-br"></span> -e PGUSER=sourcegraph<span class="virtual-br"></span> -e PGPASSWORD=secret<span class="virtual-br"></span> -e PGDATABASE=sourcegraph<span class="virtual-br"></span> -e PGSSLMODE=require<span class="virtual-br"> -e CODEINTEL_PGHOST=psql2.mycompany.org<span class="virtual-br"></span> -e CODEINTEL_PGUSER=sourcegraph<span class="virtual-br"></span> -e CODEINTEL_PGPASSWORD=secret<span class="virtual-br"></span> -e CODEINTEL_PGDATABASE=sourcegraph-codeintel<span class="virtual-br"></span> -e CODEINTEL_PGSSLMODE=require<span class="virtual-br"></span> sourcegraph/server:4.5.1</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGHOST=psql1.mycompany.org<span class="virtual-br"></span> -e PGUSER=sourcegraph<span class="virtual-br"></span> -e PGPASSWORD=secret<span class="virtual-br"></span> -e PGDATABASE=sourcegraph<span class="virtual-br"></span> -e PGSSLMODE=require<span class="virtual-br"> -e CODEINTEL_PGHOST=psql2.mycompany.org<span class="virtual-br"></span> -e CODEINTEL_PGUSER=sourcegraph<span class="virtual-br"></span> -e CODEINTEL_PGPASSWORD=secret<span class="virtual-br"></span> -e CODEINTEL_PGDATABASE=sourcegraph-codeintel<span class="virtual-br"></span> -e CODEINTEL_PGSSLMODE=require<span class="virtual-br"></span> sourcegraph/server:5.0.0</code></pre>

### Docker Compose

Expand Down Expand Up @@ -193,7 +193,7 @@ When [PgBouncer] is used, we need to include `statement_cache_mode=describe` in

Add the following to your `docker run` command:

<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGDATASOURCE="postgres://username:password@sourcegraph-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> -e CODEINSIGHTS_PGDATASOURCE="postgres://username:password@sourcegraph-codeintel-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> sourcegraph/server:4.5.1</code></pre>
<pre class="pre-wrap start-sourcegraph-command"><code>docker run [...]<span class="virtual-br"></span> -e PGDATASOURCE="postgres://username:password@sourcegraph-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> -e CODEINSIGHTS_PGDATASOURCE="postgres://username:password@sourcegraph-codeintel-pgbouncer.mycompany.com:5432/sg?statement_cache_mode=describe"<span class="virtual-br"></span> sourcegraph/server:5.0.0</code></pre>

### Docker Compose

Expand Down
2 changes: 1 addition & 1 deletion doc/admin/external_services/redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ or follow the [IANA specification for Redis URLs](https://www.iana.org/assignmen
We want line breaks for readability, but backslashes to escape them do not work cross-platform.
This uses line breaks that are rendered but not copy-pasted to the clipboard.
-->
<pre class="pre-wrap"><code>docker run [...]<span class="virtual-br"></span> -e REDIS_ENDPOINT=redis.mycompany.org:6379<span class="virtual-br"></span> sourcegraph/server:4.5.1</code></pre>
<pre class="pre-wrap"><code>docker run [...]<span class="virtual-br"></span> -e REDIS_ENDPOINT=redis.mycompany.org:6379<span class="virtual-br"></span> sourcegraph/server:5.0.0</code></pre>

> NOTE: On Mac/Windows, if trying to connect to a Redis server on the same host machine, remember that Sourcegraph is running inside a Docker container inside of the Docker virtual machine. You may need to specify your actual machine IP address and not `localhost` or `127.0.0.1` as that refers to the Docker VM itself.
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/http_https_configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ docker container run \
\
--volume ~/.sourcegraph/config:/etc/sourcegraph \
--volume ~/.sourcegraph/data:/var/opt/sourcegraph \
sourcegraph/server:4.5.1
sourcegraph/server:5.0.0
```

### Sourcegraph Cluster (Kubernetes)
Expand Down
2 changes: 1 addition & 1 deletion doc/admin/ssl_https_self_signed_cert_nginx.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ docker container run \
\
--volume ~/.sourcegraph/config:/etc/sourcegraph \
--volume ~/.sourcegraph/data:/var/opt/sourcegraph \
sourcegraph/server:4.5.1
sourcegraph/server:5.0.0
```

> NOTE: We recommend removing `--publish 7080:7080` as it's not needed and traffic sent to that port is un-encrypted.
Expand Down
4 changes: 4 additions & 0 deletions doc/admin/updates/docker_compose.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ This page lists the changes that are relevant for [upgrading Sourcegraph on Dock

<!-- Add changes changes to this section before release. -->

## v4.5.1 ➔ v5.0.0

#### Notes:

## v4.5.0 ➔ v4.5.1

#### Notes:
Expand Down
4 changes: 4 additions & 0 deletions doc/admin/updates/kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

<!-- Add changes changes to this section before release. -->

## v4.5.1 ➔ v5.0.0

#### Notes:

## v4.5.0 ➔ v4.5.1

#### Notes:
Expand Down
9 changes: 9 additions & 0 deletions doc/admin/updates/pure_docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,15 @@ Each section comprehensively describes the changes needed in Docker images, envi

<!-- Add changes changes to this section before release. -->

## v4.5.1 ➔ v5.0.0

As a template, perform the same actions as the following diff in your own deployment: [`Upgrade to v5.0.0`](https://github.com/sourcegraph/deploy-sourcegraph-docker/compare/v4.5.1...v5.0.0)

For non-standard replica builds:
- [`Customer Replica 1: ➔ v5.0.0`](https://github.com/sourcegraph/deploy-sourcegraph-docker-customer-replica-1/compare/v4.5.1...v5.0.0)

#### Notes:

## v4.5.0 ➔ v4.5.1

As a template, perform the same actions as the following diff in your own deployment: [`Upgrade to v4.5.1`](https://github.com/sourcegraph/deploy-sourcegraph-docker/compare/v4.5.0...v4.5.1)
Expand Down
4 changes: 4 additions & 0 deletions doc/admin/updates/server.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ This document describes the exact changes needed to update a single-node Sourceg

<!-- Add changes changes to this section before release. -->

## v4.5.1 ➔ v5.0.0

#### Notes:

## v4.5.0 ➔ v4.5.1

#### Notes:
Expand Down
2 changes: 1 addition & 1 deletion doc/dev/background-information/ci/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,8 @@ The run type for environment including `{"RELEASE_NIGHTLY":"true"}`.
Base pipeline (more steps might be included based on branch changes):

- **Metadata**: Pipeline metadata
- Trigger 5.0 release branch healthcheck build
- Trigger 4.5 release branch healthcheck build
- Trigger 4.4 release branch healthcheck build
- Upload build trace

### Browser extension nightly release build
Expand Down

0 comments on commit 4a5a592

Please sign in to comment.