Skip to content

build(deps): bump docker/login-action from 4.4.0 to 4.5.1 - #1431

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/docker/login-action-4.5.1
Closed

build(deps): bump docker/login-action from 4.4.0 to 4.5.1#1431
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/github_actions/docker/login-action-4.5.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor

Bumps docker/login-action from 4.4.0 to 4.5.1.

Release notes

Sourced from docker/login-action's releases.

v4.5.1

Full Changelog: docker/login-action@v4.5.0...v4.5.1

v4.5.0

Full Changelog: docker/login-action@v4.4.0...v4.5.0

Commits
  • abd2ef4 Merge pull request #1055 from crazy-max/test-registry-auth-oidc
  • d49d3a9 Merge pull request #1054 from crazy-max/oidc-missing-dhi
  • b58b17c test: cover Docker Hub OIDC with registry-auth
  • be646c2 chore: update generated content
  • d77c059 support dhi.io as Docker Hub OIDC registry
  • 06fb636 Merge pull request #1037 from docker/dependabot/npm_and_yarn/aws-sdk-dependen...
  • a8bc953 [dependabot skip] chore: update generated content
  • f54b901 build(deps): bump the aws-sdk-dependencies group across 1 directory with 2 up...
  • 77f18f6 Merge pull request #1049 from docker/dependabot/github_actions/codeql-actions...
  • ec0bf28 Merge pull request #1050 from docker/dependabot/npm_and_yarn/docker/actions-t...
  • 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 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)

Bumps [docker/login-action](https://github.com/docker/login-action) from 4.4.0 to 4.5.1.
- [Release notes](https://github.com/docker/login-action/releases)
- [Commits](docker/login-action@af1e73f...abd2ef4)

---
updated-dependencies:
- dependency-name: docker/login-action
  dependency-version: 4.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Issues and pull requests related to GitHub Actions labels Jul 27, 2026
@dependabot
dependabot Bot requested a review from rvolosatovs as a code owner July 27, 2026 00:53
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file github_actions Issues and pull requests related to GitHub Actions labels Jul 27, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 29, 2026

Copy link
Copy Markdown
Contributor Author

Superseded by #1433.

@dependabot dependabot Bot closed this Jul 29, 2026
@dependabot
dependabot Bot deleted the dependabot/github_actions/docker/login-action-4.5.1 branch July 29, 2026 00:52
cschulze-acc pushed a commit to cschulze-acc/wrpc that referenced this pull request Jul 29, 2026
* rust: Add support for inter-task wakeups

This commit fixes a preexisting issue in the async support in the rust
bindings where inter-component-model-task wakeups/communication did not
work. Previously `wit-bindgen` would end up either panicking or wedging
itself if this situation arose, effectively not handling it at all.

Inter-task wakeups are supported in the component model with unit
streams and futures (e.g. `future` and `stream` with no type parameter).
For these types the component model allows the same instance to both
read/write from the stream or future. The support here is implemented
with `stream` as a task might receive many wake up notifications over
its lifetime.

Implementing this is a bit tricky, so the highlights of the
implementation are:

* This relies on new "magic function imports" recognized by
  `wit-component` specifically related to unit-streams and unit-futures.
  This is a very new feature of `wit-component` and thus hasn't had time
  to propagate throughout the ecosystem yet. Due to the niche nature of
  needing cross-task wakeups this commit disables cross-task wakeups by
  default and adds support for it behind a Cargo feature. The thinking
  is that if anyone runs into this there's now a clear panic/error
  message indicating that the feature can be enabled. Otherwise the hope
  is that no one runs into this (as it's relatively niche) and when the
  time is right we can enable this by default.

* All tasks started by wit-bindgen will need this new inter-task-wakeup
  stream for the reason that we don't actually know what will wake a
  task up when it blocks. To avoid adding a stream allocation on the
  fast path, the allocation of the inter-task stream is deferred until
  a task blocks for the first time.

* Right now a read of the inter-task stream starts when a task blocks.
  The read is cancelled when the task wakes up. A future optimization
  would be to keep the read-in-progress and only restart it if
  necessary. For now that's deferred, however.

Closes bytecodealliance#1431

* Update dependencies

* Review comments
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 github_actions Issues and pull requests related to GitHub Actions

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants