Skip to content

chore(deps): update dependency dagger/dagger to v0.18.9 #207

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 6, 2025

This PR contains the following updates:

Package Update Change
dagger/dagger patch 0.18.5 -> 0.18.9

Release Notes

dagger/dagger (dagger/dagger)

v0.18.9

Compare Source

Added
Changed
Fixed
What to do next?

v0.18.8

Compare Source

Fixed
What to do next?

v0.18.7

Compare Source

Fixed
Added
  • Add new optional parameters to Query.http by @​jedevc in https://github.com/dagger/dagger/pull/10317
    • name allows overriding the filename to download
    • permissions allows setting the permissions on the resulting file
    • authHeader allows passing a secret in the Authorization HTTP header
What to do next?

v0.18.6

Compare Source

🔥 Breaking Changes
  • Cache URI-based secrets based on their plaintext value rather than the URI by @​sipsma in https://github.com/dagger/dagger/pull/10311
    Previously, the "cache key" for URI-based secrets (e.g. env://FOO, file:///some/path, etc.) was the URI string. This meant that operations including the secret (e.g. as an environment variable in a Container) would be cached based on the URI value. If two secrets from different clients had the same URI but different plaintext values, cache for operations that include them would be shared.

    In many cases, even when URIs were the same, the plaintext of secrets could be meaningfully different, which made this behavior surprising and lead to unexpected results.

    Now, URI-based secrets are cached based on secure hashes of their plaintext value. Two secrets that have the same URI but different plaintext values will be cached separately, and operations that include them will not share cache.

    However, there are cases where users do want secrets with different plaintexts to share cache, e.g. secrets that rotate in plaintext value frequently but aren't meaningfully different and thus shouldn't bust the cache of operations that include them.

    To continue supporting those use cases, there is a new optional cacheKey argument to Secret that can be used to specify a custom cache key. If provided, the cache key will be used instead of the default plaintext-based cache key, allowing any secrets sharing that cache-key to be cached together.

    SDKs can provide this as an optional argument to the Secret constructor. Other example usages:

    dagger shell:

    • dagger shell -c "some-function --secret-arg $(secret env://FOO --cache-key my-cache-key)"

    dagger call (supports a special syntax that sets the cache key via a query param in the URI):

    • dagger call some-function --secret-arg env://FOO?cacheKey=my-cache-key
Added
Fixed
What to do next?

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch 3 times, most recently from eacd7b0 to b41bda1 Compare May 9, 2025 08:28
@renovate renovate bot changed the title chore(deps): update dependency dagger/dagger to v0.18.6 chore(deps): update dependency dagger/dagger to v0.18.7 May 13, 2025
@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch from b41bda1 to 100b7fe Compare May 13, 2025 19:56
@renovate renovate bot changed the title chore(deps): update dependency dagger/dagger to v0.18.7 chore(deps): update dependency dagger/dagger to v0.18.8 May 14, 2025
@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch 2 times, most recently from d0676ae to 1b3e08a Compare May 14, 2025 23:27
@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch from 1b3e08a to 1c204a8 Compare May 26, 2025 16:56
@renovate renovate bot changed the title chore(deps): update dependency dagger/dagger to v0.18.8 chore(deps): update dependency dagger/dagger to v0.18.9 May 27, 2025
@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch from 1c204a8 to 70fc30b Compare May 27, 2025 16:36
| datasource  | package       | from    | to      |
| ----------- | ------------- | ------- | ------- |
| github-tags | dagger/dagger | v0.18.5 | v0.18.9 |


Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/dagger-dagger-0.x branch from 70fc30b to b88037b Compare May 29, 2025 16:13
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.

0 participants