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

chore(deps): update dependency dagger to v0.15.3 #201

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 31, 2023

This PR contains the following updates:

Package Update Change
dagger minor v0.5.1 -> v0.15.3

Release Notes

dagger/dagger (dagger)

v0.15.3

Compare Source

Added
Fixed
Dependencies
What to do next?

v0.15.2

Compare Source

Added
Changed
Fixed
What to do next?

v0.15.1

Compare Source

Fixed
What to do next?

v0.15.0

Compare Source

🔥 Breaking Changes
  • Container.asService now uses the command specified by withDefaultArgs instead of the last withExec command by @​rajatjindal in https://github.com/dagger/dagger/pull/8865
    Users can override the args by providing the args option to asService.
    They can also configure the container to use the container entrypoint by using
    useEntrypoint option.
Added
Fixed
What to do next?

v0.14.0

Compare Source

🔥 Breaking Changes
Added
  • Add support for git credential managers to retrieve Personal Access Tokens (PAT) when loading private dagger modules by @​grouville in https://github.com/dagger/dagger/pull/8805 \
    • Enables private git repository support for HTTP/HTTPS refs
    • Works alongside existing SSH authentication support
    • Compatible with standard git credential managers and credential helpers
    • Supports common git hosting platforms (GitHub, GitLab, Bitbucket, etc.)
Fixed
  • Ensure that gitdns support token support works with all Git server providers. Bitbucket Cloud requires a specific auth format for Git operations using tokens, where the username must be 'x-token-auth'. This fixes token authentication for Bitbucket while maintaining compatibility with other Git providers like GitHub and GitLab, and Azure by @​grouville in https://github.com/dagger/dagger/pull/8778
What to do next?

v0.13.7

Compare Source

Added
Changed
  • Updated default cache policies to avoid consuming too much disk by @​jedevc in https://github.com/dagger/dagger/pull/8725
    The new policies attempt to co-operate with other applications using the disk
    and will adjust its cache usage accordingly.
  • cli: limit printing objects to state by @​helderco in https://github.com/dagger/dagger/pull/8788
    Previously, when a function chain in dagger call ended in an object, we'd
    print all functions that return a simple value and don't have any arguments.
    Now, only object fields will be included, not all functions.
Fixed
What to do next?

v0.13.6

Compare Source

Added
  • Show metrics for execs in TUI by @​sipsma in https://github.com/dagger/dagger/pull/8506
    The engine now supports collecting metrics from individual execs and publishing them as OTel metrics.

    To start, just disk read/write byte totals and CPU/IO pressure time are supported, but more like memory/network/etc, will be added soon.

    Currently, metrics will be displayed in the TUI at verbosity level 4 (-vvv).

Changed
Fixed
  • Allow custom enums that include ambiguous names (such as true/false) by @​jedevc in https://github.com/dagger/dagger/pull/8682

  • Optimize Container.from for image refs with digests by @​sipsma in https://github.com/dagger/dagger/pull/8736
    Previously, if Container.from was given an image ref with a digest and that image already existed in the local cache, the engine would still waste time resolving metadata over the network from the registry.

    Now, if a digested image ref already exists locally, the network requests are skipped entirely.

  • Allow cloning hidden commits that are not fetched as part of a normal clone by @​jedevc in https://github.com/dagger/dagger/pull/8747
    For example, refs/pull/<pr>/head, or refs/pull/<pr>/merge.

  • Speed up fully cached initialize time by caching more internal SDK operations by @​sipsma in https://github.com/dagger/dagger/pull/8735
    Dagger wasn't caching as many SDK operations as it could. With this change Dagger's own CI modules initialize ~1s faster when fully cached.

  • Speed up initialization of modules with lots of dependencies using the Go SDK in engines with no cache by @​sipsma in https://github.com/dagger/dagger/pull/8761
    Various dependencies of Go SDK modules are now pre-cached in the engine image, which avoids significant CPU pressure when building Go SDK modules in parallel with no cache.

    The engine image size increase is expected to be offset by these improvements.

What to do next?

v0.13.5

Compare Source

Fixed
What to do next?

v0.13.4

Compare Source

