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

chore(release): 1.106.0 #14865

Merged
merged 42 commits into from
May 25, 2021
Merged
Changes from 1 commit
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
6b4d709
Allow taskRole to be passed in on creation of an ECS service
brentryan Mar 29, 2021
3e257a0
feat: allow taskRole to be passed in on creation of an ECS service
brentryan Mar 29, 2021
299af9b
Merge branch 'master' into 13304-taskRole
SoManyHs Apr 29, 2021
b68528a
Merge branch 'master' into 13304-taskRole
SoManyHs May 4, 2021
58eb62c
Merge branch 'master' into 13304-taskRole
brentryan May 12, 2021
1ca295d
Merge branch 'master' into 13304-taskRole
brentryan May 12, 2021
e801adc
Merge branch 'master' into 13304-taskRole
brentryan May 12, 2021
cd814f5
Merge branch 'master' into 13304-taskRole
brentryan May 13, 2021
281a06c
Merge branch 'master' into 13304-taskRole
brentryan May 14, 2021
5c84696
fix(lambda-nodejs): esbuild detection with Yarn 2 in PnP mode (#14739)
jogold May 19, 2021
7013f58
chore: permissions for github actions (#14767)
May 19, 2021
b816ef9
chore: switch back to privileged token in upgrade github action (#14775)
May 19, 2021
2567670
Merge branch 'master' into merge-back/1.105.0
May 19, 2021
f50f230
chore(merge-back): 1.105.0 (#14770)
May 19, 2021
3c7a89d
feat(dynamodb): add ability to enable contributor insights on Table (…
sudo-ryan May 19, 2021
6179ac1
chore: npm-check-updates && yarn upgrade (#14776)
aws-cdk-automation May 19, 2021
e478bf5
chore: add go v2 init template (#14785)
MrArnoldPalmer May 20, 2021
b02311c
feat(lambda-nodejs): pnpm support (#14772)
jogold May 20, 2021
f7a397c
chore(cfnspec): update cfn-lint repo name (#14789)
May 20, 2021
3a9f56d
feat(cfnspec): cloudformation spec v36.0.0 (#14791)
aws-cdk-automation May 20, 2021
f36feb5
fix(iam): permissions boundaries not added to custom resource roles (…
BenChaimberg May 20, 2021
cd2589f
fix(cognito): user pool - phoneNumberVerified attribute fails deploym…
May 20, 2021
b78a1bb
feat(lambda): support Principal conditions in Permission (#14674)
BenChaimberg May 20, 2021
2a31335
chore: move ownership from Romain to Adam (#14797)
ericzbeard May 20, 2021
f4a2938
feat(appmesh): add IAM grants for StreamAggregatedResources (#13596)
alexbrjo May 20, 2021
37e9031
chore(docs): added troubleshooting entry for Docker error in the synt…
otaviomacedo May 21, 2021
eff9c75
fix(pipelines): self-update build fails with named pipeline stack (#1…
otaviomacedo May 21, 2021
fc91fa8
chore(cdk): increase timeout for all bootstrapping integ tests (#14819)
May 21, 2021
457f737
chore: add missing `@types/aws-lambda` dependency (#14796)
rix0rrr May 21, 2021
a652fa8
docs(cognito): correct App Clients section (#14717)
matias-salgado May 21, 2021
f47d5cb
fix(lambda): changing reserved concurrency fails lambda version deplo…
May 21, 2021
32ebe79
chore(dynamodb): validate that a Stack does not contain more than 10 …
jogold May 21, 2021
5f65df8
Merge branch 'master' into 13304-taskRole
nathanpeck May 21, 2021
4c8e938
Merge pull request #13834 from brentryan/13304-taskRole
nathanpeck May 21, 2021
27092c1
chore: remove prlinter module and merge it with prlint (#14825)
May 23, 2021
53ee025
docs(aws-stepfunctions-tasks): Update TaskEnvironmentVariable doc to …
jasdel May 24, 2021
c7f9f97
bump lambda-layer-kubectl (#14678)
kimxogus May 24, 2021
4439763
docs(apigatewayv2): fix incorrect response type enum (#14840)
Albert-Gao May 24, 2021
b9189df
chore: add go to list of supported languages (#14849)
MrArnoldPalmer May 24, 2021
8b293b0
chore(prlint): switch to typescript (#14848)
May 24, 2021
bcc352e
chore(release): 1.106.0
May 25, 2021
b517d64
Add `ecs-service-extensions` module name to a feature entry
skinny85 May 25, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
chore(cdk): increase timeout for all bootstrapping integ tests (#14819)
In a previous commit - 8395d9d - the timeout for a single test was
increased to 1 hour since it was noticed to fail consistently.

Since then, other tests have also failed intermittently due to
CloudFormation actions taking longer than expected in some regions.

Increase the timeout for all tests to 1 hour when executing in
CodeBuild. To keep the dev-test cycle reasonable, maintain a 10 minute
timeout when developing outside of CodeBuild.
  • Loading branch information
Niranjan Jayakar authored May 21, 2021
commit fc91fa84b6baf1d0a4d6e94e754b356e2274f4eb
9 changes: 6 additions & 3 deletions packages/aws-cdk/test/integ/cli/bootstrapping.integtest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ import * as path from 'path';
import { randomString, withDefaultFixture } from '../helpers/cdk';
import { integTest } from '../helpers/test-helpers';

jest.setTimeout(600_000);
const timeout = process.env.CODEBUILD_BUILD_ID ? // if the process is running in CodeBuild
3_600_000 : // 1 hour
600_000; // 10 minutes
jest.setTimeout(timeout);
process.stdout.write(`bootstrapping.integtest.ts: Setting jest time out to ${timeout} ms`);

integTest('can bootstrap without execution', withDefaultFixture(async (fixture) => {
const bootstrapStackName = fixture.bootstrapStackName;
Expand Down Expand Up @@ -54,8 +58,7 @@ integTest('upgrade legacy bootstrap stack to new bootstrap stack while in use',
'--force',
],
});
}), 3_600_000, // Observed in eu-west-2 that CF update takes over 10 minutes for this test.
);
}));

integTest('can and deploy if omitting execution policies', withDefaultFixture(async (fixture) => {
const bootstrapStackName = fixture.bootstrapStackName;
Expand Down