18 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
v0.2.10 (2023-02-20)
Alignment release
Bug Fixes
- changelog
Commit Statistics
- 7 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
- changelog (
b100285
) - Adjusting changelogs prior to release of dagger-sdk v0.2.10 (
8ed0647
) - update changelog (
09aa658
) - Adjusting changelogs prior to release of dagger-sdk v0.2.10 (
b436f27
) - Adjusting changelogs prior to release of dagger-sdk v0.2.10, dagger-rs v0.2.10 (
577a293
) - Adjusting changelogs prior to release of dagger-sdk v0.2.10, dagger-rs v0.2.10 (
76bb1fc
) - Release dagger-rs v0.2.10 (
dc3487b
)
- changelog (
v0.2.10
(577a293
)
- Adjusting changelogs prior to release of dagger-sdk v0.2.10, dagger-rs
v0.2.10
(76bb1fc
)
- Release dagger-rs v0.2.10
(
dc3487b
)
v0.2.10
(577a293
)
- Adjusting changelogs prior to release of dagger-sdk v0.2.10, dagger-rs
v0.2.10
(76bb1fc
)
- Release dagger-rs v0.2.10
(
dc3487b
)
v0.2.9 (2023-02-20)
Bug Fixes
- Fix async panic on blocking #19 Replaced internal threads with tokio spawn functions
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
v0.2.8 (2023-02-19)
New Features
- add documentation strings
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
v0.2.7 (2023-02-19)
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
- 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
v0.2.6 (2023-02-19)
Documentation
- fix readme
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
v0.2.5 (2023-02-19)
New Features
-
without Some in _opts functions Option has been removed as a wrapper around opts. This makes it much more convenient to use
client.container_opts(Some(ContainerOpts{})) // -> client.container_opts(ContainerOpts{})
The same options are still available, either an empty object can be passed, or a non _opts function can be used
-
with _opts methods Now all opt values enter into a _opts function instead of the original. This avoids a lot of verbosity for both None in the case opts are unwanted, and Some() if they actually are.
They are used like so:
client.container().from("..."); client.container_opts(Some(ContainerOpts{ ... }))
Some from opts will be removed in a future commit/pr
-
move to &str instead of String and introduce builder. This will make the api much easier to use, as we can now rely on "" instead of "".into() for normal string values.
Introduced builder as well, which makes it much easier to use *Opts, as it can handle the building of that, and get the benefits from String -> &str, as that is currently not allowed for optional values
Bug Fixes
- cargo clippy
- without phantom data
- dependencies
Commit Statistics
- 7 commits contributed to the release.
- 6 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
v0.2.4 (2023-02-19)
Bug Fixes
- readme dagger-rs -> dagger-sdk
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
v0.2.3 (2023-02-19)
New Features
- re-export through lib.rs this means that you can now use dagger_sdk::connect() instead of dagger_sdk::client::connect();
- with return result instead of unwrap
- remove unnecessary option returns
Commit Statistics
- 4 commits contributed to the release.
- 3 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
v0.2.2 (2023-02-19)
New Features
- update to dagger v0.3.12
Bug Fixes
- fixed fmt errors
Commit Statistics
- 4 commits contributed to the release.
- 2 commits were understood as conventional.
- 0 issues like '(#ID)' were seen in commit messages
Commit Details
view details
v0.2.1 (2023-02-18)
Bug Fixes
- update all dependencies
Commit Statistics
- 40 commits contributed to the release over the course of 20 calendar days.
- 1 commit was understood as conventional.
- 2 unique issues were worked on: #5, #6
Commit Details
view details
- #5
- update all dependencies (
789b0e6
)
- update all dependencies (
- #6
- feature/add impl (
4a4c03f
)
- feature/add impl (
- Uncategorized
- Release dagger-sdk v0.2.1 (
aa0c397
) - add dagger-sdk changelog (
11a5247
) - Release dagger-rs v0.2.7, dagger-sdk v0.2.1 (
20c7118
) - Adjusting changelogs prior to release of dagger-core v0.2.1, dagger-codegen v0.2.1, dagger-rs v0.2.1 (
f4a20fd
) - with actual versions (
7153c24
) - with publish (
989d5bc
) - with repo (
e5383b5
) - with wildcard version (
533b9df
) - cargo version 0.2.0 (
bec62de
) - bump version (
36b0ecd
) - document usage (
578c2a6
) - fix all clippy (
6be8482
) - add with dockerfile (
0cbd179
) - with caching (
728840c
) - add more quickstart (
59e2572
) - build the application (
d894def
) - add test-the-application (
cb9a4dd
) - with println (
d1726a0
) - unpack response (
3b5b59b
) - tested full flow initially (
7a008be
) - move code to dagger-core (
ec0d0b2
) - with selection impl default (
9f0021b
) - fix warnings (
2b49f9c
) - fix test (
03366b7
) - test marshaller (
c5dfceb
) - test marshaller (
c4ec6f0
) - implement sort by name and type (
d9b51c1
) - fix optional types for real (
26069a8
) - fix description (
f4581ba
) - with proper optional types (
f4a812a
) - set proper option type (
8549cfc
) - add fields (
496a687
) - add input_fields (
d2cddff
) - with objects (
5fef514
) - with enum (
2a1f7c3
) - with codegen output (
0bf6b0e
) - split out codegen parts (
3263f1d
) - add dagger-sdk (
9dccb83
)
- Release dagger-sdk v0.2.1 (