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

Bump @guardian/cdk from 50.13.0 to 59.1.0 #11967

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 23, 2024

Bumps @guardian/cdk from 50.13.0 to 59.1.0.

Release notes

Sourced from @​guardian/cdk's releases.

v59.1.0

Minor Changes

  • 0a0bce1: : feat(asg): Allow setting the detailedMonitoring option on launch templates provisioned by our EC2 patterns

v59.0.0

Major Changes

  • e15d900: GuCDK EC2 patterns now require an explicit UserData or GuUserDataProps input, instead of a string.

    The UserData class comes with helpers that allow us to mutate the user data in our patterns which will be helpful with some of our upcoming work. Unfortunately whenever a string is passed to our patterns we have to wrap it in a special CustomUserData class which disables most of these helpers.

    For applications that were already using GuUserDataProps no change is required, however applications that used strings will have to make a small change.

    new GuEc2App({
      userData: `#!/usr/bin/bash echo "hello world"`,
      ...
    })

    becomes

    const userData = UserData.forLinux();
    userData.addCommands(`echo "hello world"`);
    new GuEc2App({
    userData,
    ...
    })

    Note that you no longer need to specify a shebang, by default UserData adds one for you. If you need to customize this behaviour you can look at the props accepted by forLinux. You may also want to look at some of the other methods that UserData has to understand if it may be able to help you in other ways, for example addS3DownloadCommand the method helps you write commands to download from S3.

v58.2.0

Minor Changes

  • 59ffa9d: feat(asg): Allow setting the UpdatePolicy on ASGs provisioned by our EC2 patterns
  • 689b59a: Bump @​guardian/tsconfig to 1.0.0 and specifically set moduleResolution to "node"

v58.1.4

Patch Changes

  • c015419: Update aws-cdk to 2.148.0, aws-cdk-lib to 2.148.0, constructs to 10.3.0
  • 7051a7c: fix(ec2-app): Use clientSecretValue prop over deprecated clientSecret
  • 9cfabc6: fix(lambda): Use loggingFormat prop over deprecated logFormat

... (truncated)

Changelog

Sourced from @​guardian/cdk's changelog.

59.1.0

Minor Changes

  • 0a0bce1: : feat(asg): Allow setting the detailedMonitoring option on launch templates provisioned by our EC2 patterns

59.0.0

Major Changes

  • e15d900: GuCDK EC2 patterns now require an explicit UserData or GuUserDataProps input, instead of a string.

    The UserData class comes with helpers that allow us to mutate the user data in our patterns which will be helpful with some of our upcoming work. Unfortunately whenever a string is passed to our patterns we have to wrap it in a special CustomUserData class which disables most of these helpers.

    For applications that were already using GuUserDataProps no change is required, however applications that used strings will have to make a small change.

    new GuEc2App({
      userData: `#!/usr/bin/bash echo "hello world"`,
      ...
    })

    becomes

    const userData = UserData.forLinux();
    userData.addCommands(`echo "hello world"`);
    new GuEc2App({
    userData,
    ...
    })

    Note that you no longer need to specify a shebang, by default UserData adds one for you. If you need to customize this behaviour you can look at the props accepted by forLinux. You may also want to look at some of the other methods that UserData has to understand if it may be able to help you in other ways, for example addS3DownloadCommand the method helps you write commands to download from S3.

58.2.0

Minor Changes

  • 59ffa9d: feat(asg): Allow setting the UpdatePolicy on ASGs provisioned by our EC2 patterns
  • 689b59a: Bump @​guardian/tsconfig to 1.0.0 and specifically set moduleResolution to "node"

58.1.4

Patch Changes

... (truncated)

