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: dependencies 2022-08-21 #1030

Merged
merged 8 commits into from
Aug 22, 2022
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
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
# Step build
build:
docker:
- image: cimg/node:16.16.0
- image: cimg/node:16.17.0

working_directory: ~/repo

Expand Down Expand Up @@ -47,7 +47,7 @@ jobs:
# Step release
release:
docker:
- image: cimg/node:16.16.0
- image: cimg/node:16.17.0
working_directory: ~/repo
steps:
- attach_workspace: *attach_work_dir
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.16.0
16.17.0
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ---- Base ----
FROM node:16.16.0-alpine AS base
FROM node:16.17.0-alpine AS base

# ------------------
# package.json cache
Expand Down Expand Up @@ -52,7 +52,7 @@ RUN true \
# ---- Final ----
# Resulting new, minimal image
# This image must have the minimum amount of layers
FROM node:16.16.0-alpine as final
FROM node:16.17.0-alpine as final

ENV NODE_ENV production

Expand Down
14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"license": "MIT",
"dependencies": {
"@algolia/requester-node-http": "4.14.2",
"@sentry/node": "7.10.0",
"@sentry/node": "7.11.1",
"algoliasearch": "4.14.2",
"async": "3.2.4",
"bunyan": "1.8.15",
Expand Down Expand Up @@ -52,14 +52,14 @@
"@types/async": "3.2.15",
"@types/escape-html": "1.0.2",
"@types/hosted-git-info": "3.0.2",
"@types/jest": "28.1.6",
"@types/lodash": "4.14.182",
"@types/jest": "28.1.7",
"@types/lodash": "4.14.184",
"@types/ms": "0.7.31",
"@types/numeral": "2.0.2",
"@types/traverse": "0.6.32",
"@types/truncate-utf8-bytes": "1.0.0",
"@typescript-eslint/eslint-plugin": "5.33.0",
"@typescript-eslint/parser": "5.33.0",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"dotenv": "16.0.1",
"eslint": "8.22.0",
"eslint-config-algolia": "20.0.0",
Expand All @@ -79,12 +79,12 @@
"prettier": "2.7.1",
"renovate-config-algolia": "2.1.10",
"semantic-release": "19.0.3",
"ts-jest": "28.0.7",
"ts-jest": "28.0.8",
"typescript": "4.7.4",
"validator": "13.7.0"
},
"engines": {
"node": "16.16.0",
"node": "16.17.0",
"yarn": "^1.22.0"
},
"repository": {
Expand Down
Loading