Skip to content

Commit

Permalink
chore: Bump meteor to 3.0.4 (#33596)
Browse files Browse the repository at this point in the history
  • Loading branch information
ggazzo authored Oct 23, 2024
1 parent 247b1c6 commit b524ba9
Show file tree
Hide file tree
Showing 25 changed files with 73 additions and 54 deletions.
13 changes: 13 additions & 0 deletions .changeset/fair-colts-remain.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@rocket.chat/meteor": patch
"@rocket.chat/account-service": patch
"@rocket.chat/authorization-service": patch
"@rocket.chat/ddp-streamer": patch
"@rocket.chat/omnichannel-transcript": patch
"@rocket.chat/presence-service": patch
"@rocket.chat/queue-worker": patch
"@rocket.chat/stream-hub-service": patch
"rocketchat-services": patch
---

Bump meteor to 3.0.4 and Node version to 20.18.0
2 changes: 1 addition & 1 deletion .github/workflows/ci-deploy-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/ci-test-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,11 @@ jobs:
include-hidden-files: true

- name: Show server logs if E2E test failed
if: failure()
if: failure() && inputs.release == 'ee'
run: docker compose -f docker-compose-ci.yml logs

- name: Show server logs if E2E test failed
if: failure() && inputs.release != 'ee'
run: docker compose -f docker-compose-ci.yml logs rocketchat

- name: Extract e2e:ee:coverage
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ jobs:
uses: ./.github/actions/setup-node
if: github.event.action != 'closed'
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-update-description.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Setup NodeJS
uses: ./.github/actions/setup-node
with:
node-version: 20.17.0
node-version: 20.18.0
deno-version: 1.37.1
cache-modules: true
install: true
Expand Down
32 changes: 16 additions & 16 deletions .github/workflows/update-version-durability.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,22 +14,22 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v4

- name: Use Node.js
uses: actions/[email protected]
with:
node-version: '20.17.0'
- name: Use Node.js
uses: actions/[email protected]
with:
node-version: '20.18.0'

- name: Install dependencies
run: |
cd ./.github/actions/update-version-durability
npm install
- name: Install dependencies
run: |
cd ./.github/actions/update-version-durability
npm install
- name: Update Version Durability
uses: ./.github/actions/update-version-durability
with:
GH_TOKEN: ${{ secrets.CI_PAT }}
D360_TOKEN: ${{ secrets.D360_TOKEN }}
D360_ARTICLE_ID: 800f8d52-409d-478d-b560-f82a2c0eb7fb
PUBLISH: true
- name: Update Version Durability
uses: ./.github/actions/update-version-durability
with:
GH_TOKEN: ${{ secrets.CI_PAT }}
D360_TOKEN: ${{ secrets.D360_TOKEN }}
D360_ARTICLE_ID: 800f8d52-409d-478d-b560-f82a2c0eb7fb
PUBLISH: true
2 changes: 1 addition & 1 deletion apps/meteor/.docker-mongo/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-bullseye-slim
FROM node:20.18.0-bullseye-slim

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/.docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/.docker/Dockerfile.debian
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ ARG DENO_VERSION="1.37.1"

FROM denoland/deno:bin-${DENO_VERSION} as deno

FROM node:20.17.0-bullseye-slim
FROM node:20.18.0-bullseye-slim

LABEL maintainer="[email protected]"

Expand Down
2 changes: 1 addition & 1 deletion apps/meteor/.meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
[email protected].3
[email protected].4
8 changes: 5 additions & 3 deletions apps/meteor/client/startup/startup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,11 @@ Meteor.startup(() => {
return;
}

if (Meteor.loggingIn()) {
return;
}
// TODO: TEMPORARY UNTIL THIS IS FIXED
// BACKEND MS SHOULD SEND USER DATA AFTER LOGIN
// if (Meteor.loggingIn()) {
// return;
// }

const user = await synchronizeUserData(uid);
if (!user) {
Expand Down
4 changes: 2 additions & 2 deletions apps/meteor/ee/server/services/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0 as build
FROM node:20.18.0 as build

WORKDIR /app

Expand Down Expand Up @@ -28,7 +28,7 @@ COPY ./tsconfig.base.json .
RUN yarn workspace @rocket.chat/core-typings run build \
&& yarn workspace @rocket.chat/rest-typings run build

FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/account-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/authorization-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/ddp-streamer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/omnichannel-transcript/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/presence-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/queue-worker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
2 changes: 1 addition & 1 deletion ee/apps/stream-hub-service/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.17.0-alpine3.20
FROM node:20.18.0-alpine3.20

ARG SERVICE

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"homepage": "https://github.com/RocketChat/Rocket.Chat#readme",
"engines": {
"yarn": "4.5.0",
"node": "20.17.0",
"node": "20.18.0",
"npm": "Use yarn instead"
},
"packageManager": "[email protected]",
Expand All @@ -54,7 +54,7 @@
]
},
"volta": {
"node": "20.17.0",
"node": "20.18.0",
"yarn": "1.22.18"
},
"resolutions": {
Expand Down

0 comments on commit b524ba9

Please sign in to comment.