Commits
  • e02d8d8 Merge pull request #2383 from guardian/changeset-release/main
  • e978e6b Bump package version
  • 1e103da Merge pull request #2382 from guardian/add-detailed-monitoring-optiont-to-gue...
  • 0a0bce1 Adds changeset for detailedMonitoring option
  • 296dc12 Add launch template detailed monitoring unit test
  • ff41eec Adds enabledDetailedInstanceMonitoring option to GuEc2AppProps
  • 3ec1c6e Merge pull request #2380 from guardian/changeset-release/main
  • 89f1714 Bump package version
  • 234bca7 Merge pull request #2378 from guardian/ash/explicit-user-data
  • cf58c7b feat(asg): Require explicit UserData instead of string in GuAutoScalingGr...
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [@guardian/cdk](https://github.com/guardian/cdk) from 50.13.0 to 59.1.0.
- [Release notes](https://github.com/guardian/cdk/releases)
- [Changelog](https://github.com/guardian/cdk/blob/main/CHANGELOG.md)
- [Commits](guardian/cdk@v50.13.0...v59.1.0)

---
updated-dependencies:
- dependency-name: "@guardian/cdk"
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested review from a team as code owners July 23, 2024 19:07
@dependabot dependabot bot added AR Dependency Dependency for AR project javascript Pull requests that update Javascript code labels Jul 23, 2024
Copy link

Hello 👋! When you're ready to run Chromatic, please apply the run_chromatic label to this PR.

You will need to reapply the label each time you want to run Chromatic.

Click here to see the Chromatic project.

Copy link

Size Change: 0 B

Total Size: 893 kB

ℹ️ View Unchanged
Filename Size
dotcom-rendering/dist/1000.client.web.********************.js 999 B
dotcom-rendering/dist/1026.client.web.********************.js 784 B
dotcom-rendering/dist/1027.client.web.********************.js 4.68 kB
dotcom-rendering/dist/1090.client.web.********************.js 752 B
dotcom-rendering/dist/1207.client.web.********************.js 22.6 kB
dotcom-rendering/dist/1391.client.web.********************.js 725 B
dotcom-rendering/dist/143.client.web.********************.js 157 B
dotcom-rendering/dist/1476.client.web.********************.js 784 B
dotcom-rendering/dist/1656.client.web.********************.js 527 B
dotcom-rendering/dist/1667.client.web.********************.js 918 B
dotcom-rendering/dist/1765.client.web.********************.js 617 B
dotcom-rendering/dist/1940.client.web.********************.js 507 B
dotcom-rendering/dist/2037.client.web.********************.js 2.67 kB
dotcom-rendering/dist/2247.client.web.********************.js 2.52 kB
dotcom-rendering/dist/2283.client.web.********************.js 3.47 kB
dotcom-rendering/dist/2309.client.web.********************.js 43.1 kB
dotcom-rendering/dist/2310.client.web.********************.js 880 B
dotcom-rendering/dist/2510.client.web.********************.js 3.21 kB
dotcom-rendering/dist/2584.client.web.********************.js 6.42 kB
dotcom-rendering/dist/267.client.web.********************.js 917 B
dotcom-rendering/dist/281.client.web.********************.js 642 B
dotcom-rendering/dist/2920.client.web.********************.js 3.67 kB
dotcom-rendering/dist/2935.client.web.********************.js 6.69 kB
dotcom-rendering/dist/3109.client.web.********************.js 803 B
dotcom-rendering/dist/3270.client.web.********************.js 961 B
dotcom-rendering/dist/3304.client.web.********************.js 853 B
dotcom-rendering/dist/3441.client.web.********************.js 4.3 kB
dotcom-rendering/dist/3630.client.web.********************.js 2.81 kB
dotcom-rendering/dist/3683.client.web.********************.js 4.61 kB
dotcom-rendering/dist/3726.client.web.********************.js 9.57 kB
dotcom-rendering/dist/3733.client.web.********************.js 3.54 kB
dotcom-rendering/dist/3769.client.web.********************.js 999 B
dotcom-rendering/dist/385.client.web.********************.js 4.5 kB
dotcom-rendering/dist/3921.client.web.********************.js 3.03 kB
dotcom-rendering/dist/4181.client.web.********************.js 3.83 kB
dotcom-rendering/dist/4195.client.web.********************.js 6.41 kB
dotcom-rendering/dist/4282.client.web.********************.js 685 B
dotcom-rendering/dist/4283.client.web.********************.js 3.41 kB
dotcom-rendering/dist/4305.client.web.********************.js 4.07 kB
dotcom-rendering/dist/4465.client.web.********************.js 3 kB
dotcom-rendering/dist/4628.client.web.********************.js 654 B
dotcom-rendering/dist/4662.client.web.********************.js 3.11 kB
dotcom-rendering/dist/4743.client.web.********************.js 3.99 kB
dotcom-rendering/dist/4772.client.web.********************.js 1.84 kB
dotcom-rendering/dist/4941.client.web.********************.js 890 B
dotcom-rendering/dist/5158.client.web.********************.js 3.42 kB
dotcom-rendering/dist/5308.client.web.********************.js 2.69 kB
dotcom-rendering/dist/5558.client.web.********************.js 3.4 kB
dotcom-rendering/dist/5658.client.web.********************.js 750 B
dotcom-rendering/dist/5757.client.web.********************.js 931 B
dotcom-rendering/dist/5880.client.web.********************.js 828 B
dotcom-rendering/dist/5925.client.web.********************.js 11.3 kB
dotcom-rendering/dist/6044.client.web.********************.js 726 B
dotcom-rendering/dist/6071.client.web.********************.js 577 B
dotcom-rendering/dist/6135.client.web.********************.js 779 B
dotcom-rendering/dist/647.client.web.********************.js 6.52 kB
dotcom-rendering/dist/6505.client.web.********************.js 1 kB
dotcom-rendering/dist/6598.client.web.********************.js 780 B
dotcom-rendering/dist/6605.client.web.********************.js 4.16 kB
dotcom-rendering/dist/6638.client.web.********************.js 907 B
dotcom-rendering/dist/6687.client.web.********************.js 7.29 kB
dotcom-rendering/dist/678.client.web.********************.js 804 B
dotcom-rendering/dist/6838.client.web.********************.js 3.09 kB
dotcom-rendering/dist/7069.client.web.********************.js 2.93 kB
dotcom-rendering/dist/7116.client.web.********************.js 23 kB
dotcom-rendering/dist/7280.client.web.********************.js 4.21 kB
dotcom-rendering/dist/7291.client.web.********************.js 4.89 kB
dotcom-rendering/dist/7413.client.web.********************.js 2.23 kB
dotcom-rendering/dist/7447.client.web.********************.js 3.07 kB
dotcom-rendering/dist/7678.client.web.********************.js 3.2 kB
dotcom-rendering/dist/7691.client.web.********************.js 853 B
dotcom-rendering/dist/7891.client.web.********************.js 4.39 kB
dotcom-rendering/dist/80.client.web.********************.js 2.29 kB
dotcom-rendering/dist/8169.client.web.********************.js 441 B
dotcom-rendering/dist/83.client.web.********************.js 750 B
dotcom-rendering/dist/8325.client.web.********************.js 5.85 kB
dotcom-rendering/dist/8356.client.web.********************.js 13.5 kB
dotcom-rendering/dist/8504.client.web.********************.js 827 B
dotcom-rendering/dist/8524.client.web.********************.js 525 B
dotcom-rendering/dist/8536.client.web.********************.js 595 B
dotcom-rendering/dist/854.client.web.********************.js 3.34 kB
dotcom-rendering/dist/8566.client.web.********************.js 12.4 kB
dotcom-rendering/dist/8626.client.web.********************.js 890 B
dotcom-rendering/dist/8664.client.web.********************.js 3.22 kB
dotcom-rendering/dist/8670.client.web.********************.js 4.3 kB
dotcom-rendering/dist/8695.client.web.********************.js 3.63 kB
dotcom-rendering/dist/8697.client.web.********************.js 956 B
dotcom-rendering/dist/8716.client.web.********************.js 19.7 kB
dotcom-rendering/dist/8768.client.web.********************.js 3.57 kB
dotcom-rendering/dist/8833.client.web.********************.js 829 B
dotcom-rendering/dist/8916.client.web.********************.js 2.93 kB
dotcom-rendering/dist/8966.client.web.********************.js 5.13 kB
dotcom-rendering/dist/8995.client.web.********************.js 2.42 kB
dotcom-rendering/dist/901.client.web.********************.js 9.19 kB
dotcom-rendering/dist/9184.client.web.********************.js 493 B
dotcom-rendering/dist/9285.client.web.********************.js 6.17 kB
dotcom-rendering/dist/931.client.web.********************.js 3.05 kB
dotcom-rendering/dist/9493.client.web.********************.js 785 B
dotcom-rendering/dist/953.client.web.********************.js 6.3 kB
dotcom-rendering/dist/9557.client.web.********************.js 921 B
dotcom-rendering/dist/9721.client.web.********************.js 717 B
dotcom-rendering/dist/974.client.web.********************.js 5.49 kB
dotcom-rendering/dist/9835.client.web.********************.js 647 B
dotcom-rendering/dist/9899.client.web.********************.js 669 B
dotcom-rendering/dist/Accessibility-importable.client.web.********************.js 6.18 kB
dotcom-rendering/dist/AdBlockAsk-importable.client.web.********************.js 2.85 kB
dotcom-rendering/dist/AdPortals-importable.client.web.********************.js 3.84 kB
dotcom-rendering/dist/AlreadyVisited-importable.client.web.********************.js 424 B
dotcom-rendering/dist/AppsEpic-importable.client.web.********************.js 3.54 kB
dotcom-rendering/dist/AppsFooter-importable.client.web.********************.js 3.63 kB
dotcom-rendering/dist/AppsLightboxImage-importable.client.web.********************.js 3.03 kB
dotcom-rendering/dist/AppsLightboxImageStore-importable.client.web.********************.js 2.47 kB
dotcom-rendering/dist/AudioAtomWrapper-importable.client.web.********************.js 3.57 kB
dotcom-rendering/dist/AustralianTerritorySwitcher-importable.client.web.********************.js 2.34 kB
dotcom-rendering/dist/Branding-importable.client.web.********************.js 3.07 kB
dotcom-rendering/dist/braze-web-sdk-core.client.web.********************.js 37.2 kB
dotcom-rendering/dist/BrazeMessaging-importable.client.web.********************.js 1.95 kB
dotcom-rendering/dist/CalloutBlockComponent-importable.client.web.********************.js 6.71 kB
dotcom-rendering/dist/CalloutEmbedBlockComponent-importable.client.web.********************.js 5.75 kB
dotcom-rendering/dist/CardCommentCount-importable.client.web.********************.js 4.94 kB
dotcom-rendering/dist/Carousel-importable.client.web.********************.js 5.99 kB
dotcom-rendering/dist/CarouselForNewsletters-importable.client.web.********************.js 6.85 kB
dotcom-rendering/dist/ChartAtom-importable.client.web.********************.js 537 B
dotcom-rendering/dist/CommentCount-importable.client.web.********************.js 3.3 kB
dotcom-rendering/dist/DiscussionApps-importable.client.web.********************.js 1.81 kB
dotcom-rendering/dist/DiscussionMeta-importable.client.web.********************.js 1.21 kB
dotcom-rendering/dist/DiscussionWeb-importable.client.web.********************.js 1.73 kB
dotcom-rendering/dist/DocumentBlockComponent-importable.client.web.********************.js 3.65 kB
dotcom-rendering/dist/EditionSwitcherBanner-importable.client.web.********************.js 6.49 kB
dotcom-rendering/dist/EmbedBlockComponent-importable.client.web.********************.js 3.75 kB
dotcom-rendering/dist/EnhancePinnedPost-importable.client.web.********************.js 2.02 kB
dotcom-rendering/dist/FetchOnwardsData-importable.client.web.********************.js 2.43 kB
dotcom-rendering/dist/FilterKeyEventsToggle-importable.client.web.********************.js 5.21 kB
dotcom-rendering/dist/FocusStyles-importable.client.web.********************.js 623 B
dotcom-rendering/dist/FollowWrapper-importable.client.web.********************.js 3.37 kB
dotcom-rendering/dist/FooterLabel-importable.client.web.********************.js 346 B
dotcom-rendering/dist/FooterReaderRevenueLinks-importable.client.web.********************.js 3.74 kB
dotcom-rendering/dist/frameworks.client.web.********************.js 20.7 kB
dotcom-rendering/dist/FrontSubNav-importable.client.web.********************.js 6.47 kB
dotcom-rendering/dist/GetCricketScoreboard-importable.client.web.********************.js 4.41 kB
dotcom-rendering/dist/GetMatchNav-importable.client.web.********************.js 10.4 kB
dotcom-rendering/dist/GetMatchStats-importable.client.web.********************.js 7.95 kB
dotcom-rendering/dist/GetMatchTabs-importable.client.web.********************.js 2.71 kB
dotcom-rendering/dist/guardian-braze-components-banner.client.web.********************.js 16.8 kB
dotcom-rendering/dist/guardian-braze-components-end-of-article.client.web.********************.js 11 kB
dotcom-rendering/dist/GuideAtomWrapper-importable.client.web.********************.js 3.01 kB
dotcom-rendering/dist/HeaderTopBar-importable.client.web.********************.js 7.65 kB
dotcom-rendering/dist/index.client.web.********************.js 45.9 kB
dotcom-rendering/dist/InstagramBlockComponent-importable.client.web.********************.js 3.29 kB
dotcom-rendering/dist/InteractiveAtomMessenger-importable.client.web.********************.js 852 B
dotcom-rendering/dist/InteractiveBlockComponent-importable.client.web.********************.js 6.3 kB
dotcom-rendering/dist/InteractiveContentsBlockComponent-importable.client.web.********************.js 4.68 kB
dotcom-rendering/dist/InteractiveSupportButton-importable.client.web.********************.js 6.75 kB
dotcom-rendering/dist/KeyEventsCarousel-importable.client.web.********************.js 4.74 kB
dotcom-rendering/dist/KnowledgeQuizAtom-importable.client.web.********************.js 3.49 kB
dotcom-rendering/dist/LatestLinks-importable.client.web.********************.js 3.63 kB
dotcom-rendering/dist/LightboxHash-importable.client.web.********************.js 435 B
dotcom-rendering/dist/LightboxLayout-importable.client.web.********************.js 6.47 kB
dotcom-rendering/dist/LiveBlogEpic-importable.client.web.********************.js 3.78 kB
dotcom-rendering/dist/Liveness-importable.client.web.********************.js 5 kB
dotcom-rendering/dist/ManyNewsletterSignUp-importable.client.web.********************.js 9.76 kB
dotcom-rendering/dist/MapEmbedBlockComponent-importable.client.web.********************.js 5.45 kB
dotcom-rendering/dist/Metrics-importable.client.web.********************.js 2.96 kB
dotcom-rendering/dist/MostViewedFooter-importable.client.web.********************.js 5.71 kB
dotcom-rendering/dist/MostViewedFooterData-importable.client.web.********************.js 8.33 kB
dotcom-rendering/dist/MostViewedRightWithAd-importable.client.web.********************.js 4.7 kB
dotcom-rendering/dist/OnwardsUpper-importable.client.web.********************.js 6.58 kB
dotcom-rendering/dist/PersonalityQuizAtom-importable.client.web.********************.js 3.63 kB
dotcom-rendering/dist/ProfileAtom-importable.client.web.********************.js 2.79 kB
dotcom-rendering/dist/ProfileAtomWrapper-importable.client.web.********************.js 3.03 kB
dotcom-rendering/dist/PulsingDot-importable.client.web.********************.js 748 B
dotcom-rendering/dist/QandaAtom-importable.client.web.********************.js 2.79 kB
dotcom-rendering/dist/ReaderRevenueDev-importable.client.web.********************.js 468 B
dotcom-rendering/dist/readerRevenueDevUtils.client.web.********************.js 1.97 kB
dotcom-rendering/dist/RelativeTime-importable.client.web.********************.js 2.51 kB
dotcom-rendering/dist/RichLinkComponent-importable.client.web.********************.js 5.22 kB
dotcom-rendering/dist/SecureSignup-importable.client.web.********************.js 5.11 kB
dotcom-rendering/dist/SendTargetingParams-importable.client.web.********************.js 2.15 kB
dotcom-rendering/dist/sentry.client.web.********************.js 768 B
dotcom-rendering/dist/SetABTests-importable.client.web.********************.js 3.73 kB
dotcom-rendering/dist/SetAdTargeting-importable.client.web.********************.js 486 B
dotcom-rendering/dist/ShareButton-importable.client.web.********************.js 1.52 kB
dotcom-rendering/dist/shimport.client.web.********************.js 2.8 kB
dotcom-rendering/dist/ShowHideContainers-importable.client.web.********************.js 642 B
dotcom-rendering/dist/ShowMore-importable.client.web.********************.js 1.4 kB
dotcom-rendering/dist/SignInGateMain.client.web.********************.js 3.99 kB
dotcom-rendering/dist/SignInGateMainCheckoutComplete.client.web.********************.js 3.92 kB
dotcom-rendering/dist/SignInGateSelector-importable.client.web.********************.js 3.15 kB
dotcom-rendering/dist/SlotBodyEnd-importable.client.web.********************.js 3.48 kB
dotcom-rendering/dist/SpotifyBlockComponent-importable.client.web.********************.js 5.29 kB
dotcom-rendering/dist/StickyBottomBanner-importable.client.web.********************.js 4.11 kB
dotcom-rendering/dist/StickyLiveblogAskWrapper-importable.client.web.********************.js 8 kB
dotcom-rendering/dist/SubNav-importable.client.web.********************.js 3.37 kB
dotcom-rendering/dist/SupportTheG-importable.client.web.********************.js 6.6 kB
dotcom-rendering/dist/TableOfContents-importable.client.web.********************.js 3.19 kB
dotcom-rendering/dist/TimelineAtom-importable.client.web.********************.js 3.22 kB
dotcom-rendering/dist/TopBar-importable.client.web.********************.js 5.32 kB
dotcom-rendering/dist/TopBarSupport-importable.client.web.********************.js 2.75 kB
dotcom-rendering/dist/TweetBlockComponent-importable.client.web.********************.js 1.02 kB
dotcom-rendering/dist/UnsafeEmbedBlockComponent-importable.client.web.********************.js 3.3 kB
dotcom-rendering/dist/VideoFacebookBlockComponent-importable.client.web.********************.js 5.46 kB
dotcom-rendering/dist/VineBlockComponent-importable.client.web.********************.js 3.13 kB
dotcom-rendering/dist/WeatherWrapper-importable.client.web.********************.js 6.72 kB
dotcom-rendering/dist/YoutubeBlockComponent-importable.client.web.********************.js 3.08 kB

compressed-size-action

Copy link
Contributor Author

dependabot bot commented on behalf of github Jul 24, 2024

Superseded by #11981.

@dependabot dependabot bot closed this Jul 24, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/guardian/cdk-59.1.0 branch July 24, 2024 18:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
apps-rendering AR Dependency Dependency for AR project dotcom-rendering javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants