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 earthly/earthly to v0.6.10 #27

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Nov 16, 2020

WhiteSource Renovate

This PR contains the following updates:

Package Update Change
earthly/earthly minor v0.3.13 -> v0.6.10

Release Notes

earthly/earthly

v0.6.10

Compare Source

Changed
  • reverted zeroing of mtime change that was introduced in v0.6.9; this restores the behavior of setting modification time to 2020-04-16T12:00. #​1712

v0.6.9

Compare Source

Changed
  • Log sharing is enabled by default for logged in users, it can be disabled with earthly config global.disable_log_sharing true.
  • SAVE ARTIFACT ... AS LOCAL now sets mtime of output artifacts to the current time.
Added
  • Earthly is now 15-30% faster when executing large builds #​1589
  • Experimental HOST command, which can be used like this: HOST <domain> <ip> to add additional hosts during the execution of your build. To enable this feature, use VERSION --use-host-command 0.6. #​1168
Fixed
  • Errors when using inline caching indicating invalid layer index #​1635
  • Podman can now use credentials from the default location #​1644
  • Podman can now use the local registry cache without modifying registries.conf #​1675
  • Podman can now use WITH DOCKER --load inside a target marked as LOCALLY #​1675
  • Interactive sessions should now work with rootless configurations that have no apparent external IP address #​1573, #​1689
  • On native Windows installations, Earthly properly detects the local git path when it's available #​1663
  • On native Windows installations, Earthly will properly identify targets in Earthfiles outside of the current directory using the \ file separator #​1663
  • On native Windows installations, Earthly will save local artifacts to directories using the \ file separator #​1663
  • A parsing error, when using WITH DOCKER --load in conjunction with new-style
    build args. #​1696
  • ENTRYPOINT and CMD were not properly expanding args when used in shell mode.
  • A race condition sometimes caused a Canceled error to be reported, instead of the real error that caused the build to fail

v0.6.8

Compare Source

Fixed
  • RUN --interactive command exit codes were being ignored.
  • RUN --ssh command were failing to create SSH_AUTH_SOCK when run inside a WITH DOCKER. #​1672
Changed
  • expanded help text for earthly account register --help.

v0.6.7

Compare Source

Log Sharing (experimental)

This version of Earthly includes an experimental log-sharing feature which will
upload build-logs to the cloud when enabled.

To enable this experimental feature, you must first sign up for an earthly account
by using the earthly account register
command, or by visiting https://ci.earthly.dev/

Once logged in, you must explicitly enable log-sharing by running:

earthly config global.disable_log_sharing false

In a future version, log-sharing will be enabled by default for logged-in users; however, you will still be able to disable it, if needed.

When log-sharing is enabled, you will see a message such as

Share your build log with this link: https://ci.earthly.dev/logs?logId=dc622821-9fe4-4a13-a1db-12680d73c442

as the last line of earthly output.

Fixed
  • GIT CLONE now works with annotated git tags. #​1571
  • CACHE command was not working for versions of earthly installed via homebrew.
  • Autocompletion bug when directory has both an Earthfile and subdir containing an earthfile.
  • Autocompletion bug when directory has two subdirectories where one is a prefix of the other.
Changed
  • earthly account logout raises an error when EARTHLY_TOKEN is set.

v0.6.6

Compare Source

Added
  • Ability to change mounted secret file mode. fixes #​1434
Changed
  • Permission errors related to reading ~/.earthly/config.yml and .env files are now treated as errors rather than silently ignored (and assuming the file does not exist).
  • Speedup from pre-emptive execution of build steps prior to them being referenced in the build graph.
Fixed
  • earthly panic when running with SUDO_USER pointing to a user the current user did not have read/write permission; notably encountered when running under circleci.
Removed
  • Removed --git-url-instead-of flag, which has been replaced by earthly config git ...

v0.6.5

Compare Source

Added
  • Ability to load a different .env file via the --env-file flag.
  • Added experimental feature than changes the ARGs defined in the +base target to be local, unless defined with a --global flag;
    To enable this feature use VERSION --explicit-global 0.6.
Changed
  • Updated buildkit to include changes up to 17c237d
