From cbc9baae4f874b7c183dabec9374480d9004300f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Mon, 16 Sep 2019 12:05:49 +0100 Subject: [PATCH 1/3] Bump bblfsh/web to v0.11.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 416dbeb..886f353 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -76,7 +76,7 @@ services: memory: ${GITBASE_LIMIT_MEM-0} bblfsh-web: - image: bblfsh/web:v0.11.1 + image: bblfsh/web:v0.11.3 restart: unless-stopped command: -bblfsh-addr bblfsh:9432 ports: From 4a1a26b5e059dad466135010e60143dd9ec612b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Mon, 16 Sep 2019 12:06:12 +0100 Subject: [PATCH 2/3] Bump srcd/sourced-ui to v0.6.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín --- docker-compose.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-compose.yml b/docker-compose.yml index 886f353..9d69b3b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -117,7 +117,7 @@ services: - metadata:/var/lib/postgresql/data sourced-ui: - image: srcd/sourced-ui:v0.5.0 + image: srcd/sourced-ui:v0.6.0 restart: unless-stopped environment: SYNC_MODE: ${GITBASE_SIVA} From 043ddcb24398fcea63363d7b062209bdf254cb1d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlos=20Mart=C3=ADn?= Date: Mon, 16 Sep 2019 12:06:32 +0100 Subject: [PATCH 3/3] Bump changelog for v0.16.0 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Carlos Martín --- CHANGELOG.md | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d7a575..2924408 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,14 +10,48 @@ The changes listed under `Unreleased` section have landed in master but are not ## [Unreleased] +## [v0.16.0](https://github.com/src-d/sourced-ce/releases/tag/v0.16.0) - 2019-09-16 + +### Components + +- `srcd/sourced-ui` has been updated to [v0.6.0](https://github.com/src-d/sourced-ui/releases/tag/v0.6.0). +- `bblfsh/web` has been updated to [v0.11.3](https://github.com/bblfsh/web/releases/tag/v0.11.3). + ### Fixed -- Increase timeout for start command ([#219](https://github.com/src-d/sourced-ce/pull/219)) +- Increase the timeout for the `start` command ([#219](https://github.com/src-d/sourced-ce/pull/219)). ### Changed - `sourced compose list` shows an index number for each compose entry, and `sourced compose set` now accepts both the name or the index number (@cmbahadir) ([#199](https://github.com/src-d/sourced-ce/issues/199)). +### Upgrading + +Install the new `v0.16.0` binary, then run `sourced compose download`. If you had a deployment running, you can re-deploy the containers with `sourced restart`. + +Please note: `sourced-ui` contains changes to the color palettes for the default dashboard charts, and these changes will only be visible when you run `sourced init local/org` with a new path or organization. This is a cosmetic improvement that you can ignore safely. + +If you want to apply the new default dashboards over your existing deployment, you will need to run `sourced prune` (or `sourced prune --all`) and `sourced init local/org` again. + +Important: running `prune` will delete all your current data and customizations, including charts or dashboards. You can choose to not `prune` your existing deployments, keeping you previous default dashboards and charts. + +```shell +$ sourced version +sourced version v0.16.0 + +$ sourced compose download +Docker compose file successfully downloaded to your ~/.sourced/compose-files directory. It is now the active compose file. +To update your current installation use `sourced restart` + +$ sourced status workdirs + bblfsh +* src-d + +$ sourced prune --all +$ sourced init orgs src-d +$ sourced init orgs bblfsh +``` + ## [v0.15.1](https://github.com/src-d/sourced-ce/releases/tag/v0.15.1) - 2019-08-27 ### Fixed