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

[Security] update outdated dependencies #347

Merged
merged 25 commits into from
Oct 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
74a8933
Bump the npm_and_yarn group with 6 updates (#67)
dependabot[bot] Sep 27, 2024
70848ce
Bump the npm_and_yarn group with 6 updates (#68)
dependabot[bot] Sep 27, 2024
1247c24
Bump express-rate-limit from 7.2.0 to 7.3.1 (#64)
dependabot[bot] Sep 27, 2024
c5501c7
Bump uglify-js from 3.17.4 to 3.18.0 (#62)
dependabot[bot] Sep 27, 2024
41f0563
Bump redis from 4.6.13 to 4.6.14 (#54)
dependabot[bot] Sep 27, 2024
8a5e0de
Bump mocha from 10.3.0 to 10.4.0 (#41)
dependabot[bot] Sep 27, 2024
7f4b311
Bump docker/build-push-action from 5 to 6 (#70)
dependabot[bot] Sep 27, 2024
054229b
Bump newrelic from 11.14.0 to 12.5.1 (#69)
dependabot[bot] Sep 27, 2024
f9a67ae
Bump engine.io-client from 6.5.4 to 6.6.1 (#71)
dependabot[bot] Sep 27, 2024
00885f7
Bump express-rate-limit from 7.3.1 to 7.4.0 (#77)
dependabot[bot] Sep 27, 2024
c1a22f1
Bump mocha from 10.4.0 to 10.7.3 (#76)
dependabot[bot] Sep 27, 2024
a2c310c
Bump engine.io from 6.5.5 to 6.6.1 (#72)
dependabot[bot] Sep 27, 2024
30ad3eb
Bump uglify-js from 3.18.0 to 3.19.3 (#73)
dependabot[bot] Sep 27, 2024
bdc4298
Bump redis from 4.6.14 to 4.7.0 (#74)
dependabot[bot] Sep 27, 2024
22d2a02
Update CI tests
eatyourgreens Sep 27, 2024
43fe297
Convert tests to ESM
eatyourgreens Jan 11, 2024
148b6d0
Remove chai-http
eatyourgreens Jan 11, 2024
ae1bd45
Fix global expect
eatyourgreens Jan 11, 2024
c859ac9
Install Chai v5.1.0
eatyourgreens Apr 14, 2024
ed40f16
Remove chai-as-promised
eatyourgreens Apr 14, 2024
44b6915
fix outdated Dockerfile syntax
eatyourgreens Sep 27, 2024
a50ee75
superagent isn't used any more
eatyourgreens Sep 27, 2024
8d3fdfa
Bump express-rate-limit from 7.4.0 to 7.4.1 (#80)
dependabot[bot] Oct 14, 2024
9de9e14
Bump the npm_and_yarn group across 1 directory with 3 updates (#86)
dependabot[bot] Oct 14, 2024
421459f
Bump engine.io version to match FEM.
traviskoleva Oct 17, 2024
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 .github/workflows/build_branch.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
uses: docker/setup-buildx-action@v3

- name: Test build
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: false
tags: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/run_tests_CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ jobs:
- uses: actions/checkout@v4
- name: Build docker containers and run tests
run: |
docker-compose build
docker-compose run -T --rm sugar npm test
docker-compose run -T --rm sugar npm run compile-client
docker compose build
docker compose run -T --rm sugar npm test
docker compose run -T --rm sugar npm run compile-client


2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM node:20-slim

ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

WORKDIR /node_app

Expand Down
Loading