Skip to content

[TT-11197]update hashicorp vault#6150

Merged
jeffy-mathew merged 2 commits into
masterfrom
chores/TT-11197/update-hashicorp-vault
Mar 15, 2024
Merged

[TT-11197]update hashicorp vault#6150
jeffy-mathew merged 2 commits into
masterfrom
chores/TT-11197/update-hashicorp-vault

Conversation

@jeffy-mathew

@jeffy-mathew jeffy-mathew commented Mar 15, 2024

Copy link
Copy Markdown
Contributor

User description

Description

Related Issue

Motivation and Context

How This Has Been Tested

Screenshots (if appropriate)

Types of changes

  • Bug fix (non-breaking change which fixes an issue)
  • New feature (non-breaking change which adds functionality)
  • Breaking change (fix or feature that would cause existing functionality to change)
  • Refactoring or add test (improvements in base code or adds test coverage to functionality)

Checklist

  • I ensured that the documentation is up to date
  • I explained why this PR updates go.mod in detail with reasoning why it's required
  • I would like a code coverage CI quality gate exception and have explained why

Type

enhancement, bug_fix


Description

  • Updated dependencies to newer versions for enhanced functionality and bug fixes.
  • Specifically updated github.com/hashicorp/consul/api, github.com/hashicorp/vault/api, github.com/opentracing/opentracing-go, golang.org/x/net, and google.golang.org/protobuf.
  • Updated checksums in go.sum for the new dependency versions.

Changes walkthrough

Relevant files
Dependencies
go.mod
Update dependencies for enhanced functionality and bug fixes

