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

feat: implements AWS signature version 4 for signing requests #1047

Merged
merged 15 commits into from
Aug 28, 2020
Merged

feat: implements AWS signature version 4 for signing requests #1047

merged 15 commits into from
Aug 28, 2020

Commits on Aug 7, 2020

  1. Configuration menu
    Copy the full SHA
    11b0cb7 View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2020

  1. Configuration menu
    Copy the full SHA
    4df48df View commit details
    Browse the repository at this point in the history

Commits on Aug 12, 2020

  1. chore: release 6.0.7 (#1023)

    * chore: updated samples/package.json [ci skip]
    
    * chore: updated CHANGELOG.md [ci skip]
    
    * chore: updated package.json
    
    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    6dfee1d View commit details
    Browse the repository at this point in the history
  2. build: credential-file-override is no longer required (#1029)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/5f7f9c6d-c75a-4c60-8bb8-0026a14cead7/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    
    Source-Link: googleapis/synthtool@94421c4
    yoshi-automation committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    b976c8a View commit details
    Browse the repository at this point in the history
  3. chore: update cloud rad kokoro build job (#1034)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/b742586e-df31-4aac-8092-78288e9ea8e7/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    
    Source-Link: googleapis/synthtool@bd0deaa
    yoshi-automation committed Aug 12, 2020
    Configuration menu
    Copy the full SHA
    4830a53 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    eb54ee9 View commit details
    Browse the repository at this point in the history

Commits on Aug 13, 2020

  1. build: perform publish using Node 12 (#1035)

    This PR was generated using Autosynth. 🌈
    
    
    
    - [ ] To automatically regenerate this PR, check this box.
    
    Source-Link: googleapis/synthtool@5747555
    SurferJeffAtGoogle committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    714247d View commit details
    Browse the repository at this point in the history
  2. chore: release 6.0.8 (#1036)

    * chore: updated samples/package.json [ci skip]
    
    * chore: updated CHANGELOG.md [ci skip]
    
    * chore: updated package.json
    
    Co-authored-by: release-please[bot] <55107282+release-please[bot]@users.noreply.github.com>
    release-please[bot] committed Aug 13, 2020
    Configuration menu
    Copy the full SHA
    211e042 View commit details
    Browse the repository at this point in the history

Commits on Aug 18, 2020

  1. docs: correct spelling of its (#1040)

    Minor change that fixes a spelling error. I don't think an issue needed to be opened for this. Thanks!
    xethlyx committed Aug 18, 2020
    Configuration menu
    Copy the full SHA
    d4e56c0 View commit details
    Browse the repository at this point in the history

Commits on Aug 19, 2020

  1. docs: fix usage in readme (#1031)

    Add await
    
    Co-authored-by: Justin Beckwith <justin.beckwith@gmail.com>
    Co-authored-by: sofisl <55454395+sofisl@users.noreply.github.com>
    Co-authored-by: Benjamin E. Coe <bencoe@google.com>
    4 people committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    6c15139 View commit details
    Browse the repository at this point in the history
  2. chore: start tracking obsolete files (#1043)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/7a1b0b96-8ddb-4836-a1a2-d2f73b7e6ffe/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    yoshi-automation committed Aug 19, 2020
    Configuration menu
    Copy the full SHA
    0c8e086 View commit details
    Browse the repository at this point in the history

Commits on Aug 21, 2020

  1. build: move system and samples test from Node 10 to Node 12 (#1045)

    This PR was generated using Autosynth. 🌈
    
    Synth log will be available here:
    https://source.cloud.google.com/results/invocations/ba2d388f-b3b2-4ad7-a163-0c6b4d86894f/targets
    
    - [ ] To automatically regenerate this PR, check this box.
    
    Source-Link: googleapis/synthtool@05de3e1
    yoshi-automation committed Aug 21, 2020
    Configuration menu
    Copy the full SHA
    5164845 View commit details
    Browse the repository at this point in the history

Commits on Aug 24, 2020

  1. Configuration menu
    Copy the full SHA
    2cd3f93 View commit details
    Browse the repository at this point in the history
  2. feat: implements AWS signature version 4 for signing requests

    This is based on:
    https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html
    
    It will be used to generate signed requests to AWS GetCallerIdentity API.
    https://docs.aws.amazon.com/STS/latest/APIReference/API_GetCallerIdentity.html
    
    This API is used to return details about the IAM user or role whose
    credentials are used to call the operation.
    bojeil-google committed Aug 24, 2020
    Configuration menu
    Copy the full SHA
    29b2d56 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2020

  1. Adds additional AWS signature v4 tests from AWS botocore tests.

    https://github.com/boto/botocore/tree/879f8440a4e9ace5d3cf145ce8b3d5e5ffb892ef/tests/unit/auth/aws4_testsuite
    
    Adds support for raw date header in AWS requests.
    
    Fixes padding issue in `fromArrayBufferToHex`.
    bojeil-google committed Aug 28, 2020
    Configuration menu
    Copy the full SHA
    80e3f92 View commit details
    Browse the repository at this point in the history