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): 2.130.0 #29228

Merged
merged 12 commits into from
Feb 23, 2024
Merged

chore(release): 2.130.0 #29228

merged 12 commits into from
Feb 23, 2024

Commits on Feb 21, 2024

  1. chore: npm-check-updates && yarn upgrade (#29194)

    Ran npm-check-updates and yarn upgrade to keep the `yarn.lock` file up-to-date.
    aws-cdk-automation committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    6f867d6 View commit details
    Browse the repository at this point in the history
  2. chore(eks): add private cluster reference link (#29201)

    ### Issue # (if applicable)
    
    
    
    ### Reason for this change
    
    EKS cluster with isolated VPC has been a gap for customers and now we have a working reference architecture at https://github.com/aws-samples/aws-cdk-examples/tree/master/java/eks/private-cluster I am adding a link in the aws-eks README hopefully to have more visibility.
    
    
    
    ### Description of changes
    
    
    
    ### Description of how you validated changes
    
    
    
    ### Checklist
    - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    pahud committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    97e1cef View commit details
    Browse the repository at this point in the history
  3. chore(rds): bump the parameter group name versions (#29192)

    ### Issue # (if applicable)
    
    Closes #29184
    
    ### Reason for this change
    
    As described in the issue, the example in the README can't be deployed.
    
    ### Description of changes
    
    Bump from `default.aurora-postgresql10` to `default.aurora-postgresql11`
    
    ### Description of how you validated changes
    
    No.
    
    ### Checklist
    - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    pahud committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    a4ebe8e View commit details
    Browse the repository at this point in the history
  4. chore(opensearch): improve the doc about disabling the logging (#29202)

    ### Issue # (if applicable)
    
    Closes #29200
    
    ### Reason for this change
    
    Disabling the logging from the enabled status requires an explicit `false`. This PR adds the description in the doc.
    
    ### Description of changes
    
    
    
    ### Description of how you validated changes
    
    
    
    ### Checklist
    - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    pahud committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    a7f6b2d View commit details
    Browse the repository at this point in the history
  5. fix(pipelines): generates warning since CDK 2.128.0 due to addition o…

    …f v2 pipeline support in aws-codepipeline (#29199)
    
    ### Issue # (if applicable)
    
    Closes #29190 
    
    ### Reason for this change
    
    CDK v2.128.0 introduced a warning in aws-codepipeline to warn users of the implicit behavior now that v2 pipelines are supported in CDK. This warning can cause established pipelines to fail if they are using cdk synth --strict. The warning can be suppressed, but the better fix is to have this module supply the `PipelineType` added in CDK v128.0 and set it to `v1`. A future change would have to address adding v2 pipeline support to this module, this only resolves the introduced warning. 
    
    ### Description of changes
    
    - added the optional (and new) `PipelineType` property in the creation of the codepipeline in https://github.com/aws/aws-cdk/blob/main/packages/aws-cdk-lib/pipelines/lib/codepipeline/codepipeline.ts#L467-L480
    - slightly modified the README where it mentions using aws-codepipeline to include specifically an mention of v2 as a reason to use aws-codepipeline (until of course v2 is added properly in this lib)
    
    ### Description of how you validated changes
    
    - reverted a change in 40ffe2b as I believe this previously caught the new warning and was changed to fix the test rather than looking into the new warning. This would catch the warning if `PipelineType` is not supplied
    
    ### Checklist
    - [ x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    gossandr committed Feb 21, 2024
    Configuration menu
    Copy the full SHA
    eca1bcf View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    54700ec View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    f528c47 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2024

  1. feat(appconfig): graduate to stable 🚀 (#29188)

    We are excited to graduate the @aws-cdk/aws-appconfig-alpha module to STABLE.
    It now lives on as `aws-cdk-lib/aws-appconfig`.
    
    Deprecated function removed:
    `deploy()` function is deprecated. 
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    xazhao committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    7feabc1 View commit details
    Browse the repository at this point in the history
  2. feat(bedrock): stabilityai model (#29210)

    - New URL
    - Adding Model
        - stability.stable-diffusion-xl-v0
        - stability.stable-diffusion-xl-v1 
    
    ### Checklist
    - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    watany-dev committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    6c17ca5 View commit details
    Browse the repository at this point in the history
  3. chore(appconfig): compilation error in ts 4.2 and below because of us…

    …ing get in interface (#29226)
    
    ### Reason for this change
    
    There is a lint error which `get` syntax can't be used on interface before TS version 4.3
    
    ### Description of changes
    
    Replace `get` with a regular function.
    
    ### Description of how you validated changes
    
    Unit test passed.
    
    ### Checklist
    - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md)
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    xazhao committed Feb 22, 2024
    Configuration menu
    Copy the full SHA
    fcb7231 View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2024

  1. fix(custom-resources-handlers): s3 deployment handler log injection v…

    …ulnerability (#28599)
    
    The `bucket-deployment-handler` results vulnerable to [CWE-117](https://cwe.mitre.org/data/definitions/117.html) and [CWE-93](https://cwe.mitre.org/data/definitions/93.html) according to AWS Inspector.
    This fix mitigates the vulnerability by sanitizing the logged `message` as suggested on [Veracode](https://community.veracode.com/s/article/How-to-Fix-CWE-117-Improper-Output-Neutralization-for-Logs).
    
    **Note**
    Inspector suggestion of using `urllib.parse.quote` would produce unreadable messages, so I opted for `encoded`.
    
    Closes #28469.
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    lpizzinidev committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    83aa395 View commit details
    Browse the repository at this point in the history
  2. chore(release): 2.130.0

    AWS CDK Team committed Feb 23, 2024
    Configuration menu
    Copy the full SHA
    0dad8cd View commit details
    Browse the repository at this point in the history