Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: disable waiter state machine logging that results in deploy error #2196

Closed
wants to merge 14 commits into from
Closed
2,389 changes: 910 additions & 1,479 deletions dependency_licenses.txt

Large diffs are not rendered by default.

13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@
"@commitlint/prompt": "^16.2.3",
"@microsoft/api-extractor": "^7.33.5",
"@types/glob": "^7.1.1",
"@types/jest": "^26.0.20",
"@types/jest": "^27.5.1",
"@types/js-yaml": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
Expand All @@ -211,16 +211,16 @@
"execa": "^5.1.1",
"glob": "^10.3.0",
"husky": "^3.0.3",
"jest": "^26.6.2",
"jest-circus": "^26.6.2",
"jest": "^27.5.1",
"jest-circus": "^27.5.1",
"jest-junit": "^12.0.0",
"js-yaml": "^4.0.0",
"lint-staged": "^13.2.2",
"lnk": "1.1.0",
"pkg": "^5.4.1",
"prettier": "^2.8.8",
"rimraf": "^3.0.0",
"ts-jest": "^26.4.4",
"ts-jest": "^27.1.4",
"ts-node": "^8.10.1",
"typescript": "^4.5.5",
"@yarnpkg/lockfile": "^1.1.0"
Expand All @@ -242,9 +242,6 @@
"json5": "^2.2.3",
"fast-xml-parser": "^4.2.4",
"semver": "^7.5.2",
"jest": "26.6.2",
"jest-environment-jsdom": "26.6.2",
"jest-environment-node": "26.6.2",
"ts-jest": "^26.5.5"
"aws-cdk-lib": "^2.121.1"
}
}
9 changes: 4 additions & 5 deletions packages/amplify-category-api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"@aws-amplify/graphql-transformer-core": "2.4.2",
"@aws-amplify/graphql-transformer-interfaces": "3.3.3",
"@aws-amplify/graphql-transformer-migrator": "2.2.15",
"@aws-cdk/aws-apigatewayv2-alpha": "~2.80.0-alpha.0",
"@aws-cdk/aws-apigatewayv2-alpha": "2.114.1-alpha.0 ",
"@aws-sdk/client-ec2": "3.338.0",
"@aws-sdk/client-iam": "3.338.0",
"@aws-sdk/client-lambda": "3.338.0",
Expand Down Expand Up @@ -75,15 +75,14 @@
"@aws-amplify/amplify-provider-awscloudformation": "^8.8.0",
"amplify-headless-interface": "^1.17.4",
"amplify-util-headless-input": "^1.9.15",
"aws-cdk-lib": "^2.80.0",
"aws-cdk-lib": "^2.121.1",
"constructs": "^10.0.5"
},
"devDependencies": {
"@aws-amplify/graphql-transformer-test-utils": "0.4.2",
"@types/js-yaml": "^4.0.0",
"@types/node": "^12.12.6",
"amplify-util-headless-input": "^1.9.15",
"ts-jest": "26.4.4"
"amplify-util-headless-input": "^1.9.15"
},
"jest": {
"testURL": "http://localhost",
Expand All @@ -103,7 +102,7 @@
"coverageProvider": "v8",
"coverageThreshold": {
"global": {
"branches": 70,
"branches": 68,
"functions": 45,
"lines": 50
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { $TSContext } from '@aws-amplify/amplify-cli-core';
import { isDataStoreEnabled as isDataStoreEnabledAtDirectory } from 'graphql-transformer-core';
import { mocked } from 'ts-jest';
import { mocked } from 'ts-jest/utils';
import { isDataStoreEnabled } from '../../category-utils/is-datastore-enabled';
import { contextUtil } from '../../category-utils/context-util';

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ Object {
"ap-southeast-3": Object {
"states": "states.ap-southeast-3.amazonaws.com",
},
"ap-southeast-4": Object {
"states": "states.ap-southeast-4.amazonaws.com",
},
"ca-central-1": Object {
"states": "states.ca-central-1.amazonaws.com",
},
Expand Down Expand Up @@ -99,6 +102,9 @@ Object {
"eu-west-3": Object {
"states": "states.eu-west-3.amazonaws.com",
},
"il-central-1": Object {
"states": "states.il-central-1.amazonaws.com",
},
"me-central-1": Object {
"states": "states.me-central-1.amazonaws.com",
},
Expand Down Expand Up @@ -1567,7 +1573,7 @@ exports.handler = async function({ RequestType, ResourceProperties, StackId }) {
"Arn",
],
},
"Runtime": "nodejs16.x",
"Runtime": "nodejs18.x",
"Timeout": 900,
},
"Type": "AWS::Lambda::Function",
Expand Down Expand Up @@ -1712,7 +1718,7 @@ exports.handler = async function({ RequestType, ResourceProperties, StackId }) {
"Arn",
],
},
"Runtime": "nodejs16.x",
"Runtime": "nodejs18.x",
"Timeout": 900,
},
"Type": "AWS::Lambda::Function",
Expand Down Expand Up @@ -1861,7 +1867,7 @@ exports.handler = async function({ RequestType, ResourceProperties, StackId }) {
"Arn",
],
},
"Runtime": "nodejs16.x",
"Runtime": "nodejs18.x",
"Timeout": 900,
},
"Type": "AWS::Lambda::Function",
Expand Down
Loading