Skip to content

Latest commit

 

History

History
575 lines (358 loc) · 21.7 KB

CHANGELOG.md

File metadata and controls

575 lines (358 loc) · 21.7 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, adheres to Semantic Versioning, and is generated by Changie.

v0.11.4 - 2024-05-09

Fixed

  • cli: Fix panic when calling function with list of scalars by @jedevc in #7322
  • Avoid hang caused by client id conflicts by @sipsma in #7335
  • Avoid unneccessary module cache invalidation from internal plumbing values by @sipsma in #7336

What to do next?

v0.11.3 - 2024-05-08

🔥 Breaking Changes

  • cli: remove space stripping from secret arguments by @marcosnils in #7271

Added

  • Added support for custom scalars and enums in function arguments by @jedevc in #7158
  • Added support for propagating system proxy settings by @sipsma in #7255
  • api: Added Container.withoutSecretVariable by @helderco in #7291
  • api: Added Container.withoutDirectory and Container.withoutFile by @helderco in #7292

Changed

  • cli: Added a visual cue for required flags in --help by @grouville in #7262
  • cli: Conventionalized usage syntax in --help by @grouville in #7143
  • cli: Use "functions" and "arguments" in dagger call --help by @helderco in #7286

Fixed

  • api: Set Container.platform correctly when using Container.from by @marcosnils in #7298
  • Avoid intermittent failed to get state for index errors by @sipsma in #7295 #7309
  • Avoid panic when masked parent is missing by @vito in #7227
  • Fix terminal broken on Windows by @wingyplus in #7305

What to do next?

v0.11.2 - 2024-04-25

Added

  • New version field to get engine version details by @jedevc in #7029

Changed

  • cli: style headings in BOLD UPPERCASE to help break sections visually by @grouville in #7126
  • cli: remove discrepancy in usage between dagger query and the rest of the commands by @grouville in #7124
  • cli: move arguments section below functions/commands in usage, for better readability by @grouville in #7134
  • cli: adopt options terminology instead of flags by @grouville in #7170

Fixed

  • Fixed more windows path issues by @jedevc in #7118
  • cli: Fixed using --help after arguments in dagger functions by @helderco in #7187

What to do next?

v0.11.1 - 2024-04-16

Added

  • Add withAuthToken and withAuthHeader fields to GitRepository by @jedevc in #6992

Fixed

  • Restored plain progress output after removal in v0.11.0 by @morlay in #7069
  • Fixed various windows regressions by @jedevc in #7003 #7050 #7095
  • Git can now be used with dumb HTTP clones by @jedevc in #6992

What to do next?

v0.11.0 - 2024-04-03

🔥 Breaking Changes

  • Old clients <=0.10.3 cannot connect to a new >=v0.11.0 engine
  • Old progress interfaces removed by @vito in #6835
  • --focus CLI flag removed by @vito in #6835

Added

  • Add OTEL trace exports by @vito in #6835
  • Add Head field to GitRepository to get the default branch by @jedevc in #6994

Fixed

  • Fix DOCKER_HOST not working when DAGGER_CLOUD_TOKEN set by @sipsma in #7006

What to do next?

v0.10.3 - 2024-03-26

Added

  • Add support for wipe arg to Directory.export by @sipsma in #6909
  • Add new Secret.Name field by @jedevc in #6924
  • Support directory arg filtering via views by @sipsma in #6857
  • Make automatic .gitignore creation for modules configurable by @sipsma in #6888

Changed

  • Allow id as argument name to functions by @sipsma in #6912

Fixed

  • Fix Container.withFiles not respecting absolute paths by @helderco in #6879
  • Fix Directory.glob on directories with a sub path by @helderco in #6904
  • Allow unicode parent path components by @jedevc in #6925

What to do next?

v0.10.2 - 2024-03-12

Fixed

  • Fix panic on unset default terminal arg by @TomChv in #6838
  • Trim spaces on file and command secret source inputs by @kpenfound in #6845
  • Fix name conflicts with Query by @jedevc in #6849
  • Propagate GraphQL client to child clients by @jedevc in #6851
  • Prevent glob from returning duplicate directories by @jedevc in #6852
  • Do find-up of dagger.json for all relevant commands (works from subdirs) by @sipsma in #6860

