Skip to content

Commit 16be714

Browse files
authored
test: Updated the mininum version of pg-native in pg-esm tests to align with the pg tests (#2616)
1 parent 7bdada6 commit 16be714

File tree

4 files changed

+19
-33
lines changed

4 files changed

+19
-33
lines changed

THIRD_PARTY_NOTICES.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
646646

647647
### import-in-the-middle
648648

649-
This product includes source derived from [import-in-the-middle](https://github.com/nodejs/import-in-the-middle) ([v1.11.0](https://github.com/nodejs/import-in-the-middle/tree/v1.11.0)), distributed under the [Apache-2.0 License](https://github.com/nodejs/import-in-the-middle/blob/v1.11.0/LICENSE):
649+
This product includes source derived from [import-in-the-middle](https://github.com/nodejs/import-in-the-middle) ([v1.11.1](https://github.com/nodejs/import-in-the-middle/tree/v1.11.1)), distributed under the [Apache-2.0 License](https://github.com/nodejs/import-in-the-middle/blob/v1.11.1/LICENSE):
650650

651651
```
652652
Apache License
@@ -1076,7 +1076,7 @@ SOFTWARE.
10761076

10771077
### @aws-sdk/client-s3
10781078

1079-
This product includes source derived from [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3) ([v3.654.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.654.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.654.0/LICENSE):
1079+
This product includes source derived from [@aws-sdk/client-s3](https://github.com/aws/aws-sdk-js-v3) ([v3.658.1](https://github.com/aws/aws-sdk-js-v3/tree/v3.658.1)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.658.1/LICENSE):
10801080

10811081
```
10821082
Apache License
@@ -1285,7 +1285,7 @@ This product includes source derived from [@aws-sdk/client-s3](https://github.co
12851285

12861286
### @aws-sdk/s3-request-presigner
12871287

1288-
This product includes source derived from [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3) ([v3.654.0](https://github.com/aws/aws-sdk-js-v3/tree/v3.654.0)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.654.0/LICENSE):
1288+
This product includes source derived from [@aws-sdk/s3-request-presigner](https://github.com/aws/aws-sdk-js-v3) ([v3.658.1](https://github.com/aws/aws-sdk-js-v3/tree/v3.658.1)), distributed under the [Apache-2.0 License](https://github.com/aws/aws-sdk-js-v3/blob/v3.658.1/LICENSE):
12891289

12901290
```
12911291
Apache License

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@
201201
"@tyriar/fibonacci-heap": "^2.0.7",
202202
"concat-stream": "^2.0.0",
203203
"https-proxy-agent": "^7.0.1",
204-
"import-in-the-middle": "^1.6.0",
204+
"import-in-the-middle": "1.11.0",
205205
"json-bigint": "^1.0.0",
206206
"json-stringify-safe": "^5.0.0",
207207
"module-details-from-path": "^1.0.3",

test/versioned/pg-esm/package.json

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,21 +10,7 @@
1010
"node": ">=18"
1111
},
1212
"dependencies": {
13-
"pg": ">=8.2.0 <8.8.0",
14-
"pg-native": ">=2.0.0"
15-
},
16-
"files": [
17-
"force-native.tap.mjs",
18-
"native.tap.mjs",
19-
"pg.tap.mjs"
20-
]
21-
},
22-
{
23-
"engines": {
24-
"node": ">=18"
25-
},
26-
"dependencies": {
27-
"pg": ">=8.8.0",
13+
"pg": ">=8.2.0",
2814
"pg-native": ">=3.0.0"
2915
},
3016
"files": [

third_party_manifest.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"lastUpdated": "Fri Sep 20 2024 16:37:31 GMT+0530 (India Standard Time)",
2+
"lastUpdated": "Fri Sep 27 2024 11:07:28 GMT-0400 (Eastern Daylight Time)",
33
"projectName": "New Relic Node Agent",
44
"projectUrl": "https://github.com/newrelic/node-newrelic",
55
"includeOptDeps": true,
@@ -120,15 +120,15 @@
120120
"email": "nathan@tootallnate.net",
121121
"url": "http://n8.io/"
122122
},
123-
"import-in-the-middle@1.11.0": {
123+
"import-in-the-middle@1.11.1": {
124124
"name": "import-in-the-middle",
125-
"version": "1.11.0",
126-
"range": "^1.6.0",
125+
"version": "1.11.1",
126+
"range": "1.11.0",
127127
"licenses": "Apache-2.0",
128128
"repoUrl": "https://github.com/nodejs/import-in-the-middle",
129-
"versionedRepoUrl": "https://github.com/nodejs/import-in-the-middle/tree/v1.11.0",
129+
"versionedRepoUrl": "https://github.com/nodejs/import-in-the-middle/tree/v1.11.1",
130130
"licenseFile": "node_modules/import-in-the-middle/LICENSE",
131-
"licenseUrl": "https://github.com/nodejs/import-in-the-middle/blob/v1.11.0/LICENSE",
131+
"licenseUrl": "https://github.com/nodejs/import-in-the-middle/blob/v1.11.1/LICENSE",
132132
"licenseTextSource": "file",
133133
"publisher": "Bryan English",
134134
"email": "bryan.english@datadoghq.com"
@@ -226,28 +226,28 @@
226226
}
227227
},
228228
"devDependencies": {
229-
"@aws-sdk/client-s3@3.654.0": {
229+
"@aws-sdk/client-s3@3.658.1": {
230230
"name": "@aws-sdk/client-s3",
231-
"version": "3.654.0",
231+
"version": "3.658.1",
232232
"range": "^3.556.0",
233233
"licenses": "Apache-2.0",
234234
"repoUrl": "https://github.com/aws/aws-sdk-js-v3",
235-
"versionedRepoUrl": "https://github.com/aws/aws-sdk-js-v3/tree/v3.654.0",
235+
"versionedRepoUrl": "https://github.com/aws/aws-sdk-js-v3/tree/v3.658.1",
236236
"licenseFile": "node_modules/@aws-sdk/client-s3/LICENSE",
237-
"licenseUrl": "https://github.com/aws/aws-sdk-js-v3/blob/v3.654.0/LICENSE",
237+
"licenseUrl": "https://github.com/aws/aws-sdk-js-v3/blob/v3.658.1/LICENSE",
238238
"licenseTextSource": "file",
239239
"publisher": "AWS SDK for JavaScript Team",
240240
"url": "https://aws.amazon.com/javascript/"
241241
},
242-
"@aws-sdk/s3-request-presigner@3.654.0": {
242+
"@aws-sdk/s3-request-presigner@3.658.1": {
243243
"name": "@aws-sdk/s3-request-presigner",
244-
"version": "3.654.0",
244+
"version": "3.658.1",
245245
"range": "^3.556.0",
246246
"licenses": "Apache-2.0",
247247
"repoUrl": "https://github.com/aws/aws-sdk-js-v3",
248-
"versionedRepoUrl": "https://github.com/aws/aws-sdk-js-v3/tree/v3.654.0",
248+
"versionedRepoUrl": "https://github.com/aws/aws-sdk-js-v3/tree/v3.658.1",
249249
"licenseFile": "node_modules/@aws-sdk/s3-request-presigner/LICENSE",
250-
"licenseUrl": "https://github.com/aws/aws-sdk-js-v3/blob/v3.654.0/LICENSE",
250+
"licenseUrl": "https://github.com/aws/aws-sdk-js-v3/blob/v3.658.1/LICENSE",
251251
"licenseTextSource": "file",
252252
"publisher": "AWS SDK for JavaScript Team",
253253
"url": "https://aws.amazon.com/javascript/"

0 commit comments

Comments
 (0)