mirror of
https://github.com/typeorm/typeorm.git
synced 2025-12-08 21:26:23 +00:00
fix: Update mssql allowed version to fix vulnerability. (#10933)
This commit is contained in:
parent
0d082463ce
commit
3a51160818
3
.github/workflows/database-tests.yml
vendored
3
.github/workflows/database-tests.yml
vendored
@ -59,6 +59,8 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
mssql-version: ['^9.1.1', '^10.0.1', '^11.0.1']
|
||||
|
||||
container: ${{inputs.node-container}}
|
||||
services:
|
||||
@ -71,6 +73,7 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- run: npm i
|
||||
- run: npm install mssql@${{ matrix.mssql-version }}
|
||||
- run: chown -R 1001:127 /github/home/.npm #This fix is needed for running CLI tests
|
||||
- run: cp .github/workflows/test/mssql.ormconfig.json ormconfig.json
|
||||
- run: npm test
|
||||
|
||||
1122
package-lock.json
generated
1122
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -127,7 +127,7 @@
|
||||
"husky": "^8.0.3",
|
||||
"mocha": "^10.8.2",
|
||||
"mongodb": "^6.3.0",
|
||||
"mssql": "^10.0.1",
|
||||
"mssql": "^11.0.1",
|
||||
"mysql": "^2.18.1",
|
||||
"mysql2": "^3.9.7",
|
||||
"nyc": "^17.1.0",
|
||||
@ -154,7 +154,7 @@
|
||||
"hdb-pool": "^0.1.6",
|
||||
"ioredis": "^5.0.4",
|
||||
"mongodb": "^5.8.0",
|
||||
"mssql": "^9.1.1 || ^10.0.1",
|
||||
"mssql": "^9.1.1 || ^10.0.1 || ^11.0.1",
|
||||
"mysql2": "^2.2.5 || ^3.0.1",
|
||||
"oracledb": "^6.3.0",
|
||||
"pg": "^8.5.1",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user