Skip to content

Commit

Permalink
Prevent use of version 8.11 of the pg package
Browse files Browse the repository at this point in the history
There is currently an issue with version 8.11 that causes webpack
failures. See brianc/node-postgres#2975.
  • Loading branch information
colecu committed Jun 7, 2023
1 parent b7ed0e7 commit dc866a6
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lambdas/data-migration1/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"@cumulus/types": "15.0.3",
"knex": "2.4.1",
"lodash": "^4.17.21",
"pg": "^8.3.0"
"pg": "=8.10.0"
},
"devDependencies": {
"@cumulus/test-data": "15.0.3"
Expand Down
2 changes: 1 addition & 1 deletion lambdas/data-migration2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"knex": "2.4.1",
"lodash": "^4.17.21",
"p-map": "^4.0.0",
"pg": "^8.3.0"
"pg": "=8.10.0"
},
"devDependencies": {
"@cumulus/test-data": "15.0.3"
Expand Down
2 changes: 1 addition & 1 deletion lambdas/db-migration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
"dependencies": {
"@cumulus/db": "15.0.3",
"knex": "2.4.1",
"pg": "^8.3.0"
"pg": "=8.10.0"
}
}
2 changes: 1 addition & 1 deletion lambdas/db-provision-user-database/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"@cumulus/common": "15.0.3",
"@cumulus/db": "15.0.3",
"knex": "2.4.1",
"pg": "^8.3.0"
"pg": "=8.10.0"
},
"devDependencies": {
"@types/pg": "^7.14.4"
Expand Down
2 changes: 1 addition & 1 deletion lambdas/postgres-migration-count-tool/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@
"@cumulus/types": "15.0.3",
"knex": "2.4.1",
"p-map": "^4.0.0",
"pg": "^8.3.0"
"pg": "=8.10.0"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"p-timeout": "^3.2.0",
"p-wait-for": "^3.1.0",
"parallel": "^1.2.0",
"pg": "^8.3.0",
"pg": "=8.10.0",
"proxyquire": "^2.1.3",
"retry": "^0.12.0",
"rewire": "^6.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/db/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"is-valid-hostname": "1.0.2",
"knex": "2.4.1",
"lodash": "^4.17.21",
"pg": "^8.3.0",
"pg": "=8.10.0",
"snake-camel": "^1.0.6",
"uuid": "8.3.2"
},
Expand Down

0 comments on commit dc866a6

Please sign in to comment.