guardian / cloudwatch-logs-management

A set of lambdas to manage Cloudwatch Logs and logs emitted from AWS Lambda
3 stars 1 forks source link

chore(deps): bump @guardian/cdk from 58.1.2 to 59.2.2 #341

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps @guardian/cdk from 58.1.2 to 59.2.2.

Release notes

Sourced from @​guardian/cdk's releases.

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

    new GuEc2App({
    userData,
    ...
    })

... (truncated)

Changelog

Sourced from @​guardian/cdk's changelog.

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

    becomes

    const userData = UserData.forLinux();
    userData.addCommands(`echo "hello world"`);
    

... (truncated)

Commits
  • a42dd91 Merge pull request #2400 from guardian/changeset-release/main
  • 9d0770d Bump package version
  • 67a6a89 Merge pull request #2402 from guardian/dependabot/npm_and_yarn/ts-jest-29.2.4
  • 537d959 chore(deps): bump ts-jest from 29.2.3 to 29.2.4
  • 1e5fa25 Merge pull request #2401 from guardian/dependabot/npm_and_yarn/types/node-22.0.2
  • b4e9d20 chore(deps): bump @​types/node from 22.0.0 to 22.0.2
  • 56e2c79 Merge pull request #2396 from guardian/an/ssl-policy-only-on-https
  • c7426d3 Only set an SSL policy on HTTPS application listeners
  • 552aac7 Merge pull request #2398 from guardian/dependabot/npm_and_yarn/aws-sdk-2.1665.0
  • 754c919 chore(deps): bump aws-sdk from 2.1664.0 to 2.1665.0
  • 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 will merge this PR once CI passes on it, as requested by @akash1810.


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 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)