diff --git a/CHANGELOG.md b/CHANGELOG.md index c7e0007..3168f36 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.0.0-beta.10] - 2022-12-02 + +### Fixed + +- Prevent key constraint error when retrying failed datums ([Issue #33](https://github.com/faradayio/falconeri/issues/33)). But see [Issue #36](https://github.com/faradayio/falconeri/issues/36); we still don't do the right thing when output files are randomly named. +- Reduce odds of birthday paradox collision when naming jobs ([Issue #35](https://github.com/faradayio/falconeri/issues/35)). + ## [1.0.0-beta.9] - 2022-10-24 ### Fixed diff --git a/Cargo.lock b/Cargo.lock index 4156c48..00ca234 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -587,7 +587,7 @@ dependencies = [ [[package]] name = "falconeri" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" dependencies = [ "base64", "crossbeam", @@ -606,7 +606,7 @@ dependencies = [ [[package]] name = "falconeri-worker" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" dependencies = [ "crossbeam", "env_logger", @@ -620,7 +620,7 @@ dependencies = [ [[package]] name = "falconeri_common" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" dependencies = [ "anyhow", "backoff", @@ -647,7 +647,7 @@ dependencies = [ [[package]] name = "falconerid" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" dependencies = [ "falconeri_common", "headers", diff --git a/falconeri-worker/Cargo.toml b/falconeri-worker/Cargo.toml index d3c59ce..ea2ff97 100644 --- a/falconeri-worker/Cargo.toml +++ b/falconeri-worker/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri-worker" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconeri/Cargo.toml b/falconeri/Cargo.toml index 711ce47..31e8b2f 100644 --- a/falconeri/Cargo.toml +++ b/falconeri/Cargo.toml @@ -1,7 +1,7 @@ [package] authors = ["Eric Kidd "] name = "falconeri" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" edition = "2018" license = "Apache-2.0 OR MIT" diff --git a/falconeri_common/Cargo.toml b/falconeri_common/Cargo.toml index 62e66fc..863cf30 100644 --- a/falconeri_common/Cargo.toml +++ b/falconeri_common/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconeri_common" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" authors = ["Eric Kidd "] edition = "2018" diff --git a/falconerid/Cargo.toml b/falconerid/Cargo.toml index e9b154b..f71b152 100644 --- a/falconerid/Cargo.toml +++ b/falconerid/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "falconerid" -version = "1.0.0-beta.9" +version = "1.0.0-beta.10" authors = ["Eric Kidd "] edition = "2018"