🔥 Breaking Changes
Added
  • Services can now be given an explicit hostname via Service.withHostname by @​vito in https://github.com/dagger/dagger/pull/8641
    Previously, you could only express a DAG of services, because each service
    hostname was derived from the service's configuration, and changing a service
    to point to another service would inherently change that service's
    configuration.

    Now you can set your own hostnames ahead of time, tell your services about
    each other's hostnames, and start they manually.

    Services with custom hostnames are namespaced to the module that starts them, to prevent conflicts.

  • Allow expanding environment variables in more Container functions by @​rajatjindal in https://github.com/dagger/dagger/pull/8427

  • Apply ignore function parameter metadata on Directory passed from the CLI by @​TomChv in https://github.com/dagger/dagger/pull/8436
    This extends the usage of ignore to not only dir loaded with defaultPath
    but directory passed as function's param from the CLI.

    Note: ignore patterns are not applied for module to module calls.

  • Enabled Container.withMountedTemp size configuration by @​cwlbraa in https://github.com/dagger/dagger/pull/8652

  • Add noInit option to Container.withExec to support disabling automatic init process by @​sipsma in https://github.com/dagger/dagger/pull/8656
    Use cases that strictly require the user exec is PID 1 of the container are
    now supported by setting noInit to true.

Fixed
What to do next?

v0.13.3

Compare Source

Fixed
What to do next?

v0.13.2

Compare Source

Added
Fixed
What to do next?

v0.13.1

Compare Source

Added
Fixed
What to do next?

v0.13.0

Compare Source

🔥 Breaking Changes
  • Remove deprecated fields and arguments by @​jedevc in https://github.com/dagger/dagger/pull/8065
    • Remove Container.withExec's skipEntrypoint argument - this is now the default (see useEntrypoint)
    • Remove pipeline, Container.pipeline and Directory.pipeline
    • Remove GitModuleSource.cloneURL (see GitModuleSource.cloneRef)
Added
Changed
Fixed
What to do next?

v0.12.7

Compare Source

Fixed
What to do next?

v0.12.6

Compare Source

Added
Fixed
What to do next?

v0.12.5

Compare Source

Added
  • cli: allow calling core functions directly by @​helderco in https://github.com/dagger/dagger/pull/7310
    Usage: dagger core <function>
    Example: dagger core container from --address=alpine terminal

    Works the same as dagger call, but instead of loading a user module,
    it only uses functions from the core API.

    Run dagger core --help for available functions.

    Note that this command is experimental and the DX for calling core functions
    in the CLI may change in the future.

  • New SDK aliases for elixir and php by @​jedevc in https://github.com/dagger/dagger/pull/8067
    SDKs with experimental module support (elixir and php) can now be accessed
    using --sdk=<sdk> (such as --sdk=elixir and --sdk=php respectively)
    instead of the full form
    --sdk=github.com/dagger/dagger/sdk/<sdk>@&#8203;<version>.

  • Add File.digest method by @​TomChv in https://github.com/dagger/dagger/pull/8114
    This method provides an efficient way to compute a file's digest, which
    unlock optimized file comparison or check for file changes.

  • Bundle CLI in the Engine image so that both parts of Dagger (CLI+Engine) ship as a single artefact by @​gerhard in https://github.com/dagger/dagger/pull/8147

Changed
Fixed
What to do next?

v0.12.4

Compare Source

Changed
Fixed
What to do next?

v0.12.3

Compare Source

Added
Fixed
What to do next?

v0.12.2

Compare Source

Changed
Fixed
What to do next?

v0.12.1

Compare Source

Added
Changed
Fixed
What to do next?

v0.12.0

Compare Source

This release is significant. All details (including videos & code examples)
are captured in this blog post.

🔥 Breaking Changes
Upgrade Instructions

Thanks to the new compatibility mode feature, these breaking changes should not
impact any existing Modules immediately. dagger call should still work on
v0.12.0 without any changes to your Module code (any compat issues for modules
are likely a bug, please report!)

After upgrading to Engine v0.12.0, you can upgrade your Module to use the
latest v0.12.0 APIs by running dagger develop. That will update the
engineVersion field of your module's dagger.json configuration file to
v0.12.0 and enable the new APIs.

After that, if your code is impacted by any of the breaking changes, you will
see errors when running dagger call. Once the errors are fixed, dagger call
will work again and your module can be updated in Daggerverse if desired.

More detailed instructions on addressing the individual API incompatible
changes can be found in the PR descriptions linked above.

Added
Changed
Fixed
What to do next?

v0.11.9

Compare Source

Fixed
What to do next?

v0.11.8

Compare Source

🔥Breaking Changes
Added
Changed
Fixed
Dependencies
What to do next?

v0.11.7

Compare Source

🔥 Breaking Changes
Changed
Fixed
What to do next?

v0.11.6

Compare Source

Added
Fixed
What to do next?

v0.11.5

Compare Source

