Skip to content

Commit 4555211

Browse files
authored
feat: update mssql dependency and other dependencies as well (#9763)
* updating dependencies * fixing circleci config * reverting mongodb version back * increasing cli commands test timeout
1 parent 12fdd73 commit 4555211

File tree

7 files changed

+6711
-15078
lines changed

7 files changed

+6711
-15078
lines changed

.circleci/config.yml

+11-12
Original file line numberDiff line numberDiff line change
@@ -82,21 +82,21 @@ jobs:
8282
lint:
8383
working_directory: ~/typeorm
8484
docker:
85-
- image: circleci/node:12
85+
- image: circleci/node:16
8686
steps:
8787
- checkout
8888
- install-packages:
89-
cache-key: node12
89+
cache-key: node16
9090
- run: npm run lint
9191

9292
build:
9393
working_directory: ~/typeorm
9494
docker:
95-
- image: circleci/node:12
95+
- image: circleci/node:16
9696
steps:
9797
- checkout
9898
- install-packages:
99-
cache-key: node12
99+
cache-key: node16
100100
- run: npm run compile
101101
- persist_to_workspace:
102102
root: ~/typeorm
@@ -110,7 +110,7 @@ jobs:
110110
default: ""
111111
node-version:
112112
type: string
113-
default: "12"
113+
default: "16"
114114
working_directory: ~/typeorm
115115
docker:
116116
- image: circleci/node:<< parameters.node-version >>
@@ -201,27 +201,26 @@ workflows:
201201
matrix:
202202
parameters:
203203
node-version:
204-
- "12"
205204
- "14"
206205
- "16"
207206
- test:
208-
name: test (cockroachdb) - Node v12
207+
name: test (cockroachdb) - Node v16
209208
requires:
210209
- lint
211210
- build
212211
databases: "cockroachdb"
213-
node-version: "12"
212+
node-version: "16"
214213
- test:
215-
name: test (oracle) - Node v12
214+
name: test (oracle) - Node v16
216215
requires:
217216
- lint
218217
- build
219218
databases: "oracle"
220-
node-version: "12"
219+
node-version: "16"
221220
- test:
222-
name: test (postgres 12) - Node v12
221+
name: test (postgres 12) - Node v16
223222
requires:
224223
- lint
225224
- build
226225
databases: "postgres-12"
227-
node-version: "12"
226+
node-version: "16"

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ services:
5353

5454
# mssql
5555
mssql:
56-
image: "mcr.microsoft.com/mssql/server:2017-latest-ubuntu"
56+
image: "mcr.microsoft.com/mssql/server:2022-latest"
5757
container_name: "typeorm-mssql"
5858
ports:
5959
- "1433:1433"

0 commit comments

Comments
 (0)