Skip to content

Commit

Permalink
release v1.8.8 (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Lenz committed Mar 11, 2024
1 parent 3f3599a commit 42e9846
Show file tree
Hide file tree
Showing 6 changed files with 163 additions and 221 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.8.8] - 2024-03-11
### Changed
- Upgraded synthetics canary runtime to v6.2
- Upgraded CDK to v2.130
- Upgraded solutions-constructs to v2.54

## [1.8.7] - 2024-01-30
### Fixed

Expand Down
Expand Up @@ -337,7 +337,7 @@ export class CanaryStack extends Stack {
" const response = await page.goto(URL, {waitUntil: 'domcontentloaded', timeout: 30000});",
' //Wait for page to render.',
' //Increase or decrease wait time based on endpoint being monitored.',
' await page.waitFor(' + paramResponseThresh.valueAsString + ');',
' await page.waitForTimeout(' + paramResponseThresh.valueAsString + ');',
' // This will take a screenshot that will be included in test output artifacts',
" await synthetics.takeScreenshot('loaded', 'loaded');",
' let pageTitle = await page.title();',
Expand Down Expand Up @@ -372,7 +372,7 @@ export class CanaryStack extends Stack {
bucket: artifactBucket,
prefix: Aws.STACK_NAME
},
runtime: Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_0
runtime: Runtime.SYNTHETICS_NODEJS_PUPPETEER_6_2
});

const canaryServiceRoleResource = canary.node.findChild('ServiceRole').node.findChild('Resource') as CfnRole;
Expand Down

0 comments on commit 42e9846

Please sign in to comment.