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.96.1
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.96.2
Choose a head ref
  • 3 commits
  • 333 files changed
  • 3 contributors

Commits on Sep 14, 2023

  1. fix(custom-resources): does not accept strings where numbers are expe…

    …cted, skips recursive types (#27112)
    
    AWS SDK v3 strictly validates numeric types, as opposed to v2, which allowed, for example, "123" to be passed where an integer was expected.
    
    This script adds all attributes of a numeric type ("byte", "short", "integer", "long", "bigInteger", "float", "double" and "bigDecimal") to a new type coercion map. It also compacts the map by trimming each part of the path to its unique prefix among all the paths in its operation.
    
    We also change the data structure from a list of paths (forming a tree) to a graph/state machine. This is necessary in order to support self-recursive types, which can loop arbitrarily and therefore cannot be represented in fixed length prefix lists.
    
    
    See aws/aws-sdk-js-v3#5198
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    otaviomacedo authored and MrArnoldPalmer committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    d8dcd75 View commit details
    Browse the repository at this point in the history
  2. chore(release): 2.96.2

    MrArnoldPalmer committed Sep 14, 2023
    Configuration menu
    Copy the full SHA
    0641a26 View commit details
    Browse the repository at this point in the history

Commits on Sep 15, 2023

  1. Configuration menu
    Copy the full SHA
    3edd240 View commit details
    Browse the repository at this point in the history
Loading