Skip to content
This repository has been archived by the owner on Jun 29, 2023. It is now read-only.

Releases: kjuulh/dagger-sdk

dagger-core v0.2.6

20 Feb 11:09
7179f8b
Compare
Choose a tag to compare

Chore

  • ran clippy

Bug Fixes

  • cli session keep session alive

Commit Statistics

  • 2 commits contributed to the release.
  • 2 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized

dagger-core v0.2.5

20 Feb 10:43
1725c51
Compare
Choose a tag to compare

Bug Fixes

  • race condition in process

Commit Statistics

  • 1 commit contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • race condition in process (a13a2a9)

dagger-core v0.2.4

20 Feb 09:49
f869e57
Compare
Choose a tag to compare

Bug Fixes

  • remove blocking
  • remove blocking

Commit Statistics

  • 3 commits contributed to the release.
  • 2 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • remove blocking (921e61b)
    • Release dagger-core v0.2.4, dagger-codegen v0.2.6, dagger-sdk v0.2.11 (17ec62a)
    • remove blocking (8385aa8)

dagger-core v0.2.3

20 Feb 09:22
82de43a
Compare
Choose a tag to compare

Bug Fixes

  • Fix async panic on blocking #19
    Replaced internal threads with tokio spawn functions

Commit Statistics

  • 1 commit contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized

dagger-codegen v0.2.7

20 Feb 11:09
7179f8b
Compare
Choose a tag to compare

Bug Fixes

  • race condition in process

Commit Statistics

  • 2 commits contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • Release dagger-core v0.2.5, dagger-sdk v0.2.12, dagger-codegen v0.2.7 (1725c51)
    • race condition in process (a13a2a9)

dagger-codegen v0.2.6

20 Feb 09:49
f869e57
Compare
Choose a tag to compare

Chore

  • ran clippy

Commit Statistics

  • 2 commits contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • Release dagger-core v0.2.4, dagger-codegen v0.2.6, dagger-sdk v0.2.11 (17ec62a)
    • ran clippy (803cfc4)

v0.2.9

19 Feb 14:31
9235030
Compare
Choose a tag to compare

New Features

  • re-export through lib.rs
    this means that you can now use dagger_sdk::connect() instead of
    dagger_sdk::client::connect();

Commit Statistics

  • 1 commit contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • re-export through lib.rs (19ed6c2)

v0.2.8

19 Feb 11:28
1638f15
Compare
Choose a tag to compare

New Features

  • with sccache

Commit Statistics

  • 2 commits contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details

dagger-sdk v0.2.8

19 Feb 21:44
0499024
Compare
Choose a tag to compare

New Features

  • add documentation strings

Commit Statistics

  • 1 commit contributed to the release.
  • 1 commit was understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • add documentation strings (978ede6)

dagger-sdk v0.2.7

19 Feb 20:49
a1887af
Compare
Choose a tag to compare

Documentation

  • change to await syntax

New Features

  • Use async runtime instead of blocking.
    Default to using async runtime instead of blocking. I.e.

    fn main() -> eyre::Result<()> {
      // ...
    
      client.container().from("rust").publish("somewhere")?;
    
      // ...
    }
    
    // to
    
    async fn main() -> eyre::Result<()> {
      // ...
    
      client.container().from("rust").publish("somewhere").await?;
    
      // ...
    }

Commit Statistics

  • 2 commits contributed to the release.
  • 2 commits were understood as conventional.
  • 0 issues like '(#ID)' were seen in commit messages

Commit Details

view details
  • Uncategorized
    • change to await syntax (93f40b3)
    • Use async runtime instead of blocking. (9be6f43)