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

chore: upgrade dependencies #325

Merged
merged 30 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from 29 commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
2ac4cbb
chore: upgrade Apollo to v3.9.0
rosvik Jan 31, 2024
cfbdc7f
chore: update packages with only patch changes
rosvik Feb 7, 2024
c4d1ed1
chore: upgrade hapi types
rosvik Feb 7, 2024
cc7e57f
chore: regenerate lockfile
rosvik Feb 7, 2024
03c23ef
chore/test: upgrade jest, and update snapshots
rosvik Feb 7, 2024
11ef1e2
chore/style: upgrade eslint/prettier, and apply formatting
rosvik Feb 7, 2024
464faa7
chore: upgrade nodemon
rosvik Feb 7, 2024
c9ba169
chore: upgrade typescript and node types
rosvik Feb 7, 2024
789623d
chore: upgrade mapbox polyline
rosvik Feb 7, 2024
2fcc888
upgrade agentkeepalive
rosvik Feb 7, 2024
36cf260
chore: upgrade date-fns
rosvik Feb 7, 2024
fb4c0b1
chore: upgrade firebase-admin
rosvik Feb 7, 2024
7afa61b
chore: upgrade google-auth-library
rosvik Feb 7, 2024
8795d89
chore: upgrade graphql
rosvik Feb 7, 2024
6f9cd15
chore: upgrade dotenv
rosvik Feb 7, 2024
454d634
chore: upgrade joi
rosvik Feb 7, 2024
0576729
chore: upgrade logfmt
rosvik Feb 7, 2024
29fcca0
chore: upgrade lz-string
rosvik Feb 7, 2024
40494e2
chore: upgrade openid-client
rosvik Feb 7, 2024
97bfba2
chore: upgrade p-limit
rosvik Feb 7, 2024
513dc16
chore: upgrade uuid
rosvik Feb 7, 2024
b91d783
chore: upgrade node-fetch to latest non- pure ESM version
rosvik Feb 8, 2024
c16163e
Merge branch 'main' into rosvik/update-dependencies
rosvik Feb 9, 2024
b611847
chore: upgrade hapi-swagger
rosvik Feb 9, 2024
fbc6c69
chore: upgrade hapi
rosvik Feb 9, 2024
c267824
chore: add hapi catbox-memory as declared dependency
rosvik Feb 9, 2024
122d62b
docs: add nodejs min version
rosvik Feb 9, 2024
bbf4cb7
build: upgrade github actions node version
rosvik Feb 9, 2024
f0ea594
chore: use npm audit to fix vulnerable packages
rosvik Feb 9, 2024
f5c3d18
test/build: upgrade dockerfile to node 18
rosvik Feb 9, 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
8 changes: 4 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ jobs:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: install node v16
uses: actions/setup-node@v1
- uses: actions/checkout@v3
- name: install node v18
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
- uses: actions/cache@v2
with:
path: "**/node_modules"
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: install node v16
uses: actions/setup-node@v3
- name: install node v18
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
- name: npm install
run: npm install
- name: npm test
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/tsc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ jobs:
name: tsc
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: install node v16
uses: actions/setup-node@v1
uses: actions/setup-node@v4
with:
node-version: 16
node-version: 18
- name: npm install
run: npm install
- name: tsc
Expand Down
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.18.2
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ docker run --rm -it -e PORT=8080 -p 8080:8080 -v $PWD:/app atb-bff:dev

#### Requirements

- Node.js
- Node.js >=18

Install node packages

Expand Down
Loading