Skip to content

Upgrade mssql to latest; Drop Node 14 support #88

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

Merged
merged 2 commits into from
Jan 5, 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
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM node:18.12.1-alpine
RUN mkdir /app
WORKDIR /app

RUN apk --no-cache add bash
RUN apk --no-cache add bash git
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Previously:

 > [test 6/7] RUN   yarn --frozen-lockfile &&   yarn cache clean:
4.721 yarn install v1.22.19
5.361 [1/5] Validating package.json...
5.367 [2/5] Resolving packages...
6.314 [3/5] Fetching packages...
6.688 info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
6.688 error Couldn't find the binary git


COPY package.json yarn.lock /app/
RUN \
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "3.4.0",
"type": "module",
"engines": {
"node": ">=14.19.0"
"node": ">=16"
},
"exports": {
"./postgres.js": "./lib/postgres.js",
Expand All @@ -22,7 +22,7 @@
"JSONStream": "^1.3.5",
"ajv": "^8.11.0",
"micro": "^9.3.4",
"mssql": "^9.1.1",
"mssql": "^10.0.1",
"mysql2": "^3.0.1",
"open": "^6.3.0",
"pg": "^8.7.1",
Expand Down
Loading