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): 1.51.0 #8967

Merged
merged 23 commits into from
Jul 9, 2020
Merged

chore(release): 1.51.0 #8967

merged 23 commits into from
Jul 9, 2020

Commits on Jul 7, 2020

  1. Configuration menu
    Copy the full SHA
    7af03ac View commit details
    Browse the repository at this point in the history
  2. docs(lambda): fix typo in README (#8924)

    While taking a look at changes in https://github.com/aws/aws-cdk/pull/8602/files I've noticed a small typo so I figured - why not fix just fix it 🎉
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    Tomasz Łakomy authored Jul 7, 2020
    Configuration menu
    Copy the full SHA
    b25fc07 View commit details
    Browse the repository at this point in the history
  3. fix(codepipeline): set correct header assignment in S3 deployment cac…

    …he control (#8864)
    
    The `max-age` and `s-maxage` header properties were assigned using a `:` instead of `=`. This change fixes the assignment to be according to the spec. Also added missing test for the `s-maxage` property.
    
    Fixes #8774
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    nonken authored Jul 7, 2020
    Configuration menu
    Copy the full SHA
    be1094b View commit details
    Browse the repository at this point in the history
  4. chore(deps): bump aws-sdk from 2.710.0 to 2.711.0 (#8930)

    Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.710.0 to 2.711.0.
    - [Release notes](https://github.com/aws/aws-sdk-js/releases)
    - [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md)
    - [Commits](aws/aws-sdk-js@v2.710.0...v2.711.0)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jul 7, 2020
    Configuration menu
    Copy the full SHA
    fdba41a View commit details
    Browse the repository at this point in the history

Commits on Jul 8, 2020

  1. fix(appmesh): Update enums for appmesh (#8716)

    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    NickBlow authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    64e3d88 View commit details
    Browse the repository at this point in the history
  2. feat(appsync) allow using imported table as data source (#8790)

    As of now if your table is created in another stack and you want to use it as data source in graphql api. It is not allowed.
    With these changes you can import existing table as data source.
    fixes #8618 
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    nirvana124 authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    61e7094 View commit details
    Browse the repository at this point in the history
  3. feat(cloudfront): Add connectionAttempts, connectionTimeout in origin…

    … configuration (#8573)
    
    Closes #8572
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    civilizeddev authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    84b923f View commit details
    Browse the repository at this point in the history
  4. feat: Developer Preview of CDK Pipelines (#8868)

    Adds an initial, Developer Preview version of CDK Pipelines, a
    higher-level construct library to make it easy to set up CI/CD
    pipelines for CDK apps.
    
    Resolves aws/aws-cdk-rfcs#49.
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    rix0rrr authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    d2609bd View commit details
    Browse the repository at this point in the history
  5. chore(cloudfront): convert tests to Jest (#8939)

    Following in the example of #8811 and the aws-ec2 conversion, converting the
    aws-cloudfront tests to Jest in preparation for adding new tests.
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    njlynch authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    a6bffa1 View commit details
    Browse the repository at this point in the history
  6. chore: add account 2222222222 to git-secrets allowed pattern (#8942)

    Fixes build.
    
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    rix0rrr authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    b4cba5b View commit details
    Browse the repository at this point in the history
  7. fix(iam): cannot import service role with a principal in its path (#8692

    )
    
    Fixes #8691
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    ThomasSteinbach authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    55eb7d7 View commit details
    Browse the repository at this point in the history
  8. fix(ec2): VpcEndpoint AZ lookup fails for AWS services (#8386)

    fix(ec2): VpcEndpoint AZ lookup fails for AWS services
    ----
    
    This closes #8372
    
    InterfaceVpcEndpointAwsService objects currently use the `AWS.Region` token to define the service name. This results in an unresolved string, which cannot be resolved until CloudFormation deployment time.
    
    When using the `lookupSupportedAzs` functionality, a ContextProvider makes AWS calls (DescribeVpcEndpointServices) in which it passes the service name, to look up the AZs. ContextProviders cannot be given tokens. Hence, passing in an InterfaceVpcEndpointAwsService results in a synthesis-time failure.
    
    This ticket switches InterfaceVpcEndpointAwsService from using AWS.Region to a Lazy string which resolves to the stack's region. For region-agnostic stacks, the behavior is unchanged. For stacks with a specified region, the region is resolved.
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    flemjame-at-amazon authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    54e5c36 View commit details
    Browse the repository at this point in the history
  9. fix(cli): Python sample app template does not follow PEP8 (#8936)

    Classes should be surrounded by 2 blank lines according to PEP8
    
    related PR: aws-samples/aws-cdk-intro-workshop#142
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    ojongerius authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    0717919 View commit details
    Browse the repository at this point in the history
  10. docs(ecs): fix typo in awsLogs (#8878)

    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    jimmyhmiller authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    c424c57 View commit details
    Browse the repository at this point in the history
  11. chore(stepfunctions): fix documentation for Pass state (#8944)

    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    rix0rrr authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    da6f0fd View commit details
    Browse the repository at this point in the history
  12. chore(deps-dev): bump lodash from 4.17.15 to 4.17.18 (#8949)

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.18.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](https://github.com/lodash/lodash/commits)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    ab321ef View commit details
    Browse the repository at this point in the history
  13. chore(deps-dev): bump lodash from 4.17.18 to 4.17.19 (#8952)

    Bumps [lodash](https://github.com/lodash/lodash) from 4.17.18 to 4.17.19.
    - [Release notes](https://github.com/lodash/lodash/releases)
    - [Commits](https://github.com/lodash/lodash/commits/4.17.19)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    a57f9f1 View commit details
    Browse the repository at this point in the history
  14. chore(deps): bump aws-sdk from 2.711.0 to 2.712.0 (#8954)

    Bumps [aws-sdk](https://github.com/aws/aws-sdk-js) from 2.711.0 to 2.712.0.
    - [Release notes](https://github.com/aws/aws-sdk-js/releases)
    - [Changelog](https://github.com/aws/aws-sdk-js/blob/master/CHANGELOG.md)
    - [Commits](aws/aws-sdk-js@v2.711.0...v2.712.0)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    a1b3091 View commit details
    Browse the repository at this point in the history
  15. chore(appsync): reorganize code base to improve readability (#8933)

    **[ISSUE]**
    aws-appsync library only had one file to host all the code. Hard to read and navigate because close to 2000 lines.
    
    **[APPROACH]**
    Segmented in the following manner:
    - Data Sources
    - Resolvers
    - Keys
    - GraphQL 
    - Mapping Templates
    
    **[NOTE]**
    File names and contents are subject to change as I continue to add to this construct.
    
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    BryanPan342 authored Jul 8, 2020
    Configuration menu
    Copy the full SHA
    1bc8dfa View commit details
    Browse the repository at this point in the history

Commits on Jul 9, 2020

  1. refactor(appsync): rename files to follow dash-case syntax (#8958)

    Change filenames to follow `dash-case` syntax.
    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    BryanPan342 authored Jul 9, 2020
    Configuration menu
    Copy the full SHA
    ba5b268 View commit details
    Browse the repository at this point in the history
  2. chore(app-delivery): deprecate @aws-cdk/app-delivery (#8965)

    ----
    
    *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
    rix0rrr authored Jul 9, 2020
    Configuration menu
    Copy the full SHA
    13248b3 View commit details
    Browse the repository at this point in the history
  3. chore(deps-dev): bump fast-check from 1.25.1 to 1.26.0 (#8955)

    Bumps [fast-check](https://github.com/dubzzz/fast-check) from 1.25.1 to 1.26.0.
    - [Release notes](https://github.com/dubzzz/fast-check/releases)
    - [Changelog](https://github.com/dubzzz/fast-check/blob/master/CHANGELOG.md)
    - [Commits](dubzzz/fast-check@v1.25.1...v1.26.0)
    
    Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
    
    Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
    dependabot-preview[bot] authored Jul 9, 2020
    Configuration menu
    Copy the full SHA
    165e5eb View commit details
    Browse the repository at this point in the history
  4. chore(release): 1.51.0

    AWS CDK Team committed Jul 9, 2020
    Configuration menu
    Copy the full SHA
    e6bc7d5 View commit details
    Browse the repository at this point in the history