Fixed
  • failed to solve: image is defined multiple times for the same default platform errors. #​1594, #​1582
  • failed to solve: image rmi after pull and retag: command failed: docker image rm ...: exit status 1: Error: No such image errors. #​1590

v0.6.4

Compare Source

Fixed
  • Duplicate execution occuring when using ARGs. #​1572, #​1582
  • Overriding builtin ARG value now displays an error (rather than silently ignoring it).

v0.6.3

Compare Source

Changed
  • Updated buildkit to contain changes up to 15fb1145afa48bf81fbce41634bdd36c02454f99 from moby/master.
Added
  • Expirmental CACHE command can be used in Earthfiles to optimize the cache in projects that perform better with incremental changes. For example, a Maven
    project where SNAPSHOT dependencies are added frequently, an NPM project where node_modules change frequently, or programming languages using
    incremental compilers. #​1399
  • Config file entries can be deleted using a --delete flag (for example earthly config global.conversion_parallelism --delete). #​1449
  • Earthly now provides the following builtin ARGs: EARTHLY_VERSION and EARTHLY_BUILD_SHA. These
    will be generally available in Earthly version 0.7+, however, they can be enabled earlier by using the --earthly-version-arg. feature flag #​1452
  • Config option to disable known_host checking for specific git hosts by setting strict_host_key_checking to false under the git section of earthly/config.yml (defaults to true).
  • Error check for using both --interactive and --buildkit-host (which are not currently supported together). #​1492
  • earthly ls [<project-ref>] to list Earthfile targets.
Fixed
  • Gracefully handle empty string "" being provided as a value to earthly config commands. #​1449
  • known_host entries were being ignored when custom pattern and substituted git config options were used (commonly used for self-hosted git repos)
  • Unable to connect to ssh server when known_hosts doesn't contain ssh-rsa host scan, but contains a different key-scan (e.g. ecdsa-sha2-nistp256, ssh-ed25519, etc).
  • When git auth is set to ssh but no user is given, default to current user (similar to calling ssh example.com vs ssh user@example.com).

v0.6.2

Compare Source

Fixed
  • unexpected non-relative path within git dir bug when using case insensitive file systems #​1426
  • Unable to access private GitHub repos #​1421

v0.6.1

Compare Source

Changed
  • reverted zeroing of mtime change that was introduced in v0.6.9; this restores the behavior of setting modification time to 2020-04-16T12:00. #​1712

v0.6.0

Compare Source

This version promotes a number of features that have been previously in Experimental and Beta status. To make use of the features in this version you need to declare VERSION 0.6 at the top of your Earthfile. If a version is not declared, then Earthly's interpreter will assume VERSION 0.5.

If you are not ready to update your scripts to take advantage of VERSION 0.6, then you may upgrade Earthly anyway and your scripts should continue to work as before, provided that they either declare VERSION 0.5 or they don't declare a version at all.

Declaring VERSION 0.6 is equivalent to

VERSION \
  --use-copy-include-patterns \
  --referenced-save-only \
  --for-in \
  --require-force-for-unsafe-saves \
  --no-implicit-ignore \
  0.5

It is recommended to use VERSION 0.6 instead as individual feature flags don't guarantee proper forwards-backwards compatibility. Note, however, that Earthly 0.5.* is not able to run a VERSION 0.6 Earthfile and will return an error.

For more information on the individual Earthfile feature flags see the Earthfile version-specific features page.

