Skip to content

Commit

Permalink
Merge pull request #681 from assistify/merge/3.8.3
Browse files Browse the repository at this point in the history
Merge tag '3.8.3'
  • Loading branch information
mrsimpson authored Dec 7, 2020
2 parents e5ae924 + 7d5e7f0 commit 33685f8
Show file tree
Hide file tree
Showing 659 changed files with 25,635 additions and 7,066 deletions.
15 changes: 12 additions & 3 deletions .docker-mongo/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,22 @@ FROM node:12.18.4-buster-slim
LABEL maintainer="[email protected]"

# Install MongoDB and dependencies
ENV MONGO_MAJOR 4.2
ENV MONGO_VERSION 4.2.10

RUN set -x \
&& apt-get update \
&& apt-get install -y wget gnupg dirmngr pwgen \
&& wget -qO - https://www.mongodb.org/static/pgp/server-4.2.asc | apt-key add - \
&& echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/4.2 main" | tee /etc/apt/sources.list.d/mongodb-org-4.2.list \
&& wget -qO - "https://www.mongodb.org/static/pgp/server-${MONGO_MAJOR}.asc" | apt-key add - \
&& echo "deb http://repo.mongodb.org/apt/debian buster/mongodb-org/$MONGO_MAJOR main" | tee "/etc/apt/sources.list.d/mongodb-org-${MONGO_MAJOR}.list" \
&& apt-get update \
&& apt-get install -y mongodb-org fontconfig \
&& apt-get install -y \
mongodb-org=$MONGO_VERSION \
mongodb-org-server=$MONGO_VERSION \
mongodb-org-shell=$MONGO_VERSION \
mongodb-org-mongos=$MONGO_VERSION \
mongodb-org-tools=$MONGO_VERSION \
fontconfig \
&& apt-get clean my room \
&& groupadd -g 65533 -r rocketchat \
&& useradd -u 65533 -r -g rocketchat rocketchat \
Expand Down
2 changes: 1 addition & 1 deletion .docker/Dockerfile.rhel
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM registry.access.redhat.com/rhscl/nodejs-8-rhel7

ENV RC_VERSION 3.7.1
ENV RC_VERSION 3.8.3

MAINTAINER [email protected]

Expand Down
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ public/pdf.worker.min.js
public/workers/**/*
imports/client/
!/.storybook/
ee/server/services/dist/**
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@
"syntax"
],
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn"
"react-hooks/exhaustive-deps": ["warn", {
"additionalHooks": "(useComponentDidUpdate)"
}]
},
"settings": {
"import/resolver": {
Expand Down
14 changes: 14 additions & 0 deletions .github/history-manual.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,19 @@
"userLogin": "rodrigok",
"contributors": [],
"description": "Requires the 2FA password fallback enforcement enabled to work"
}],
"3.7.3": [{
"title": "[FIX] Exception on certain login cases including SAML",
"userLogin": "sampaiodiego",
"contributors": [
"sampaiodiego"
]
}],
"3.8.3": [{
"title": "[FIX] Exception on certain login cases including SAML",
"userLogin": "sampaiodiego",
"contributors": [
"sampaiodiego"
]
}]
}
Loading

0 comments on commit 33685f8

Please sign in to comment.