Skip to content
This repository has been archived by the owner on Dec 11, 2022. It is now read-only.

feat: update to Meteor 1.10.2 #31

Merged
merged 1 commit into from
May 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ defaults: &defaults
DOCKER_NAMESPACE: "reactioncommerce"
DOCKER_NAME: "identity"
docker:
- image: circleci/node:12.14.0-stretch
- image: circleci/node:12.16.1-stretch

jobs:
install-dependencies:
Expand Down
10 changes: 5 additions & 5 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@ static-html # Define static page content in .html files
[email protected] # CSS minifier run for production mode
[email protected] # JS minifier run for production mode
[email protected] # ECMAScript 5 compatibility for older browsers
[email protected].0 # Enable ECMAScript2015+ syntax in app code
shell-server@0.4.0 # Server-side component of the `meteor shell` command
webapp@1.8.0 # Serves a Meteor app over HTTP
[email protected].3 # Enable ECMAScript2015+ syntax in app code
shell-server@0.5.0 # Server-side component of the `meteor shell` command
webapp@1.9.1 # Serves a Meteor app over HTTP
[email protected] # Support for server-side rendering
[email protected] # Meteor transparent reactive programming library
[email protected]

# Meteor Auth Packages
accounts-base@1.5.0
accounts-password@1.5.2
accounts-base@1.6.0
accounts-password@1.6.0
2 changes: 1 addition & 1 deletion .meteor/release
Original file line number Diff line number Diff line change
@@ -1 +1 @@
METEOR@1.9
METEOR@1.10.2
34 changes: 17 additions & 17 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -1,25 +1,25 @@
accounts-base@1.5.0
accounts-password@1.5.3
accounts-base@1.6.0
accounts-password@1.6.0
[email protected]
[email protected].1
[email protected].3
[email protected]
[email protected]
[email protected]
[email protected]
boilerplate-generator@1.6.0
[email protected].1
boilerplate-generator@1.7.0
[email protected].2
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected].1
[email protected].1
[email protected].2
[email protected].3
[email protected]
[email protected]
[email protected]
Expand All @@ -31,25 +31,25 @@ [email protected]
[email protected]
[email protected]
[email protected]
[email protected].0
[email protected].1
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
minimongo@1.4.5
minimongo@1.6.0
[email protected]
[email protected]
[email protected]
mongo@1.8.0
mongo@1.10.0
[email protected]
[email protected]
[email protected]
[email protected]
npm-mongo@3.3.0
npm-mongo@3.7.1
[email protected]
[email protected]
random@1.1.0
random@1.2.0
[email protected]
[email protected]
[email protected]
Expand All @@ -58,15 +58,15 @@ [email protected]
[email protected]
[email protected]
[email protected]
shell-server@0.4.0
socket-stream-client@0.2.2
shell-server@0.5.0
socket-stream-client@0.3.0
[email protected]
srp@1.0.12
srp@1.1.0
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
webapp@1.8.2
webapp@1.9.1
[email protected]
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
12.14.0
12.16.1
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM reactioncommerce/meteor:1.9.0-v1 as builder
FROM reactioncommerce/meteor:1.10.2-v1 as builder

ENV APP_SOURCE_DIR /usr/local/src/appsrc
ENV APP_BUNDLE_DIR /usr/local/src/build
Expand All @@ -24,7 +24,7 @@ RUN printf "\\n[-] Building Meteor application...\\n" \
##############################################################################
# final build stage - create the final production image
##############################################################################
FROM node:12.14.0-slim
FROM node:12.16.1-slim

LABEL maintainer="Reaction Commerce <[email protected]>"

Expand All @@ -43,7 +43,7 @@ WORKDIR /usr/local/src/app/programs/server/
RUN npm install --production --no-audit

# Also install mongodb pkg needed by the waitForMongo script
RUN npm install -E --no-save mongodb@3.3.5
RUN npm install -E --no-save mongodb@3.5.7

WORKDIR /usr/local/src/app

Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM reactioncommerce/meteor:1.9.0-v1
FROM reactioncommerce/meteor:1.10.2-v1

# hadolint ignore=DL3002
USER root
Expand Down
50 changes: 33 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"i18next-multiload-backend-adapter": "^0.1.1",
"lodash": "^4.17.15",
"meteor-node-stubs": "^1.0.0",
"mongodb": "3.3.5",
"mongodb": "3.5.7",
"node-fetch": "^2.6.0",
"prop-types": "^15.7.2",
"query-string": "^6.9.0",
Expand Down