Changed
  • What Earthly outputs locally has changed in a way that is not backwards compatible. For an artifact or an image to be produced locally it needs to be part of a BUILD chain (or be part of the target being directly built). Artifacts and images introduced through FROM or COPY are no longer output locally.

    To update existing scripts, you may issue a duplicate BUILD in addition to a FROM (or a COPY), should you wish for the referenced target to perform output.

    For example, the following script

    FROM +some-target
    COPY +another-target/my-artifact ./
    

    could become

    FROM +some-target
    BUILD +some-target
    COPY +another-target/my-artifact ./
    BUILD +another-target
    

    in order to produce the same outputs.

    For more details see #​896.

  • The syntax for passing build args has been changed.

    Earthly v0.5 (old way)

    FROM --build-arg NAME=john +some-target
    COPY --build-arg NAME=john +something/my-artifact ./
    WITH DOCKER --build-arg NAME=john --load +another-target
      ...
    END
    

    Earthly v0.6 (new way)

    FROM +some-target --NAME=john
    COPY (+something/my-artifact --NAME=john) ./
    WITH DOCKER --load (+another-target --NAME=john)
      ...
    END
    

    Passing build args on the command-line has also changed similarly:

    Earthly v0.5 (old way)

    earthly --build-arg NAME=john +some-target
    

    Earthly v0.6 (new way)

    earthly +some-target --NAME=john
    

    This change is part of the UDC proposal #​581. The old way of passing args is deprecated and will be removed in a future version (however, it still works in 0.6).

  • If a SAVE ARTIFACT is unsafe (writing to a directory outside of the Earthfile directory), it'll require the --force flag.
  • .earthlyignore no longer includes any implicit entries like Earthfile or .earthlyignore. These will need to be specified explicitly. #​1294
  • Buildkit was updated to d429b0b32606b5ea52e6be4a99b69d67b7c722b2. This includes a number of bug fixes, including eliminating crashes due to panic failed to get edge.
Added
  • Earthly now performs local image outputs to the local Docker daemon through a built-in registry. This speeds up the process drastically as common layers no longer need to be transferred over #​500.
  • Earthly now enables additional parallelism to speed up certain operations that were previously serialized #​888. Note that this setting was previously controlled by --conversion-parallelism flag or the EARTHLY_CONVERSION_PARALLELISM environment variable while in experimental stage. It has now been moved as part of the Earthly config and has been promoted to GA.
  • COPY transfers are sped up as only the necessary files are sent over to BuildKit #​1062.
  • WITH DOCKER has been promoted to GA #​576.
  • FROM DOCKERFILE has been promoted to GA.
  • LOCALLY has been promoted to GA #​580.
  • RUN --interactive and RUN --interactive-keep have been promoted to GA #​693.
  • IF and FOR have been promoted to GA #​779.
  • Support for Apple Silicon M1 has been promoted to GA #​722.
  • Multi-platform builds have been promoted to GA #​536.
  • Mounting secrets as files have been promoted as GA #​579.
  • VERSION has been promoted to GA #​991
  • User-defined commands (UDCs) have been promoted to GA #​581.
  • Allow running SAVE ARTIFACT after RUN --push is now GA #​586.
  • SAVE ARTIFACT --if-exists and COPY --if-exists have been promoted to GA #​588.
  • Shared cache and --ci mode are now GA #​11.
  • New builtin args USERPLATFORM, USEROS, USERARCH, and USERVARIANT which represent the platform, OS, architecture, and processor variant of the system Earthly is being called from #​1251. Thanks to @​akrantz01 for the contribution!
  • Config option for buildkit's max_parallelism configuration. Use this to increase parallelism for faster builds or decrease parallelism when resources are constraint. The default is 20. #​1308
  • Support for required ARGs (ARG --required foo) #​904. Thanks to @​camerondurham for the contribution!
  • Extended auto-completion to be build-arg aware. Typing earthly +my-target --<tab><tab> now prints possible build-args specific to +my-target. #​1330.
  • The console output now has an improved structure #​1226.
Fixed
  • Eliminated some spurious warnings (ReadDataPacket failed, Failed to connect to terminal, failed to read from stdin and others) #​1241.
  • Minor fixes related to the experimental Podman support #​1239.
  • Improved some error messages related to frontend detection #​1250.
  • Fixed Podman's ability to load OCI images #​1287.
  • Fixed homebrew installation on macOS 12. #​1370, homebrew/earthly#​13
  • failed due to failed to autodetect a supported frontend errors will now include underlying reason for failure
  • Cache export was not honoring EARTHLY_MAX_REMOTE_CACHE setting.
  • Buildkit logs were not being sent to earthly-buildkitd container's output.
  • kind required permissions were not available in earthly-buildkitd.

v0.5.24

Compare Source

Added
  • New --output flag, which forces earthly to enable outputs, even when running under --ci mode #​1200.
  • Experimental support for Podman #​760.
  • Automatically adds compatibility arguments for cases where docker is running under user namespaces.
