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

build(deps): bump github.com/docker/docker from 26.0.0+incompatible to 26.1.4+incompatible #222

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jul 30, 2024

Bumps github.com/docker/docker from 26.0.0+incompatible to 26.1.4+incompatible.

Release notes

Sourced from github.com/docker/docker's releases.

v26.1.4

26.1.4

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

Security

This release updates the Go runtime to 1.21.11 which contains security fixes for:

Bug fixes and enhancements

  • Fixed an issue where promoting a node immediately after another node was demoted could cause the promotion to fail. moby/moby#47870
  • Prevent the daemon log from being spammed with superfluous response.WriteHeader call ... messages.. moby/moby#47843
  • Don't show empty hints when plugins return an empty hook message. docker/cli#5083
  • Added ContextType: "moby" to the context list/inspect output to address a compatibility issue with Visual Studio Container Tools. docker/cli#5095
  • Fix a compatibility issue with Visual Studio Container Tools. docker/cli#5095

Packaging updates

v26.1.3

26.1.3

For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:

Bug fixes and enhancements

  • Fix a regression that prevented the use of DNS servers within a --internal network. moby/moby#47832
  • When the internal DNS server's own address is supplied as an external server address, ignore it to avoid unproductive recursion. moby/moby#47833

Packaging updates

... (truncated)

Commits
  • de5c9cf Merge pull request #47912 from thaJeztah/26.1_backport_vendor_containerd_1.7.18
  • c62dcf8 Merge pull request #47911 from thaJeztah/26.1_backport_bump_containerd_binary...
  • 17315a2 vendor: github.com/containerd/containerd v1.7.18
  • cbd9418 update containerd binary to v1.7.18
  • fb9f72a Merge pull request #47904 from thaJeztah/26.1_backport_bump_go1.21.11
  • 3115daa update to go1.21.11
  • 2861734 Merge pull request #47892 from thaJeztah/26.1_backport_api_docs_network_confi...
  • 9c95aea Merge pull request #47893 from thaJeztah/26.1_backport_bump_docker_py
  • 3e09e19 Merge pull request #47894 from thaJeztah/26.1_backport_vendor_containerd_v1.7.17
  • 65b679a Merge pull request #47889 from thaJeztah/26.1_backport_platforms_err_handling
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/docker/docker](https://github.com/docker/docker) from 26.0.0+incompatible to 26.1.4+incompatible.
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v26.0.0...v26.1.4)

---
updated-dependencies:
- dependency-name: github.com/docker/docker
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jul 30, 2024
Copy link

dryrunsecurity bot commented Jul 30, 2024

DryRun Security Summary

The provided GitHub pull request contains a series of changes, including README updates, license file changes, dependency version updates, and configuration file modifications, which do not appear to introduce any significant security concerns, except for the update to the ORAS Go library from version 1 to version 2, which includes the introduction of an experimental ExtendedCopy function that should be reviewed with caution.

Expand for full summary

Summary:

The provided GitHub pull request contains a series of changes to various files, including README updates, license file changes, dependency version updates, and configuration file modifications. From an application security engineer's perspective, the majority of these changes do not introduce any significant security concerns.

The updates to the README, license, and configuration files are primarily non-code changes that do not directly impact the application's security. The dependency version updates, such as the changes to the github.com/docker/docker library, should be reviewed to ensure there are no known security vulnerabilities in the new versions. However, based on the information provided, these appear to be routine updates without any immediate security implications.

The most notable change is the update to the ORAS Go library from version 1 to version 2, which includes several architectural and interface changes. While these changes generally seem to improve the library's security and maintainability, the introduction of the experimental ExtendedCopy function should be reviewed with caution, as experimental features may not have the same level of security and stability as the other library components.

Files Changed:

  1. vendor/github.com/digitorus/timestamp/README.md: This file contains a documentation update for the "timestamp" package, which is a Go implementation of the Time-Stamp Protocol (TSP). The changes are purely cosmetic and do not raise any security concerns.

  2. vendor/github.com/cyberphone/json-canonicalization/LICENSE: This change updates the license file for the "json-canonicalization" library, which is likely a routine maintenance task and does not introduce any security vulnerabilities.

  3. go.mod, go.sum, vendor/modules.txt: These files contain dependency updates, primarily for the github.com/docker/docker library. While it's important to review these changes for potential security implications, the information provided suggests these are minor version updates that do not raise immediate security concerns.

  4. vendor/github.com/dimchansky/utfbom/.travis.yml: The changes in this file update the Travis CI configuration for the "utfbom" Go package, including support for newer Go versions and the addition of various linting and testing tools. These changes do not directly impact the application's security.

  5. vendor/github.com/hashicorp/hcl/.gitignore, vendor/github.com/hashicorp/hcl/Makefile: These changes are related to project maintenance and do not introduce any security vulnerabilities.

  6. vendor/oras.land/oras-go/v2/MIGRATION_GUIDE.md: This file provides a migration guide for the ORAS Go library from version 1 to version 2, which includes several architectural and interface changes. While most of these changes seem to improve the library's security and maintainability, the introduction of the experimental ExtendedCopy function should be reviewed with caution.

Overall, the changes in this GitHub pull request do not appear to introduce any significant security concerns. However, it's always important to thoroughly review any dependency updates and new features, especially those that may have security implications, to ensure the ongoing security and integrity of the application.

Code Analysis

We ran 9 analyzers against 10 files and 1 analyzer had findings. 8 analyzers had no findings.

Analyzer Findings
Sensitive Files Analyzer 3 findings

Riskiness

🟢 Risk threshold not exceeded.

View PR in the DryRun Dashboard.

Copy link

DryRun Security Summary

We are currently analyzing this pull request to produce a meaningful summary.

Code Analysis

We ran 9 analyzers against 10 files and 1 analyzer had findings. 8 analyzers had no findings.

Analyzer Findings
Sensitive Files Analyzer 3 findings

Riskiness

🟢 Risk threshold not exceeded.

View PR in the DryRun Dashboard.

Copy link

guardrails bot commented Jul 30, 2024

⚠️ We detected 1 security issue in this pull request:

Vulnerable Libraries (1)
Severity Details
N/A pkg:golang/github.com/docker/[email protected]+incompatible upgrade to: 25.0.6+incompatible,26.1.5+incompatible,27.1.1+incompatible,25.0.6+incompatible,26.1.5+incompatible,27.1.1+incompatible

More info on how to fix Vulnerable Libraries in Go.


👉 Go to the dashboard for detailed results.

📥 Happy? Share your feedback with us.

Copy link
Author

dependabot bot commented on behalf of github Aug 9, 2024

Superseded by #223.

@dependabot dependabot bot closed this Aug 9, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/github.com/docker/docker-26.1.4incompatible branch August 9, 2024 19:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants