consent-management-platform icon indicating copy to clipboard operation
consent-management-platform copied to clipboard

chore(deps-dev): bump @guardian/cdk from 58.1.4 to 59.2.3 in /cdk

Open dependabot[bot] opened this issue 6 months ago • 2 comments

Bumps @guardian/cdk from 58.1.4 to 59.2.3.

Release notes

Sourced from @​guardian/cdk's releases.

v59.2.3

Patch Changes

  • 3b90072: Update codemaker from 1.101.0 to 1.102.0
  • 82016de: Update aws-sdk from 2.1665.0 to 2.1670.0

v59.2.2

Patch Changes

  • c7426d3: Only set an SSL policy on HTTPS application listeners
  • 754c919: Update aws-sdk from 2.1664.0 to 2.1665.0

v59.2.1

Patch Changes

  • 7ed3595: Update aws-sdk from 2.1649.0 to 2.1664.0.
  • 006e3a4: Update git-url-parse from 14.0.0 to 14.1.0.

v59.2.0

Minor Changes

  • 8700b29: feat(asg): Allow setting the defaultInstanceWarmup option on auto scaling groups provisioned by our EC2 pattern

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"`);
    

... (truncated)

Changelog

Sourced from @​guardian/cdk's changelog.

59.2.3

Patch Changes

  • 3b90072: Update codemaker from 1.101.0 to 1.102.0
  • 82016de: Update aws-sdk from 2.1665.0 to 2.1670.0

59.2.2

Patch Changes

  • c7426d3: Only set an SSL policy on HTTPS application listeners
  • 754c919: Update aws-sdk from 2.1664.0 to 2.1665.0

59.2.1

Patch Changes

  • 7ed3595: Update aws-sdk from 2.1649.0 to 2.1664.0.
  • 006e3a4: Update git-url-parse from 14.0.0 to 14.1.0.

59.2.0

Minor Changes

  • 8700b29: feat(asg): Allow setting the defaultInstanceWarmup option on auto scaling groups provisioned by our EC2 pattern

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"`,
      ...
    })
    

... (truncated)

Commits
  • f703180 Merge pull request #2409 from guardian/changeset-release/main
  • d8ddacc Bump package version
  • 1af8b4e Merge pull request #2408 from guardian/dependabot/npm_and_yarn/aws-sdk-2.1670.0
  • 82016de chore(deps): bump aws-sdk from 2.1665.0 to 2.1670.0
  • fd63fb0 Merge pull request #2404 from guardian/dependabot/npm_and_yarn/codemaker-1.102.0
  • 3b90072 chore(deps): bump codemaker from 1.101.0 to 1.102.0
  • c636f90 chore(deps): bump @​types/yargs from 17.0.32 to 17.0.33
  • cc94d22 chore(deps): bump @​types/node from 22.0.2 to 22.1.0
  • a42dd91 Merge pull request #2400 from guardian/changeset-release/main
  • 9d0770d Bump package version
  • 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)

dependabot[bot] avatar Aug 14 '24 12:08 dependabot[bot]