Fixed
  • Removed spurious BuildKit and Local Registry URLs are pointed at different hosts (earthly-buildkitd vs. 127.0.0.1) warning.
  • Scrub git credentials when running under --debug mode.
  • "FROM DOCKERFILE" command was ignoring the path (when run on a remote target), which prevented including dockerfiles which were named something else.
  • Removed the creation of a temporary output directory when run in --no-output mode, or when building targets that don't output artifacts,
    the temporary directory is now created just before it is needed.
  • Fixed race condition involving WITH DOCKER and IF statements, which resulted in failed to solve: NotFound: no access allowed to dir errors.

v0.5.23

Compare Source

  • introduced COPY --if-exists which allows users to ignore errors which would have occurred if the file did not exist.
  • introduced new ip_tables config option for controlling which iptables binary is used; fixes #​1160
  • introduced warning message when saving to paths above the current directory of the current Earthfile; these warnings will eventually become errors unless the --force flag is passed to SAVE ARTIFACT.
  • fixed remote BuildKit configuration options being ignored; fixes #​1177
  • suppressed erroneous internal-term error messages which occurred when running under non-interactive ( e.g. --ci ) modes; fixes #​1108
  • changed help text for --artifact mode
  • deb and yum packages no longer clear the earthly cache on upgrades

v0.5.22

Compare Source

  • when running under --ci mode, earthly now raises an error if a user attempts to use the interactive debugger
  • updated underlying BuildKit version
  • print all request and responses to BuildKit when running under --debug mode
  • support for specifying files to ignore under .earthlyignore in addition to .earthignore; an error is raised if both exist
  • new ARG EARTHLY_GIT_SHORT_HASH will contain an 8 char representation of the current git commit hash
  • new ARG EARTHLY_GIT_COMMIT_TIMESTAMP will contain the timestamp of the current git commit
  • new ARG EARTHLY_SOURCE_DATE_EPOCH will contain the same value as EARTHLY_GIT_COMMIT_TIMESTAMP or 0 when the timestamp is not available
  • only directly referenced artifacts or images will be saved when the VERSION's --referenced-save-only feature flag is defined #​896
  • experimental support for FOR statements, when the VERSION's --for-in feature flag is defined #​1142
  • fixes bug where error was not being repeated as the final output
  • fixes bug where HTTPS-based git credentials were leaked to stdout

v0.5.20

Compare Source

  • Support for passing true/false values to boolean flags #​1109
  • fixes error that stated http is insecure when configuring a HTTPS git source. #​1115

v0.5.19

Compare Source

  • Improved selective file-transferring via BuildKit's include patterns; this feature is currently disabled by default, but can be enabled by including the --use-copy-include-patterns feature-flag in the VERSION definition (e.g. add VERSION --use-copy-include-patterns 0.5 to the top of your Earthfiles). This will become enabled by default in a later version.
  • Support for host systems that have nf_tables rather than ip_tables.
  • Show hidden dev flags when EARTHLY_AUTOCOMPLETE_HIDDEN="1" is set (or when running a custom-built version).
  • Improved crash logs.

v0.5.18