What to do next?

v0.10.1 - 2024-03-05

Added

  • Allow passing git URLs to dagger call file type args by @jedevc in #6769
  • Support privileges and nesting in default terminal command by @TomChv in #6805

Fixed

  • Fix panic in Contents for massive files by @jedevc in #6772
  • Dagger go modules default to the module name instead of "main" by @jedevc in #6774
  • Fix a regression where secrets used with dockerBuild could error out by @jedevc in #6809
  • Fix goroutine and memory leaks in engine by @sipsma in #6760
  • Fix potential name clash with "Client" in Go functions by @jedevc in #6716

What to do next?

v0.10.0 - 2024-02-27

Added

  • New Dagger functions and modules
    • Modules allow bundling up and sharing reuable pipeline functions in a cross-language way.
    • New CLI commands (such as dagger call) provide a consistent interface to easily invoke functions inside modules.
    • A new TUI interface allows easily following along with what's going on.

What to do next?

v0.9.11 - 2024-02-20

Fixed

  • Improve docker error logging by @jedevc in #6676

What to do next?

v0.9.10 - 2024-02-12

Added

  • Add new Directory.WithFiles and Container.WithFiles by @tomasmota in #6556

Fixed

  • Avoid panic in secret scrubber caused by similar secret names @jedevc in #6641

What to do next?

v0.9.9 - 2024-02-08

Added

  • Add new Git.ref function by @jedevc in #6376

What to do next?

v0.9.8 - 2024-02-01

🔥 Breaking Changes

  • Service.Stop now uses SIGTERM instead of SIGKILL by default by @jedevc in #6354

Added

  • Add option to skip healthcheck on exposed ports by @KGB33 in #6214
  • New kill option for Service.Stop by @jedevc in #6354

What to do next?

v0.9.7 - 2024-01-18

Added

  • New File.name field by @jedevc in #6431

What to do next?

v0.9.6 - 2024-01-11

🔥 Breaking Changes

  • Argument to withDefaultArgs is now required by @helderco in #6281

Fixed

  • Fix shim panic when exec-ing an unknown command by @Juneezee in #6356
  • Fix potential panic when exporting cache by @jedevc in #6378
  • Fix concurrent map access in api server by @jedevc in #6388

What to do next?

v0.9.5 - 2023-12-21

Added

  • New withoutEntryoint and withoutDefaultArgs fields by @helderco in #6278

Fixed

  • Clear defaultArgs on withEntrypoint by default by @helderco in #6280

What to do next?

v0.9.4 - 2023-12-08

Added

  • New secret scrubbing implementation for more responsive logs by @jedevc in #6034
  • Improved logging during engine startup by @jedevc in #6075

Fixed

  • Fix WithMountedDirectory invalidating cache by @jedevc in #6211

What to do next?

v0.9.3 - 2023-11-03

Fixed

  • Fixes + performance improvements to experimental features

What to do next?

v0.9.2 - 2023-10-30

Added

  • experimental Nvidia GPU support by @matiasinsaurralde in #5605

What to do next?

v0.9.1 - 2023-10-26

Added

  • Implement new commit resolver for GitRef by @jedevc in #5910
  • Directory supports Glob method by @TomChv in #5824

What to do next?

v0.9.0 - 2023-10-20

🔥 Breaking Changes

  • engine: new services API with container <=> host networking, explicit start/stop by @vito in #5557
  • implement new conventions for IDable objects by @vito in #5881

Added

  • engine: support multiple cache configs for upstream remote cache by @sipsma in #5730

Changed

  • engine: reduce connection retry noise by @sipsma in #5918

Fixed

  • engine: fix missing descriptor handlers for lazy blobs error w/ cloud cache by @sipsma in #5885

What to do next?

v0.8.8 - 2023-10-11

Added

  • core: use BuildKit's own readiness implementation instead of our custom logic by @jedevc in #5808
  • core: add Engine logs for failed queries in debug mode by @jedevc in #5827

