Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(security): patch ws dependency vulnerabilities #1118

Merged
merged 2 commits into from
Jun 20, 2024
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
22 changes: 11 additions & 11 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
postgres :
image : postgres:9.4.5
container_name : forest_express_sequelize_postgres
ports :
- "5437:5432"
postgres:
image: postgres:12.19
container_name: forest_express_sequelize_postgres
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

upgrade needed to pass the CI

ports:
- '5437:5432'
environment:
- POSTGRES_DB=forest-express-sequelize-test
- POSTGRES_USER=forest
Expand All @@ -16,8 +16,8 @@ mysql_min:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8998:3306"
ports:
- '8998:3306'

mysql_max:
image: mysql:8.0
Expand All @@ -27,8 +27,8 @@ mysql_max:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "8999:3306"
ports:
- '8999:3306'

maria_db:
image: mariadb:10
Expand All @@ -38,5 +38,5 @@ maria_db:
MYSQL_DATABASE: forest-express-sequelize-test
MYSQL_USER: forest
MYSQL_PASSWORD: secret
ports :
- "9000:3306"
ports:
- '9000:3306'
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -11517,9 +11517,9 @@ [email protected]:
mkdirp "^0.5.1"

ws@^7.4.6:
version "7.5.9"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.9.tgz#54fa7db29f4c7cec68b1ddd3a89de099942bb591"
integrity sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==
version "7.5.10"
resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.10.tgz#58b5c20dc281633f6c19113f39b349bd8bd558d9"
integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==

xml-name-validator@^3.0.0:
version "3.0.0"
Expand Down
Loading