Justin Chadwell
Justin Chadwell
I have no idea why we didn't remove these before - they've been deprecated since https://github.com/dagger/dagger/pull/6835. They should've gone when we got rid of `pipeline` as well, but looks like...
This is kind of a bundle of various different patches all to enable "better multi-module navigation". With the incoming work in #8355, we're gonna have even more modules than we...
This works: ``` ❯ git init Initialized empty Git repository in /tmp/tmp.ypw6aewju5/.git/ ❯ git remote add origin https://github.com/dagger/dagger.git ❯ git fetch origin 261afb3353d300c82d5169b1854069a1efa15a33 ❯ git show 261afb3353d300c82d5169b1854069a1efa15a33 commit 261afb3353d300c82d5169b1854069a1efa15a33 Merge:...
Spun out of https://github.com/dagger/dagger/pull/8115#discussion_r1716905912 Currently, a default enum value might look something like: ```typescript constructor(status: Status = "INACTIVE") { ``` However, ideally we would express it as: ```typescript constructor(status: Status...
Came up as an idea when discussing with @shykes. Currently, we can use this pattern: ```go ctr = dag. Container(). From("alpine"). With(func (ctr *dagger.Container) *dagger.Container { if !dev { return...
Currently we use the secret scrubber just for the results of `withExec` - this is neccessary so we don't end up accidentally caching secrets in the output. However, this isn't...
``` Usage: ./install.sh Install: ./install.sh Install to : BIN_DIR= ./install.sh Install specified version : DAGGER_VERSION= ./install.sh Install latest nightly build: DAGGER_COMMIT=head ./install.sh Install specified nightly build : DAGGER_COMMIT= ./install.sh ```...
Fixes https://github.com/dagger/dagger/pull/8673#issuecomment-2407223417 `false` and `true` values are always decoded by gqlparser as booleans - however, this might not always be the case: a standalone value *might* potentially be decodable as...
Heya! Huge thanks for this plugin :heart: When setting `inccommand=split` (to visualize changes across an entire file), for some reason, it seems to remain empty, while other changes in the...
While doing some debugging, realized we weren't doing any disk wrapping so it was difficult to work out *which* file on disk didn't exist.