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-cloudformation/cloudformation-cli-java-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: dchakrav-github/cloudformation-cli-java-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Checking mergeability… Don’t worry, you can still create the pull request.
  • 5 commits
  • 6 files changed
  • 1 contributor

Commits on Apr 24, 2020

  1. Allow for automated call graph generation to keep contexts unique within

    StdCallbackContext for replay deduping. Now developers do not need to
    provide a name when calling services. There is a unique call graph
    context maintained for each service call made. The context is request
    aware, so different requests made will have their own independent
    context for dedupe
    
    Dedupe identical requests
    
    ```java
       ProgressEvent<Model, StdCallbackContext> result =
          initiator.translateToServiceRequest(m -> createRepository)
             .makeServiceCall((r, c) ->
                c.injectCredentialsAndInvokeV2(
                    r, c.client()::createRepository))
             .success();
    
       ProgressEvent<Model, StdCallbackContext> result_2 =
           // make same request call
           initiator.translateToServiceRequest(m -> createRepository)
               .makeServiceCall((r, c) ->
                  c.injectCredentialsAndInvokeV2(
                    r, c.client()::createRepository))
               .success();
    
       assertThat(result).isEqualsTo(result_2);
    
    ```
    diwakar
    diwakar committed Apr 24, 2020
    Configuration menu
    Copy the full SHA
    e86730f View commit details
    Browse the repository at this point in the history

Commits on Apr 28, 2020

  1. Prevent ConcurrentModificationExceptions in stabilize calls if they

    access the map and attempt to modify it
    diwakar
    diwakar committed Apr 28, 2020
    Configuration menu
    Copy the full SHA
    547f3da View commit details
    Browse the repository at this point in the history

Commits on Jul 7, 2020

  1. Merge branch 'master' of github.com:aws-cloudformation/cloudformation…

    …-cli-java-plugin
    diwakar
    diwakar committed Jul 7, 2020
    Configuration menu
    Copy the full SHA
    cb53995 View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2020

  1. - Remove 60s hard coded callback

    - Remove handshake mode
    - Adding wait strategy that can be changed, defaulting to re-schedules with
      no local waits for Lambda binding
    - changes unit tests to reflect removal of handshake mode, fixed unit
      tests for serialization errors
    diwakar
    diwakar committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    b106098 View commit details
    Browse the repository at this point in the history
  2. Merge branch 'master' of github.com:aws-cloudformation/cloudformation…

    …-cli-java-plugin
    diwakar
    diwakar committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    7e0d329 View commit details
    Browse the repository at this point in the history
Loading