Added
Changed
Fixed
  • core: fixed cust

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, 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-0.x branch 2 times, most recently from 6e2116d to 1fd8999 Compare June 2, 2023 17:26
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.6.0 chore(deps): update dependency dagger to v0.6.1 Jun 2, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 1fd8999 to c503162 Compare June 15, 2023 23:06
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.6.1 chore(deps): update dependency dagger to v0.6.2 Jun 15, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from c503162 to 4e8d71d Compare July 4, 2023 18:44
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.6.2 chore(deps): update dependency dagger to v0.6.3 Jul 4, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 4e8d71d to a3f9e10 Compare July 19, 2023 19:05
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.6.3 chore(deps): update dependency dagger to v0.6.4 Jul 19, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from a3f9e10 to d57f0ec Compare August 3, 2023 19:04
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.6.4 chore(deps): update dependency dagger to v0.8.0 Aug 3, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from d57f0ec to 1c80c80 Compare August 4, 2023 20:12
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.0 chore(deps): update dependency dagger to v0.8.1 Aug 4, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch 2 times, most recently from f966c9c to 18acac0 Compare August 10, 2023 20:13
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.1 chore(deps): update dependency dagger to v0.8.2 Aug 10, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 18acac0 to c8f0372 Compare August 16, 2023 16:39
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.2 chore(deps): update dependency dagger to v0.8.3 Aug 16, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from c8f0372 to 4fae54f Compare August 17, 2023 19:51
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.3 chore(deps): update dependency dagger to v0.8.4 Aug 17, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 4fae54f to 068e06d Compare September 13, 2023 19:32
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.4 chore(deps): update dependency dagger to v0.8.5 Sep 13, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 068e06d to 5c054a5 Compare September 18, 2023 20:28
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.5 chore(deps): update dependency dagger to v0.8.6 Sep 18, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 5c054a5 to c568116 Compare September 19, 2023 01:00
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.6 chore(deps): update dependency dagger to v0.8.7 Sep 19, 2023
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.8.7 chore(deps): update dependency dagger to v0.8.8 Oct 12, 2023
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from c568116 to c259bd7 Compare October 12, 2023 03:55
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from c259bd7 to 626e8e0 Compare October 20, 2023 21:51
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.12.5 chore(deps): update dependency dagger to v0.12.6 Aug 30, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from cd6d0f5 to 617ec68 Compare September 2, 2024 16:53
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.12.6 chore(deps): update dependency dagger to v0.12.7 Sep 2, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 617ec68 to 9d17888 Compare September 11, 2024 16:47
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.12.7 chore(deps): update dependency dagger to v0.13.0 Sep 11, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 9d17888 to 0b15314 Compare September 18, 2024 21:19
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.0 chore(deps): update dependency dagger to v0.13.1 Sep 18, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 0b15314 to baaa689 Compare September 20, 2024 18:40
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.1 chore(deps): update dependency dagger to v0.13.2 Sep 20, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from baaa689 to bd53ede Compare September 20, 2024 23:06
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.2 chore(deps): update dependency dagger to v0.13.3 Sep 20, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from bd53ede to 4bef113 Compare October 9, 2024 17:11
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.3 chore(deps): update dependency dagger to v0.13.4 Oct 9, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 4bef113 to 3ed41ee Compare October 11, 2024 01:37
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.4 chore(deps): update dependency dagger to v0.13.5 Oct 11, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 3ed41ee to 4b31fa1 Compare October 25, 2024 12:43
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.5 chore(deps): update dependency dagger to v0.13.6 Oct 25, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 4b31fa1 to c8c2f51 Compare October 31, 2024 17:07
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.6 chore(deps): update dependency dagger to v0.13.7 Oct 31, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from c8c2f51 to 0b9f5f4 Compare November 8, 2024 22:11
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.13.7 chore(deps): update dependency dagger to v0.14.0 Nov 8, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from 0b9f5f4 to d2ef30d Compare December 11, 2024 16:18
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.14.0 chore(deps): update dependency dagger to v0.15.0 Dec 11, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from d2ef30d to efb69e8 Compare December 12, 2024 21:31
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.15.0 chore(deps): update dependency dagger to v0.15.1 Dec 12, 2024
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from efb69e8 to e6f298d Compare January 14, 2025 23:13
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.15.1 chore(deps): update dependency dagger to v0.15.2 Jan 14, 2025
@renovate renovate bot force-pushed the renovate/dagger-0.x branch from e6f298d to a795f5c Compare January 29, 2025 18:14
@renovate renovate bot changed the title chore(deps): update dependency dagger to v0.15.2 chore(deps): update dependency dagger to v0.15.3 Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant