diff --git a/CHANGELOG.md b/CHANGELOG.md index 8123ffa..8071fcf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,86 @@ # Changelog +## [0.8.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.8.0...graphile_worker-v0.8.1) - 2024-12-22 + +### Other + +- *(deps)* update rust crate anyhow to 1.0.95 (#212) +- *(deps)* update rust crate syn to 2.0.91 (#211) +- *(deps)* update all non-major dependencies (#210) +- *(deps)* update rust crate thiserror to 2.0.8 (#209) +- *(deps)* update all non-major dependencies (#207) +- *(deps)* update codecov/codecov-action action to v5 +- *(deps)* update rust crate thiserror to v2 +- *(deps)* update rust crate tracing to 0.1.41 (#205) +- *(deps)* update rust crate syn to 2.0.89 (#204) +- *(deps)* update all non-major dependencies (#202) +- *(deps)* update rust crate thiserror to 1.0.69 (#201) +- *(deps)* update rust crate tokio to 1.41.1 (#200) +- *(deps)* update rust crate anyhow to 1.0.93 +- *(deps)* update rust crate thiserror to 1.0.68 +- *(deps)* update rust crate thiserror to 1.0.67 +- Improve readability of RunJobError +- *(deps)* update rust crate syn to 2.0.87 +- *(deps)* update rust crate anyhow to 1.0.92 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde to 1.0.214 +- *(deps)* update postgres docker tag to v17 +- *(deps)* update rust crate syn to 2.0.85 +- *(deps)* update all non-major dependencies +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate syn to 2.0.82 +- *(deps)* update rust crate syn to 2.0.81 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde_json to 1.0.131 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde_json to 1.0.129 +- *(deps)* update rust crate uuid to 1.11.0 +- *(deps)* update rust crate derive_builder to 0.20.2 +- *(deps)* update rust crate once_cell to 1.20.2 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate anyhow to 1.0.89 +- *(deps)* update rust crate once_cell to 1.20.0 +- *(deps)* update rust crate anyhow to 1.0.88 +- *(deps)* update rust crate getset to 0.1.3 +- *(deps)* update all non-major dependencies +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate sqlx to 0.8.2 +- *(deps)* update rust crate syn to 2.0.77 +- *(deps)* update rust crate tokio to 1.40.0 +- *(deps)* update rust crate derive_builder to 0.20.1 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde_json to 1.0.127 +- *(deps)* update rust crate quote to 1.0.37 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde to 1.0.208 +- *(deps)* update rust crate serde_json to 1.0.125 +- *(deps)* update rust crate serde to 1.0.207 +- *(deps)* update all non-major dependencies +- chore: Use assert instead of if + panic in case in concurrency equals to +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde to 1.0.205 +- *(deps)* update rust crate serde_json to 1.0.122 +- *(deps)* update rust crate serde_json to 1.0.121 +- Fix new `refining_impl_trait` lint in example +- *(deps)* update rust crate tokio to 1.39.2 +- *(deps)* update rust crate tokio to 1.39.1 +- *(deps)* update rust crate sqlx to 0.8.0 +- *(deps)* update rust crate syn to 2.0.72 +- *(deps)* update rust crate thiserror to 1.0.63 +- *(deps)* update rust crate tokio to 1.38.1 +- *(deps)* update rust crate syn to 2.0.71 +- *(deps)* update rust crate thiserror to 1.0.62 +- *(deps)* update rust crate uuid to 1.10.0 +- *(deps)* update rust crate syn to 2.0.70 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde_json to 1.0.119 +- *(deps)* update rust crate serde_json to 1.0.118 +- *(deps)* update rust crate uuid to 1.9.1 +- *(deps)* update rust crate uuid to 1.9.0 +- *(deps)* update rust crate syn to 2.0.68 +- *(deps)* update rust crate syn to 2.0.67 +- *(deps)* update rust crate tokio to 1.38.0 + ## [0.8.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.2...graphile_worker-v0.8.0) - 2024-05-29 ### Added diff --git a/Cargo.toml b/Cargo.toml index a19ff84..37348a9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker" -version = "0.8.0" +version = "0.8.1" edition = "2021" license-file = "LICENSE.md" description = "High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)" @@ -59,14 +59,14 @@ tls-rustls = [ # runtime-async-std-native-tls = ["sqlx/runtime-async-std-native-tls"] [dependencies] -graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.6", default-features = false } -graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.4" } -graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.5" } -graphile_worker_job = { path = "./crates/job", version = "0.1.2" } -graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.1" } -graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.4", default-features = false } -graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.0" } -graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" } +graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.7", default-features = false } +graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.5" } +graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.6" } +graphile_worker_job = { path = "./crates/job", version = "0.1.3" } +graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.2" } +graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.5", default-features = false } +graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.1" } +graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.3" } graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.3" } chrono = { version = "0.4.39", features = ["serde"] } futures = "0.3.31" diff --git a/crates/crontab_parser/CHANGELOG.md b/crates/crontab_parser/CHANGELOG.md index 1090240..38405ec 100644 --- a/crates/crontab_parser/CHANGELOG.md +++ b/crates/crontab_parser/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.6](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.5...graphile_worker_crontab_parser-v0.5.6) - 2024-12-22 + +### Other + +- Fix new `refining_impl_trait` lint in example + ## [0.5.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.4...graphile_worker_crontab_parser-v0.5.5) - 2024-05-28 ### Other diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index c5cd78e..28b0523 100644 --- a/crates/crontab_parser/Cargo.toml +++ b/crates/crontab_parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_crontab_parser" -version = "0.5.5" +version = "0.5.6" edition = "2021" license-file = "LICENSE.md" description = "Crontab parsing package for graphile_worker, a high performance Rust/PostgreSQL job queue" @@ -12,7 +12,7 @@ categories = [] readme = "README.md" [dependencies] -graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.4" } +graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.5" } json5 = { workspace = true } nom = { workspace = true } serde = { workspace = true } diff --git a/crates/crontab_runner/CHANGELOG.md b/crates/crontab_runner/CHANGELOG.md index c71840b..37f4edf 100644 --- a/crates/crontab_runner/CHANGELOG.md +++ b/crates/crontab_runner/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.7](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.6...graphile_worker_crontab_runner-v0.5.7) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.5.6](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.5...graphile_worker_crontab_runner-v0.5.6) - 2024-05-28 ### Other diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index 2cc35e1..5c274fa 100644 --- a/crates/crontab_runner/Cargo.toml +++ b/crates/crontab_runner/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_crontab_runner" -version = "0.5.6" +version = "0.5.7" edition = "2021" license-file = "LICENSE.md" description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue" @@ -17,8 +17,8 @@ tls-rustls = ["sqlx/tls-rustls"] tls-native-tls = ["sqlx/tls-native-tls"] [dependencies] -graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.4" } -graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.2" } +graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.5" } +graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.3" } chrono = { workspace = true } sqlx = { workspace = true } thiserror = { workspace = true } diff --git a/crates/crontab_types/CHANGELOG.md b/crates/crontab_types/CHANGELOG.md index f59cbed..e5d557b 100644 --- a/crates/crontab_types/CHANGELOG.md +++ b/crates/crontab_types/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.4...graphile_worker_crontab_types-v0.5.5) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.5.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.3...graphile_worker_crontab_types-v0.5.4) - 2024-05-28 ### Other diff --git a/crates/crontab_types/Cargo.toml b/crates/crontab_types/Cargo.toml index 72c3a7a..eae387e 100644 --- a/crates/crontab_types/Cargo.toml +++ b/crates/crontab_types/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_crontab_types" -version = "0.5.4" +version = "0.5.5" edition = "2021" license-file = "LICENSE.md" description = "Crontab types package for graphile_worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/ctx/CHANGELOG.md b/crates/ctx/CHANGELOG.md index 3291f86..68d2e2d 100644 --- a/crates/ctx/CHANGELOG.md +++ b/crates/ctx/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.2.1...graphile_worker_ctx-v0.2.2) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.2.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.2.0...graphile_worker_ctx-v0.2.1) - 2024-05-29 ### Added diff --git a/crates/ctx/Cargo.toml b/crates/ctx/Cargo.toml index d49b09c..d632b30 100644 --- a/crates/ctx/Cargo.toml +++ b/crates/ctx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_ctx" -version = "0.2.1" +version = "0.2.2" edition = "2021" license-file = "LICENSE.md" description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue" @@ -12,7 +12,7 @@ categories = [] readme = "README.md" [dependencies] -graphile_worker_job = { path = "../job", version = "0.1.2" } +graphile_worker_job = { path = "../job", version = "0.1.3" } graphile_worker_extensions = { path = "../extensions", version = "0.1.3" } getset.workspace = true serde_json.workspace = true diff --git a/crates/job/CHANGELOG.md b/crates/job/CHANGELOG.md index 59f5770..1bfe0a1 100644 --- a/crates/job/CHANGELOG.md +++ b/crates/job/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.2...graphile_worker_job-v0.1.3) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.1.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.1...graphile_worker_job-v0.1.2) - 2024-05-08 ### Other diff --git a/crates/job/Cargo.toml b/crates/job/Cargo.toml index 56d34b1..ede7c44 100644 --- a/crates/job/Cargo.toml +++ b/crates/job/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_job" -version = "0.1.2" +version = "0.1.3" edition = "2021" license-file = "LICENSE.md" description = "Job package for graphile_worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/migrations/CHANGELOG.md b/crates/migrations/CHANGELOG.md index 369c0b6..833bd35 100644 --- a/crates/migrations/CHANGELOG.md +++ b/crates/migrations/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.4.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.4...graphile_worker_migrations-v0.4.5) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.4.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.3...graphile_worker_migrations-v0.4.4) - 2024-05-28 ### Other diff --git a/crates/migrations/Cargo.toml b/crates/migrations/Cargo.toml index 1a444f6..e5e60f1 100644 --- a/crates/migrations/Cargo.toml +++ b/crates/migrations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_migrations" -version = "0.4.4" +version = "0.4.5" edition = "2021" license-file = "LICENSE.md" description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/shutdown_signal/CHANGELOG.md b/crates/shutdown_signal/CHANGELOG.md index 73d1a2f..14b3fec 100644 --- a/crates/shutdown_signal/CHANGELOG.md +++ b/crates/shutdown_signal/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.3.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.2...graphile_worker_shutdown_signal-v0.3.3) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.3.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.1...graphile_worker_shutdown_signal-v0.3.2) - 2024-05-08 ### Other diff --git a/crates/shutdown_signal/Cargo.toml b/crates/shutdown_signal/Cargo.toml index 0be449e..19060c7 100644 --- a/crates/shutdown_signal/Cargo.toml +++ b/crates/shutdown_signal/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_shutdown_signal" -version = "0.3.2" +version = "0.3.3" edition = "2021" license-file = "LICENSE.md" description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue" diff --git a/crates/task_handler/CHANGELOG.md b/crates/task_handler/CHANGELOG.md index 5d27417..5b4d17f 100644 --- a/crates/task_handler/CHANGELOG.md +++ b/crates/task_handler/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [0.5.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.5.0...graphile_worker_task_handler-v0.5.1) - 2024-12-22 + +### Other + +- update Cargo.toml dependencies + ## [0.5.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.2...graphile_worker_task_handler-v0.5.0) - 2024-05-29 ### Added diff --git a/crates/task_handler/Cargo.toml b/crates/task_handler/Cargo.toml index 5aed3b8..a83ba37 100644 --- a/crates/task_handler/Cargo.toml +++ b/crates/task_handler/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_task_handler" -version = "0.5.0" +version = "0.5.1" edition = "2021" license-file = "LICENSE.md" description = "A library to handle tasks for the Graphile Worker project" @@ -14,7 +14,7 @@ readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -graphile_worker_ctx = { path = "../ctx", version = "0.2.1" } +graphile_worker_ctx = { path = "../ctx", version = "0.2.2" } serde.workspace = true serde_json.workspace = true tokio = { workspace = true, features = ["rt", "macros"] }