Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: aws/aws-cdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.109.0
Choose a base ref
...
head repository: aws/aws-cdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.110.0
Choose a head ref
  • 10 commits
  • 35 files changed
  • 9 contributors

Commits on Nov 16, 2023

  1. Configuration menu
    Copy the full SHA
    fe4c518 View commit details
    Browse the repository at this point in the history
  2. chore: add integ test for postgres with access to S3 bucket (#28000)

    Add integ test for postgres with access to S3 bucket for import and export.
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    udaypant authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    2f26f78 View commit details
    Browse the repository at this point in the history
  3. chore(rds): support RDS for SQL Server 16.00.4085.2.v1 as major versi…

    …on 2022 (#28029)
    
    This PR supports RDS for SQL Server 16.00.4085.2.v1 as major version 2022.
    
    https://aws.amazon.com/jp/about-aws/whats-new/2023/11/amazon-rds-sql-server-sql-server-major-version-2022/
    
    ```bash
    ❯ aws rds describe-db-engine-versions --engine sqlserver-ee --query "DBEngineVersions[?EngineVersion=='16.00.4085.2.v1'].[DBEngineVersionDescription,EngineVersion,DBParameterGroupFamily,MajorEngineVersion,Status]"
    [
        [
            "SQL Server 2022 16.00.4085.2.v1",
            "16.00.4085.2.v1",
            "sqlserver-ee-16.0",
            "16.00",
            "available"
        ]
    ]
    ```
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    go-to-k authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    bf9bb3d View commit details
    Browse the repository at this point in the history
  4. docs: Update template README.md (JavaScript, TypeScript) (#28003)

    Use npx to run project-specific cdk, not a globally installed version.
    
    This ensures everybody working on the project uses the same version of the command-line interface.
    
    With the previous instructions, if anybody had `cdk` installed globally, e.g., via `npm install --global aws-cdk` or `homebrew install aws-cdk`, they would run that version. It seems desirable that everybody working on a CDK app uses the same version of the command-line interface, as specified in `package.json` (or `package-lock.json`).
    
    Example:
    
    Given a `package.json` which specifies `"aws-cdk": "2.104.0"` and a globally installed `cdk`, this can happen:
    
    ```shell
    $ cdk --version
    2.108.1 (build 2320255)
    
    $ npx cdk --version
    2.104.0 (build 3b99abe)
    ```
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    pmeinhardt authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    c00b974 View commit details
    Browse the repository at this point in the history
  5. docs(ec2): fix typo from Amazon Linux 2022 to Amazon Linux 2023 (#28033)

    Document for AmazonLinux2023ImageSsmParameter has typo `amazon linux 2022`. 
    https://docs.aws.amazon.com/cdk/api/v2/docs/aws-cdk-lib.aws_ec2.AmazonLinux2023ImageSsmParameter.html
    > Generates a SSM Parameter name for a specific amazon linux 2022 AMI.
    
    It seems to be code clone from AmazonLinux2022ImageSsmParameter.
    https://github.com/aws/aws-cdk/blob/2f26f78abec3ca313b18026e58eb24698baaa1f9/packages/aws-cdk-lib/aws-ec2/lib/machine-image/amazon-linux-2022.ts#L56
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    tam0ri authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    ca71980 View commit details
    Browse the repository at this point in the history
  6. feat: update AWS Service Spec (#28034)

    AWS Service Spec packages to latest versions.
    aws-cdk-automation authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    1d1876c View commit details
    Browse the repository at this point in the history
  7. feat(lambda): support for advanced logging (#28039)

    Structured logging enables automated analysis of the logs, thus enables customers to perform quick exploratory and automated monitoring the health of their applications, and helps them troubleshoot their production issues faster. Structured logging is now considered to be a monitoring best practice.
    
    Lambda is developing Advance Logging Controls to give developers and operators more control over their function logs. The feature allows customers to capture logs in JSON format and control the level of details in emitted logs. To ensure compatibility and enable these capabilities, four new fields (LogFormat, ApplicationLogLevel, SystemLogLevel, and LogGroup) will be added to the existing LoggingConfig structure. Also, even adding custom log group for Log group section to have the flexibility of changing the name instead of having it as default. This update empowers customers to define their logging behavior and efficiently manage their function logs, reflecting Lambda's commitment to delivering a user-friendly logging solution that addresses the evolving needs of users.
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    otaviomacedo authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    3278c19 View commit details
    Browse the repository at this point in the history
  8. chore(migrate): improve warning (#28025)

    This feature is still under development and the warning isn't clear enough on that point.
    
    I also added in a small improvement to compare the input language as lowercase. No need to throw an error just because someone types TypeScript instead of typescript.
    
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    TheRealAmazonKendra authored Nov 16, 2023
    Configuration menu
    Copy the full SHA
    2272fe4 View commit details
    Browse the repository at this point in the history
  9. chore(release): 2.110.0

    AWS CDK Team committed Nov 16, 2023
    Configuration menu
    Copy the full SHA
    7480baf View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    c6471f2 View commit details
    Browse the repository at this point in the history
Loading