Skip to content

Commit

Permalink
Merge pull request #612 from Swirrl/sl/mongo-upgrade
Browse files Browse the repository at this point in the history
Upgrade mongodb dep to v4.4
  • Loading branch information
scottlowe authored May 31, 2022
2 parents 9c880a2 + 2e13b34 commit 62e01d4
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ executors:
auth:
username: $DOCKERHUB_USERNAME # can specify string literal values
password: $DOCKERHUB_PASSWORD # or project environment variable reference
- image: mongo:3.2
- image: mongo:4.4
auth:
username: $DOCKERHUB_USERNAME # can specify string literal values
password: $DOCKERHUB_PASSWORD # or project environment variable reference
Expand Down
2 changes: 1 addition & 1 deletion dependencies-mongo-auth.edn
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{"stardog" "6.2.3-2.1"
"mongodb" "3.2-1.1"
"mongodb" "4.4"
"server-ssl" "1.2021"}
2 changes: 1 addition & 1 deletion drafter/Procfile.example
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
stardog: trap '../.omni_cache/install/stardog/install/stardog/bin/stardog-admin server stop' EXIT > /dev/null; env STARDOG_HOME=$(pwd)/../.omni_cache/install/stardog/install/stardog-home $(pwd)/../.omni_cache/install/stardog/install/stardog/bin/stardog-admin server start --disable-security --foreground
mongodb: docker run -p 27017:27017 --rm --name mongodb-dev -v $(pwd)/../.omni_cache/install/mongodb/install/data:/data/db -v $(pwd)/../.omni_cache/install/mongodb/install/dump:/dump mongo:3.2
mongodb: docker run -p 27017:27017 --rm --name mongodb-dev -v $(pwd)/../.omni_cache/install/mongodb/install/data:/data/db -v $(pwd)/../.omni_cache/install/mongodb/install/dump:/dump mongo:4.4
4 changes: 2 additions & 2 deletions drafter/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: "3.9"
version: "3.10"
services:
stardog:
image: swirrl/stardog:6.2.3-multi-dbs
Expand All @@ -7,6 +7,6 @@ services:
environment:
CREATE_DATABASE: drafter-dev-db,drafter-test-db
mongo:
image: mongo:3.2
image: mongo:4.4
ports:
- "27017:27017"
2 changes: 1 addition & 1 deletion package/pmd3-manifest.edn
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@

:omni/package-name "drafter-pmd3"
:omni/dependencies {"stardog" "5.2.0-2.1" ; pmd3 needs stardog 5. 2.1 includes the log4shell patch.
"mongodb" "3.2-1.1"
"mongodb" "4.4"
"server-ssl" "1.2021"}}]

0 comments on commit 62e01d4

Please sign in to comment.