Skip to content

Commit

Permalink
📚 Update version and changelogs (#1924)
Browse files Browse the repository at this point in the history
  • Loading branch information
RomaricMourgues authored Feb 1, 2022
1 parent f4db438 commit 36ce6cd
Show file tree
Hide file tree
Showing 8 changed files with 81 additions and 84 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/saas-update-backend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
deploy-php:
runs-on: ubuntu-20.04
steps:
- run: 'echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
- run: 'echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/develop')
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/qa')
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/canary')
run: 'echo "DOCKERTAG=canary" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=${{ env.DOCKERTAGVERSION }}-canary" >> $GITHUB_ENV'
Expand All @@ -40,13 +40,13 @@ jobs:
deploy-node:
runs-on: ubuntu-20.04
steps:
- run: 'echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
- run: 'echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/develop')
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/qa')
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/canary')
run: 'echo "DOCKERTAG=canary" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=${{ env.DOCKERTAGVERSION }}-canary" >> $GITHUB_ENV'
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/saas-update-front.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,13 @@ jobs:
runs-on: ubuntu-20.04
if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/qa' || github.ref == 'refs/heads/canary'
steps:
- run: 'echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
- run: 'echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/develop')
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=develop" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/qa')
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2021.Q4.860" >> $GITHUB_ENV'
run: 'echo "DOCKERTAG=qa" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=2022.Q1.874" >> $GITHUB_ENV'
- name: Set env to develop
if: endsWith(github.ref, '/canary')
run: 'echo "DOCKERTAG=canary" >> $GITHUB_ENV; echo "DOCKERTAGVERSION=${{ env.DOCKERTAGVERSION }}-canary" >> $GITHUB_ENV'
Expand Down
108 changes: 45 additions & 63 deletions CONTRIBUTING.md

Large diffs are not rendered by default.

15 changes: 15 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
# Twake 2022.Q1.874

### Messages

- Faster loading of message feed
- Fix message input issues

### General

- Reduce magic links invite urls
- Fix guest popup not visible on paid plans
- Fix company owners and admins not able to manage workspaces
- Fix channels members counters
- Migrate channels to recoil state management for more stable channels (favorite, rename, create, join etc)

# Twake 2021.Q4.860

### Messages
Expand Down
6 changes: 3 additions & 3 deletions twake/backend/core/src/Twake/Core/Controller/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@ function getVersion(Request $request)
"auth_mode" => array_keys($auth),
"auth" => $auth,
"version" => [
"current" => /* @VERSION_DETAIL */ "2021.Q4.860",
"current" => /* @VERSION_DETAIL */ "2022.Q1.874",
"minimal" => [
"web" => /* @MIN_VERSION_WEB */ "2021.Q4.860",
"mobile" => /* @MIN_VERSION_MOBILE */ "2021.Q4.860",
"web" => /* @MIN_VERSION_WEB */ "2022.Q1.874",
"mobile" => /* @MIN_VERSION_MOBILE */ "2022.Q1.874",
]
],
"elastic_search_available" => !!$this->container->getParameter("es.host"),
Expand Down
6 changes: 3 additions & 3 deletions twake/backend/node/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
export default {
current: /* @VERSION_DETAIL */ "2021.Q4.860",
current: /* @VERSION_DETAIL */ "2022.Q1.874",
minimal: {
web: /* @MIN_VERSION_WEB */ "2021.Q4.860",
mobile: /* @MIN_VERSION_MOBILE */ "2021.Q4.860",
web: /* @MIN_VERSION_WEB */ "2022.Q1.874",
mobile: /* @MIN_VERSION_MOBILE */ "2022.Q1.874",
},
};
4 changes: 2 additions & 2 deletions twake/frontend/src/app/environment/version.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export default {
version: /* @VERSION */ '2021.Q4',
version_detail: /* @VERSION_DETAIL */ '2021.Q4.860',
version: /* @VERSION */ '2022.Q1',
version_detail: /* @VERSION_DETAIL */ '2022.Q1.874',
version_name: /* @VERSION_NAME */ 'Albatros',
};
8 changes: 4 additions & 4 deletions twake/update_version.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@

const versions = {
VERSION_NAME: process.env.TWAKE_VERSION_NAME || "Albatros",
VERSION: process.env.TWAKE_VERSION || "2021.Q4",
VERSION_DETAIL: process.env.TWAKE_VERSION_DETAIL || "2021.Q4.860",
MIN_VERSION_WEB: process.env.TWAKE_MIN_VERSION_WEB || "2021.Q4.860",
MIN_VERSION_MOBILE: process.env.TWAKE_MIN_VERSION_MOBILE || "2021.Q4.860",
VERSION: process.env.TWAKE_VERSION || "2022.Q1",
VERSION_DETAIL: process.env.TWAKE_VERSION_DETAIL || "2022.Q1.874",
MIN_VERSION_WEB: process.env.TWAKE_MIN_VERSION_WEB || "2022.Q1.874",
MIN_VERSION_MOBILE: process.env.TWAKE_MIN_VERSION_MOBILE || "2022.Q1.874",
};

const files = [
Expand Down

0 comments on commit 36ce6cd

Please sign in to comment.