go.mod

  • Updated github.com/hashicorp/consul/api from v1.26.1 to v1.27.0
  • Updated github.com/hashicorp/vault/api from v1.10.0 to v1.12.1
  • Updated github.com/opentracing/opentracing-go from v1.2.0 to
    v1.2.1-0.20220228012449-10b1cf09e00b
  • Updated golang.org/x/net from v0.20.0 to v0.21.0
  • Updated google.golang.org/protobuf from v1.32.0 to v1.33.0
  • +42/-30 
    go.sum
    Update checksums for dependency updates                                   

    go.sum

  • Added checksums for new dependency versions
  • Removed old checksums for updated dependencies
  • +88/-81 

    PR-Agent usage:
    Comment /help on the PR to get a list of all available PR-Agent tools and their descriptions

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    API Changes

    no api changes detected

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    PR Description updated to latest commit (0ae157a)

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    PR Review

    ⏱️ Estimated effort to review [1-5]

    2, because the PR mainly involves dependency updates in the go.mod file, which typically requires verifying compatibility and ensuring that the updated versions do not introduce breaking changes or major bugs. The PR does not seem to include complex code changes, making the review process relatively straightforward.

    🧪 Relevant tests

    No

    🔍 Possible issues

    Dependency Conflicts: Updating multiple dependencies simultaneously might introduce conflicts if they have incompatible sub-dependencies.

    Regression: New versions of dependencies might introduce regressions or breaking changes that could affect the stability or functionality of the project.

    🔒 Security concerns

    No

    Code feedback:
    relevant filego.mod
    suggestion      

    Ensure that all updated dependencies are tested thoroughly to catch any regressions or breaking changes. Consider running integration tests that cover critical paths of the application to ensure that the dependency updates do not introduce new issues. [important]

    relevant linegithub.com/hashicorp/consul/api v1.27.0

    relevant filego.mod
    suggestion      

    Verify compatibility of the updated dependencies with the project. Check the release notes of each updated dependency for any breaking changes or important bug fixes that might affect the project. [important]

    relevant linegithub.com/hashicorp/vault/api v1.12.1

    relevant filego.mod
    suggestion      

    Consider pinning critical dependencies to specific versions to avoid unexpected breaking changes in the future. Using version ranges for non-critical dependencies can help receive updates while controlling the version of critical ones. [medium]

    relevant linegithub.com/opentracing/opentracing-go v1.2.1-0.20220228012449-10b1cf09e00b

    relevant filego.mod
    suggestion      

    Keep an eye on indirect dependencies that are introduced or updated as part of this PR. Indirect dependencies can sometimes introduce security vulnerabilities or compatibility issues. Use tools like go mod why to understand why they are needed and go mod tidy to clean up unnecessary dependencies. [medium]

    relevant linedario.cat/mergo v1.0.0 // indirect


    ✨ Review tool usage guide:

    Overview:
    The review tool scans the PR code changes, and generates a PR review. The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
    When commenting, to edit configurations related to the review tool (pr_reviewer section), use the following template:

    /review --pr_reviewer.some_config1=... --pr_reviewer.some_config2=...
    

    With a configuration file, use the following template:

    [pr_reviewer]
    some_config1=...
    some_config2=...
    
    Utilizing extra instructions

    The review tool can be configured with extra instructions, which can be used to guide the model to a feedback tailored to the needs of your project.

    Be specific, clear, and concise in the instructions. With extra instructions, you are the prompter. Specify the relevant sub-tool, and the relevant aspects of the PR that you want to emphasize.

    Examples for extra instructions:

    [pr_reviewer] # /review #
    extra_instructions="""
    In the 'possible issues' section, emphasize the following:
    - Does the code logic cover relevant edge cases?
    - Is the code logic clear and easy to understand?
    - Is the code logic efficient?
    ...
    """
    

    Use triple quotes to write multi-line instructions. Use bullet points to make the instructions more readable.

    How to enable\disable automation
    • When you first install PR-Agent app, the default mode for the review tool is:
    pr_commands = ["/review", ...]
    

    meaning the review tool will run automatically on every PR, with the default configuration.
    Edit this field to enable/disable the tool, or to change the used configurations

    Auto-labels

    The review tool can auto-generate two specific types of labels for a PR:

    • a possible security issue label, that detects possible security issues (enable_review_labels_security flag)
    • a Review effort [1-5]: x label, where x is the estimated effort to review the PR (enable_review_labels_effort flag)
    Extra sub-tools

    The review tool provides a collection of possible feedbacks about a PR.
    It is recommended to review the possible options, and choose the ones relevant for your use case.
    Some of the feature that are disabled by default are quite useful, and should be considered for enabling. For example:
    require_score_review, require_soc2_ticket, and more.

    Auto-approve PRs

    By invoking:

    /review auto_approve
    

    The tool will automatically approve the PR, and add a comment with the approval.

    To ensure safety, the auto-approval feature is disabled by default. To enable auto-approval, you need to actively set in a pre-defined configuration file the following:

    [pr_reviewer]
    enable_auto_approval = true
    

    (this specific flag cannot be set with a command line argument, only in the configuration file, committed to the repository)

    You can also enable auto-approval only if the PR meets certain requirements, such as that the estimated_review_effort is equal or below a certain threshold, by adjusting the flag:

    [pr_reviewer]
    maximal_review_effort = 5
    
    More PR-Agent commands

    To invoke the PR-Agent, add a comment using one of the following commands:

    • /review: Request a review of your Pull Request.
    • /describe: Update the PR title and description based on the contents of the PR.
    • /improve [--extended]: Suggest code improvements. Extended mode provides a higher quality feedback.
    • /ask <QUESTION>: Ask a question about the PR.
    • /update_changelog: Update the changelog based on the PR's contents.
    • /add_docs 💎: Generate docstring for new components introduced in the PR.
    • /generate_labels 💎: Generate labels for the PR based on the PR's contents.
    • /analyze 💎: Automatically analyzes the PR, and presents changes walkthrough for each component.

    See the tools guide for more details.
    To list the possible configuration parameters, add a /config comment.

    See the review usage page for a comprehensive guide on using this tool.

    @github-actions

    github-actions Bot commented Mar 15, 2024

    Copy link
    Copy Markdown
    Contributor

    PR Code Suggestions

    No code suggestions found for PR.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    1 similar comment
    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @jeffy-mathew
    jeffy-mathew force-pushed the chores/TT-11197/update-hashicorp-vault branch from 92f4980 to 9370d1d Compare March 15, 2024 11:27
    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @jeffy-mathew
    jeffy-mathew requested a review from lghiur March 15, 2024 12:06
    @jeffy-mathew
    jeffy-mathew enabled auto-merge (squash) March 15, 2024 12:10
    @github-actions

    Copy link
    Copy Markdown
    Contributor

    💥 CI tests failed 🙈

    git-state

    all ok

    Please look at the run or in the Checks tab.

    @jeffy-mathew
    jeffy-mathew force-pushed the chores/TT-11197/update-hashicorp-vault branch from 6d604e7 to d46e4b9 Compare March 15, 2024 12:50
    @jeffy-mathew
    jeffy-mathew force-pushed the chores/TT-11197/update-hashicorp-vault branch from d46e4b9 to d4fd8db Compare March 15, 2024 13:06
    @TykTechnologies TykTechnologies deleted a comment from github-actions Bot Mar 15, 2024
    @sonarqubecloud

    Copy link
    Copy Markdown

    Quality Gate Passed Quality Gate passed

    Issues
    0 New issues
    0 Accepted issues

    Measures
    0 Security Hotspots
    No data about Coverage
    0.0% Duplication on New Code

    See analysis details on SonarCloud

    @jeffy-mathew
    jeffy-mathew merged commit 81e10b2 into master Mar 15, 2024
    @jeffy-mathew
    jeffy-mathew deleted the chores/TT-11197/update-hashicorp-vault branch March 15, 2024 13:27
    @jeffy-mathew

    Copy link
    Copy Markdown
    Contributor Author

    /release to release-5.3

    @jeffy-mathew

    Copy link
    Copy Markdown
    Contributor Author

    /release to release.5.3.0

    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    Working on it! Note that it can take a few minutes.

    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    @jeffy-mathew Release branch not found

    tykbot Bot pushed a commit that referenced this pull request Mar 15, 2024
    ## **User description**
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    
    ___
    
    ## **Type**
    enhancement, bug_fix
    
    
    ___
    
    ## **Description**
    - Updated dependencies to newer versions for enhanced functionality and
    bug fixes.
    - Specifically updated `github.com/hashicorp/consul/api`,
    `github.com/hashicorp/vault/api`,
    `github.com/opentracing/opentracing-go`, `golang.org/x/net`, and
    `google.golang.org/protobuf`.
    - Updated checksums in `go.sum` for the new dependency versions.
    
    
    ___
    
    
    
    ## **Changes walkthrough**
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table>
    <tr>
      <td>
        <details>
    <summary><strong>go.mod</strong><dd><code>Update dependencies for
    enhanced functionality and bug fixes</code></dd></summary>
    <hr>
    
    go.mod
    <li>Updated <code>github.com/hashicorp/consul/api</code> from
    <code>v1.26.1</code> to <code>v1.27.0</code><br> <li> Updated
    <code>github.com/hashicorp/vault/api</code> from <code>v1.10.0</code> to
    <code>v1.12.1</code><br> <li> Updated
    <code>github.com/opentracing/opentracing-go</code> from
    <code>v1.2.0</code> to
    <br><code>v1.2.1-0.20220228012449-10b1cf09e00b</code><br> <li> Updated
    <code>golang.org/x/net</code> from <code>v0.20.0</code> to
    <code>v0.21.0</code><br> <li> Updated
    <code>google.golang.org/protobuf</code> from <code>v1.32.0</code> to
    <code>v1.33.0</code>
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6">+42/-30</a>&nbsp;
    </td>
    </tr>                    
    
    <tr>
      <td>
        <details>
    <summary><strong>go.sum</strong><dd><code>Update checksums for
    dependency updates</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; </dd></summary>
    <hr>
    
    go.sum
    <li>Added checksums for new dependency versions<br> <li> Removed old
    checksums for updated dependencies
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63">+88/-81</a>&nbsp;
    </td>
    </tr>                    
    </table></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    (cherry picked from commit 81e10b2)
    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    @jeffy-mathew Succesfully merged PR

    buger added a commit that referenced this pull request Mar 15, 2024
    [TT-11197]update hashicorp vault (#6150)
    
    ## **User description**
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    
    ___
    
    ## **Type**
    enhancement, bug_fix
    
    
    ___
    
    ## **Description**
    - Updated dependencies to newer versions for enhanced functionality and
    bug fixes.
    - Specifically updated `github.com/hashicorp/consul/api`,
    `github.com/hashicorp/vault/api`,
    `github.com/opentracing/opentracing-go`, `golang.org/x/net`, and
    `google.golang.org/protobuf`.
    - Updated checksums in `go.sum` for the new dependency versions.
    
    
    ___
    
    
    
    ## **Changes walkthrough**
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table>
    <tr>
      <td>
        <details>
    <summary><strong>go.mod</strong><dd><code>Update dependencies for
    enhanced functionality and bug fixes</code></dd></summary>
    <hr>
    
    go.mod
    <li>Updated <code>github.com/hashicorp/consul/api</code> from
    <code>v1.26.1</code> to <code>v1.27.0</code><br> <li> Updated
    <code>github.com/hashicorp/vault/api</code> from <code>v1.10.0</code> to
    <code>v1.12.1</code><br> <li> Updated
    <code>github.com/opentracing/opentracing-go</code> from
    <code>v1.2.0</code> to
    <br><code>v1.2.1-0.20220228012449-10b1cf09e00b</code><br> <li> Updated
    <code>golang.org/x/net</code> from <code>v0.20.0</code> to
    <code>v0.21.0</code><br> <li> Updated
    <code>google.golang.org/protobuf</code> from <code>v1.32.0</code> to
    <code>v1.33.0</code>
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6">+42/-30</a>&nbsp;
    </td>
    </tr>                    
    
    <tr>
      <td>
        <details>
    <summary><strong>go.sum</strong><dd><code>Update checksums for
    dependency updates</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; </dd></summary>
    <hr>
    
    go.sum
    <li>Added checksums for new dependency versions<br> <li> Removed old
    checksums for updated dependencies
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63">+88/-81</a>&nbsp;
    </td>
    </tr>                    
    </table></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    @jeffy-mathew

    Copy link
    Copy Markdown
    Contributor Author

    /release to release-5.3.0

    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    Working on it! Note that it can take a few minutes.

    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    Still working...

    tykbot Bot pushed a commit that referenced this pull request Mar 15, 2024
    ## **User description**
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    
    ___
    
    ## **Type**
    enhancement, bug_fix
    
    
    ___
    
    ## **Description**
    - Updated dependencies to newer versions for enhanced functionality and
    bug fixes.
    - Specifically updated `github.com/hashicorp/consul/api`,
    `github.com/hashicorp/vault/api`,
    `github.com/opentracing/opentracing-go`, `golang.org/x/net`, and
    `google.golang.org/protobuf`.
    - Updated checksums in `go.sum` for the new dependency versions.
    
    
    ___
    
    
    
    ## **Changes walkthrough**
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table>
    <tr>
      <td>
        <details>
    <summary><strong>go.mod</strong><dd><code>Update dependencies for
    enhanced functionality and bug fixes</code></dd></summary>
    <hr>
    
    go.mod
    <li>Updated <code>github.com/hashicorp/consul/api</code> from
    <code>v1.26.1</code> to <code>v1.27.0</code><br> <li> Updated
    <code>github.com/hashicorp/vault/api</code> from <code>v1.10.0</code> to
    <code>v1.12.1</code><br> <li> Updated
    <code>github.com/opentracing/opentracing-go</code> from
    <code>v1.2.0</code> to
    <br><code>v1.2.1-0.20220228012449-10b1cf09e00b</code><br> <li> Updated
    <code>golang.org/x/net</code> from <code>v0.20.0</code> to
    <code>v0.21.0</code><br> <li> Updated
    <code>google.golang.org/protobuf</code> from <code>v1.32.0</code> to
    <code>v1.33.0</code>
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6">+42/-30</a>&nbsp;
    </td>
    </tr>                    
    
    <tr>
      <td>
        <details>
    <summary><strong>go.sum</strong><dd><code>Update checksums for
    dependency updates</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; </dd></summary>
    <hr>
    
    go.sum
    <li>Added checksums for new dependency versions<br> <li> Removed old
    checksums for updated dependencies
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63">+88/-81</a>&nbsp;
    </td>
    </tr>                    
    </table></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    
    (cherry picked from commit 81e10b2)
    buger added a commit that referenced this pull request Mar 15, 2024
    [TT-11197]update hashicorp vault (#6150)
    
    ## **User description**
    <!-- Provide a general summary of your changes in the Title above -->
    
    ## Description
    
    <!-- Describe your changes in detail -->
    
    ## Related Issue
    
    <!-- This project only accepts pull requests related to open issues. -->
    <!-- If suggesting a new feature or change, please discuss it in an
    issue first. -->
    <!-- If fixing a bug, there should be an issue describing it with steps
    to reproduce. -->
    <!-- OSS: Please link to the issue here. Tyk: please create/link the
    JIRA ticket. -->
    
    ## Motivation and Context
    
    <!-- Why is this change required? What problem does it solve? -->
    
    ## How This Has Been Tested
    
    <!-- Please describe in detail how you tested your changes -->
    <!-- Include details of your testing environment, and the tests -->
    <!-- you ran to see how your change affects other areas of the code,
    etc. -->
    <!-- This information is helpful for reviewers and QA. -->
    
    ## Screenshots (if appropriate)
    
    ## Types of changes
    
    <!-- What types of changes does your code introduce? Put an `x` in all
    the boxes that apply: -->
    
    - [ ] Bug fix (non-breaking change which fixes an issue)
    - [ ] New feature (non-breaking change which adds functionality)
    - [ ] Breaking change (fix or feature that would cause existing
    functionality to change)
    - [ ] Refactoring or add test (improvements in base code or adds test
    coverage to functionality)
    
    ## Checklist
    
    <!-- Go over all the following points, and put an `x` in all the boxes
    that apply -->
    <!-- If there are no documentation updates required, mark the item as
    checked. -->
    <!-- Raise up any additional concerns not covered by the checklist. -->
    
    - [ ] I ensured that the documentation is up to date
    - [ ] I explained why this PR updates go.mod in detail with reasoning
    why it's required
    - [ ] I would like a code coverage CI quality gate exception and have
    explained why
    
    
    ___
    
    ## **Type**
    enhancement, bug_fix
    
    
    ___
    
    ## **Description**
    - Updated dependencies to newer versions for enhanced functionality and
    bug fixes.
    - Specifically updated `github.com/hashicorp/consul/api`,
    `github.com/hashicorp/vault/api`,
    `github.com/opentracing/opentracing-go`, `golang.org/x/net`, and
    `google.golang.org/protobuf`.
    - Updated checksums in `go.sum` for the new dependency versions.
    
    
    ___
    
    
    
    ## **Changes walkthrough**
    <table><thead><tr><th></th><th align="left">Relevant
    files</th></tr></thead><tbody><tr><td><strong>Dependencies</strong></td><td><table>
    <tr>
      <td>
        <details>
    <summary><strong>go.mod</strong><dd><code>Update dependencies for
    enhanced functionality and bug fixes</code></dd></summary>
    <hr>
    
    go.mod
    <li>Updated <code>github.com/hashicorp/consul/api</code> from
    <code>v1.26.1</code> to <code>v1.27.0</code><br> <li> Updated
    <code>github.com/hashicorp/vault/api</code> from <code>v1.10.0</code> to
    <code>v1.12.1</code><br> <li> Updated
    <code>github.com/opentracing/opentracing-go</code> from
    <code>v1.2.0</code> to
    <br><code>v1.2.1-0.20220228012449-10b1cf09e00b</code><br> <li> Updated
    <code>golang.org/x/net</code> from <code>v0.20.0</code> to
    <code>v0.21.0</code><br> <li> Updated
    <code>google.golang.org/protobuf</code> from <code>v1.32.0</code> to
    <code>v1.33.0</code>
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-33ef32bf6c23acb95f5902d7097b7a1d5128ca061167ec0716715b0b9eeaa5f6">+42/-30</a>&nbsp;
    </td>
    </tr>                    
    
    <tr>
      <td>
        <details>
    <summary><strong>go.sum</strong><dd><code>Update checksums for
    dependency updates</code>&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
    &nbsp; &nbsp; </dd></summary>
    <hr>
    
    go.sum
    <li>Added checksums for new dependency versions<br> <li> Removed old
    checksums for updated dependencies
    
    
    </details>
        
    
      </td>
    <td><a
    href="https://github.com/TykTechnologies/tyk/pull/6150/files#diff-3295df7234525439d778f1b282d146a4f1ff6b415248aaac074e8042d9f42d63">+88/-81</a>&nbsp;
    </td>
    </tr>                    
    </table></td></tr></tr></tbody></table>
    
    ___
    
    > ✨ **PR-Agent usage**:
    >Comment `/help` on the PR to get a list of all available PR-Agent tools
    and their descriptions
    @tykbot

    tykbot Bot commented Mar 15, 2024

    Copy link
    Copy Markdown

    @jeffy-mathew Succesfully merged PR

    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    2 participants