Compare Source

  • Added a --symlink-no-follow flag to allow copying invalid symbolic links (https://github.com/earthly/earthly/issues/1067)
  • Updated BuildKit, which contains a fix for "failed to get edge" panic errors (https://github.com/earthly/earthly/issues/1016)
  • Fix bug that prevented using an absolute path to reference targets which contained relative imports
  • Added option to disable analytics data collection when environment variables EARTHLY_DISABLE_ANALYTICS or DO_NOT_TRACK are set.
  • Include version and help flags in autocompletion output.

v0.5.17

Compare Source

v0.5.16

Compare Source

v0.5.15

Compare Source

v0.5.14

Compare Source

v0.5.13

Compare Source

v0.5.12

Compare Source

  • Adds a retry for remote BuildKit hosts when using the EARTHLY_BUILDKIT_HOST configuration option. (#​952)
  • Re-fetch credentials when they expire (#​957)
  • Make use of ~/.netrc credentials when no config is set under ~/.earthly/config.yml (#​964)
  • Make use of auth credentials when performing a GIT CLONE command within an Earthfile. (#​964)
  • Improved error output when desired secret does not exist, including the name of the missing secret. (#​972)
  • Warn if build-arg appears after the target in CLI invocations.(#​959)

v0.5.11

Compare Source

v0.5.10

Compare Source

v0.5.9

Compare Source

v0.5.8

Compare Source

v0.5.7

Compare Source

  • raise error when duplicate target names exists in Earthfile
  • basic user defined commands (experimental)
  • cleans up console output for saving artifacts (#​848)
  • implement support for WORKDIR under LOCALLY targets
  • fix zsh autocompletion issue for mac users
    If the autocompletion bug persists for anyone (e.g. seeing an error like command not found: __earthly__), and the issues persists after upgrading to v0.5.7; it might be necessary to delete the _earthly autocompletion file before re-running earthly bootstrap (or alternatively manually replace __earthly__ with the full path to the earthly binary).

v0.5.6

Compare Source

  • This release removes the ongoing updates "Provide intermittent updates on long-running targets (#​844)" from the previous release, as it has issues in the interactive mode.

v0.5.5

Compare Source

  • Keep .git directory in build context. (#​815 )
  • Wait extra time for buildkitd to start if the cache is larger than 30 GB (#​827)
  • Experimental: Allow RUN commands to open an interactive session (RUN --interactive), with the option to save the manual changes into the final image (RUN --interactive-keep) (#​833)
  • Provide intermittent updates on long-running targets (#​844)
  • Fix ZSH autocompletion in some instances (#​838)

v0.5.4

Compare Source

v0.5.3

Compare Source

  • Support for conditional logic using new IF, ELSE IF, and ELSE keywords (required for #​779)
  • Support for copying artifacts to LOCALLY targets (required for #​580)
Fixed
  • segfault when no output or error is displayed (fixes #​798)
  • unable to run earthly in docker container with mounted host-docker socket (fixes #​791)
  • ./.tmp-earthly-outXXXXXX temp files are now stored under ./.tmp-earthly-out/tmpXXXXXX and are correctly excluded from the build context

v0.5.2

Compare Source

Added
  • New --output flag, which forces earthly to enable outputs, even when running under --ci mode #​1200.
  • Experimental support for Podman #​760.
  • Automatically adds compatibility arguments for cases where docker is running under user namespaces.
Fixed
  • Removed spurious BuildKit and Local Registry URLs are pointed at different hosts (earthly-buildkitd vs. 127.0.0.1) warning.
  • Scrub git credentials when running under --debug mode.
  • "FROM DOCKERFILE" command was ignoring the path (when run on a remote target), which prevented including dockerfiles which were named something else.
  • Removed the creation of a temporary output directory when run in --no-output mode, or when building targets that don't output artifacts,
    the temporary directory is now created just before it is needed.
  • Fixed race condition involving WITH DOCKER and IF statements, which resulted in failed to solve: NotFound: no access allowed to dir errors.

v0.5.1

Compare Source

  • Improved selective file-transferring via BuildKit's include patterns; this feature is currently disabled by default, but can be enabled by including the --use-copy-include-patterns feature-flag in the VERSION definition (e.g. add VERSION --use-copy-include-patterns 0.5 to the top of your Earthfiles). This will become enabled by default in a later version.
  • Support for host systems that have nf_tables rather than ip_tables.
  • Show hidden dev flags when EARTHLY_AUTOCOMPLETE_HIDDEN="1" is set (or when running a custom-built version).
  • Improved crash logs.

v0.5.0

Compare Source

v0.4.6

Compare Source

  • No details provided

v0.4.5

Compare Source

  • Fix inconsistent COPY --dir behavior #​705
  • Fix AS LOCAL behavior with directories #​703

v0.4.4

Compare Source

v0.4.3

Compare Source

v0.4.2

Compare Source

  • fixed: EARTHLY_GIT_PROJECT_NAME contained the raw git URL when HTTPS-based auth was used (fixes #​671)
  • feature: support for mounting secrets as files rather than environment variables
  • feature: experimental support for multi-platform builds
  • misc: sending anonymized usage metrics to earthly

v0.4.1

Compare Source

Changes:

  • Ability to read secrets from files (ability to mount as files is not yet possible - feature coming soon).
  • Fix interactive mode when using docker-compose (or creating any network) within WITH DOCKER.

v0.4.0

Compare Source

Changes:

Upgrading:

v0.3.19

Compare Source

Changes:

  • Fix an issue with propagating build args with implied value between projects
  • Allow optional secrets via empty secret ID
  • Bug fixes for the experimental Cloud Secrets feature

v0.3.18

Compare Source

Changes:

  • Warning messages are now printed to stderr instead
  • Fix metadata not being visible on solarized terminal theme (#​552)
  • Experimental support for Earthly Cloud Secrets

v0.3.17

Compare Source

No details provided

v0.3.16

Compare Source

Changes:

v0.3.15

Compare Source

Changes:

v0.3.14

Compare Source

Changes:


Configuration

📅 Schedule: 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, click this checkbox.

This PR has been generated by WhiteSource Renovate. View repository job log here.

@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 5cbfd2e to 27bbc8f Compare November 19, 2020 02:13
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.3.14 chore(deps): update dependency earthly/earthly to v0.3.15 Nov 19, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 27bbc8f to d3891e6 Compare December 2, 2020 00:40
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.3.15 chore(deps): update dependency earthly/earthly to v0.3.16 Dec 2, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from d3891e6 to c3fb4d4 Compare December 3, 2020 21:37
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.3.16 chore(deps): update dependency earthly/earthly to v0.3.18 Dec 3, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from c3fb4d4 to b6f6214 Compare December 4, 2020 19:18
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.3.18 chore(deps): update dependency earthly/earthly to v0.3.19 Dec 4, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from b6f6214 to 2bf8898 Compare December 17, 2020 20:06
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.3.19 chore(deps): update dependency earthly/earthly to v0.4.0 Dec 17, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 2bf8898 to f53030a Compare December 18, 2020 19:56
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.0 chore(deps): update dependency earthly/earthly to v0.4.1 Dec 18, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from f53030a to 96ccbba Compare December 22, 2020 22:29
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.1 chore(deps): update dependency earthly/earthly to v0.4.2 Dec 22, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 96ccbba to 8219167 Compare December 28, 2020 18:41
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.2 chore(deps): update dependency earthly/earthly to v0.4.3 Dec 28, 2020
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 8219167 to e64e640 Compare January 6, 2021 20:10
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.3 chore(deps): update dependency earthly/earthly to v0.4.4 Jan 6, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from e64e640 to add6369 Compare January 13, 2021 22:44
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.4 chore(deps): update dependency earthly/earthly to v0.4.5 Jan 13, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from add6369 to 5475dca Compare February 10, 2021 20:50
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.4.5 chore(deps): update dependency earthly/earthly to v0.5.1 Feb 10, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 5475dca to a61e4c0 Compare April 26, 2021 17:20
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.1 chore(deps): update dependency earthly/earthly to v0.5.10 Apr 26, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from a61e4c0 to e1913d7 Compare May 9, 2021 21:32
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.10 chore(deps): update dependency earthly/earthly to v0.5.11 May 9, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from e1913d7 to a059a8d Compare May 15, 2021 21:28
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.11 chore(deps): update dependency earthly/earthly to v0.5.13 May 15, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from a059a8d to f27c810 Compare June 6, 2021 20:41
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.13 chore(deps): update dependency earthly/earthly to v0.5.16 Jun 6, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from f27c810 to 1cba308 Compare June 16, 2021 10:06
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.16 chore(deps): update dependency earthly/earthly to v0.5.17 Jun 16, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from 1cba308 to eec593d Compare October 18, 2021 20:22
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.17 chore(deps): update dependency earthly/earthly to v0.5.24 Oct 18, 2021
@renovate renovate bot force-pushed the renovate/earthly-earthly-0.x branch from eec593d to e09f92c Compare March 7, 2022 17:01
@renovate renovate bot changed the title chore(deps): update dependency earthly/earthly to v0.5.24 chore(deps): update dependency earthly/earthly to v0.6.10 Mar 7, 2022
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.

None yet

1 participant