Skip to content

Commit 10d722c

Browse files
authored
Merge pull request #88 from Bit-Quill/upgradeVersions
Versioning changes: -upgraded axios and babel versions to fix security warnings -fixed ApolloServer package-lock.json which was incorrectly identified as a test module -upgraded version to 1.2.0-beta.2 to prep for release. Verification: -tested utility deployment and basic querying of app sync API with HTTP option (axios is used for http requests) -tested utility creation of apollo server package and local deployment and basic querying of the apollo API (also uses axios for http requests) -executed jest unit and integration tests (babel is transitive dependency from jest)
2 parents 2124651 + 8f83c6e commit 10d722c

File tree

10 files changed

+84
-736
lines changed

10 files changed

+84
-736
lines changed

package-lock.json

Lines changed: 41 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aws/neptune-for-graphql",
3-
"version": "1.2.0-beta.1",
3+
"version": "1.2.0-beta.2",
44
"description": "CLI utility to create and maintain a GraphQL API for Amazon Neptune",
55
"keywords": [
66
"Amazon Neptune",
@@ -19,7 +19,7 @@
1919
"test": "test"
2020
},
2121
"scripts": {
22-
"postinstall": "cd templates/Lambda4AppSyncHTTP && npm install && cd ../Lambda4AppSyncSDK && npm install && cd ../Lambda4AppSyncGraphSDK && npm install",
22+
"postinstall": "cd templates/Lambda4AppSyncHTTP && npm install && cd ../Lambda4AppSyncSDK && npm install && cd ../Lambda4AppSyncGraphSDK && npm install && cd ../ApolloServer && npm install",
2323
"lint": "eslint neptune-for-graphql.mjs ./src",
2424
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --detectOpenHandles --config .jest.js",
2525
"test:sdk": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --runInBand --detectOpenHandles --config .jest.js --testPathPattern=test/TestCases/Case07",
@@ -59,18 +59,18 @@
5959
"@aws-sdk/client-iam": "3.387.0",
6060
"@aws-sdk/client-lambda": "3.387.0",
6161
"@aws-sdk/client-neptune": "3.387.0",
62-
"@aws-sdk/client-neptunedata": "3.403.0",
6362
"@aws-sdk/client-neptune-graph": "3.662.0",
63+
"@aws-sdk/client-neptunedata": "3.403.0",
6464
"@aws-sdk/credential-providers": "3.414.0",
6565
"archiver": "7.0.1",
6666
"aws4-axios": "3.3.0",
67-
"axios": "1.7.9",
67+
"axios": "^1.9.0",
6868
"graphql": "^16.8.1",
6969
"graphql-tag": "2.12.6",
7070
"ora": "7.0.1",
71-
"semver": "7.5.4",
7271
"pino": "9.4.0",
73-
"pino-pretty": "11.2.2"
72+
"pino-pretty": "11.2.2",
73+
"semver": "7.5.4"
7474
},
7575
"devDependencies": {
7676
"@jest/test-sequencer": "^29.7.0",

0 commit comments

Comments
 (0)