Fixed

  • cli: restart manually stopped engine containers by @jedevc in #5811
  • cli: fix process hang when running certain command with dagger run by @wingyplus in #5712

What to do next?

v0.8.7 - 2023-09-18

Added

  • core: remove syncedCacheMount check for cache manager by @marcosnils in #5797

What to do next?

v0.8.6 - 2023-09-18

Added

  • core: record seen cache volumes at resolver level by @marcosnils in #5786

What to do next?

v0.8.5 - 2023-09-13

Added

  • cli: add DAGGER_SESSION_TOKEN env var support in listen command by @marcosnils in #5704
  • core: Extends mounted secret API to support mode and optional arguments by @TomChv in #5707
  • engine: add DAGGER_CLOUD_TOKEN env var support by @marcosnils in #5773

Fixed

  • engine: fix panic if _EXPERIMENTAL_DAGGER_SERVICES_DNS is disabled by @vbehar in #5760
  • services: refactor to per-client instances that stop on client close by @vito in #5764
  • cli: fix interactive TUI nil panic by @vito in #5681

What to do next?

v0.8.4 - 2023-08-17

Fixed

  • Default container tar export permissions to 0600 by @sipsma in #5649

What to do next?

v0.8.3 - 2023-08-16

Added

  • Include details during Dagger Engine loading by @TomChv in #5436
  • Show host target on directory or file export by @TomChv in #5632

Changed

  • Hide merge vertexes from output by @sipsma in #5630

Fixed

  • Fix Engine connection hang when UTF8 characters present in labels by @vito in #5628
  • Export files with same permissions as source by @sipsma in #5629

What to do next?

v0.8.2 - 2023-08-10

Added

  • remote cache: improve http error checking by @aluzzardi in #5506

Fixed

  • engine: fix combined cache manager to query local cache too by @sipsma in #5585
  • telemetry: fix labels not being included by @vito in #5602

What to do next?

v0.8.1 - 2023-08-04

Fixed

  • cli: fix dagger run not showing command progress by @vito in #5564
  • core: fix setting image config during multiplatform export+publish by @sipsma in #5574
  • core: fix exports of files larger than default grpc max message size by @sipsma in #5570
  • engine: report correct engine version by stamping engine image too by @sipsma in #5578
  • core: handle v prefix in version compatibility check by @sipsma in #5578

What to do next?

v0.8.0 - 2023-08-03

🔥 Breaking Changes

  • engine: remove API deprecations by @helderco in #5512
  • engine: Rename id argument in Container.withRootfs by @helderco in #5513

Added

  • engine: implement Host.setSecretFile to securely set binary files as secrets by @grouville in #5500

Fixed

  • engine: Bump Alpine version to fix service DNS resolution by @marcosnils in #5470

What to do next?

v0.6.4 - 2023-07-19

Added

  • cli: show total duration at the end of a run by @vito in #5476
  • engine: add Directory.Sync by @helderco in #5414
  • engine: add File.Sync by @helderco in #5416
  • engine: add Container.WithFocus & Container.WithoutFocus by @vito in #5364
  • engine: add include & exclude to host dir copy name by @sipsma in #5469

Deprecated

  • engine: deprecate exitCode by @helderco in #5481

Fixed

  • engine: prevent session id from busting caches everywhere by @vito in #5474
  • engine: optimize WithDirectory & WithFile via MergeOp by @sipsma in #5400
  • engine: remove unimplemented git fields by @helderco in #5410
  • engine: support optionally setting explicit OCI mediatypes by @sipsma in #5467

What to do next?

v0.6.3 - 2023-07-04

Added

  • cache: Set default Cloud Cache URL by @marcosnils in #5343
  • engine: Add Cloud Cache token env var by @marcosnils in #5356
  • core: Improve image publish/export format compatibility by @sipsma in #5365
  • core: Send Progrock updates to Cloud by @vito in #5297

Fixed

  • core: Use include filter in host.file by @sipsma in #5345
  • cli: Fix incorrect subcommand being called by @sipsma in #5344
  • engine: Remove old Cache config env from autoprovision by @sipsma in #5355

What to do next?