diff --git a/CHANGELOG.md b/CHANGELOG.md index 9831faf..cb3e3ca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Changelog +## [0.7.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.0...graphile_worker-v0.7.1) - 2024-05-08 + +### Other +- *(deps)* update all non-major dependencies +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate tokio-util to 0.7.11 +- *(deps)* update rust crate serde to 1.0.200 +- *(deps)* update rust crate serde to 1.0.199 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde to 1.0.198 +- *(deps)* update rust crate serde_json to 1.0.116 +- *(deps)* update rust crate chrono to 0.4.38 +- *(deps)* update rust crate syn to 2.0.59 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate serde_qs to 0.13.0 +- *(deps)* update rust crate syn to 2.0.58 +- *(deps)* update rust crate syn to 2.0.57 +- *(deps)* update rust crate tokio to 1.37.0 +- *(deps)* update rust crate chrono to 0.4.37 +- *(deps)* update rust crate serde_json to 1.0.115 +- *(deps)* update rust crate syn to 2.0.55 +- *(deps)* update rust crate indoc to 2.0.5 +- *(deps)* update rust crate uuid to 1.8.0 +- *(deps)* update rust crate syn to 2.0.53 +- *(deps)* update all non-major dependencies +- *(deps)* update rust crate chrono to 0.4.35 +- *(deps)* update rust crate syn to 2.0.52 + ## [0.7.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.6.2...graphile_worker-v0.7.0) - 2024-02-28 ### Added diff --git a/Cargo.toml b/Cargo.toml index 7682365..a1e3d7f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker" -version = "0.7.0" +version = "0.7.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)" @@ -53,14 +53,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.4", default-features = false } -graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.2" } -graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.3" } -graphile_worker_job = { path = "./crates/job", version = "0.1.1" } -graphile_worker_ctx = { path = "./crates/ctx", version = "0.1.1" } -graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.2", default-features = false } -graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.0" } -graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.1" } +graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.5.5", default-features = false } +graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.3" } +graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.4" } +graphile_worker_job = { path = "./crates/job", version = "0.1.2" } +graphile_worker_ctx = { path = "./crates/ctx", version = "0.1.2" } +graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.3", default-features = false } +graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.1" } +graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" } chrono = { version = "0.4.38", features = ["serde"] } futures = "0.3.30" getset = "0.1.2" diff --git a/crates/crontab_parser/CHANGELOG.md b/crates/crontab_parser/CHANGELOG.md index bf82909..dfb1b51 100644 --- a/crates/crontab_parser/CHANGELOG.md +++ b/crates/crontab_parser/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.3...graphile_worker_crontab_parser-v0.5.4) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.5.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.2...graphile_worker_crontab_parser-v0.5.3) - 2024-02-28 ### Other diff --git a/crates/crontab_parser/Cargo.toml b/crates/crontab_parser/Cargo.toml index 28b63b4..d32fdd0 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.3" +version = "0.5.4" 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.2" } +graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.3" } json5 = { workspace = true } nom = { workspace = true } serde = { workspace = true } diff --git a/crates/crontab_runner/CHANGELOG.md b/crates/crontab_runner/CHANGELOG.md index f4ce737..0b02213 100644 --- a/crates/crontab_runner/CHANGELOG.md +++ b/crates/crontab_runner/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.4...graphile_worker_crontab_runner-v0.5.5) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.5.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.5.3...graphile_worker_crontab_runner-v0.5.4) - 2024-02-28 ### Other diff --git a/crates/crontab_runner/Cargo.toml b/crates/crontab_runner/Cargo.toml index aaef945..d7e8a99 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.4" +version = "0.5.5" 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.2" } -graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.1" } +graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.3" } +graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.2" } chrono = { workspace = true } sqlx = { workspace = true } thiserror = { workspace = true } diff --git a/crates/crontab_types/CHANGELOG.md b/crates/crontab_types/CHANGELOG.md index 814acca..4dc041e 100644 --- a/crates/crontab_types/CHANGELOG.md +++ b/crates/crontab_types/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.5.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.2...graphile_worker_crontab_types-v0.5.3) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.5.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.1...graphile_worker_crontab_types-v0.5.2) - 2024-02-28 ### Other diff --git a/crates/crontab_types/Cargo.toml b/crates/crontab_types/Cargo.toml index b339eac..63c4d32 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.2" +version = "0.5.3" 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 09e4a45..324a261 100644 --- a/crates/ctx/CHANGELOG.md +++ b/crates/ctx/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.1.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.1...graphile_worker_ctx-v0.1.2) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.1.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.0...graphile_worker_ctx-v0.1.1) - 2024-02-28 ### Other diff --git a/crates/ctx/Cargo.toml b/crates/ctx/Cargo.toml index 173dc64..7f4c7c7 100644 --- a/crates/ctx/Cargo.toml +++ b/crates/ctx/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_ctx" -version = "0.1.1" +version = "0.1.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.1" } +graphile_worker_job = { path = "../job", version = "0.1.2" } getset.workspace = true serde_json.workspace = true sqlx.workspace = true diff --git a/crates/job/CHANGELOG.md b/crates/job/CHANGELOG.md index 2c9c1bf..59f5770 100644 --- a/crates/job/CHANGELOG.md +++ b/crates/job/CHANGELOG.md @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [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 +- update Cargo.toml dependencies + ## [0.1.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.0...graphile_worker_job-v0.1.1) - 2024-02-28 ### Added diff --git a/crates/job/Cargo.toml b/crates/job/Cargo.toml index 9a4783e..56d34b1 100644 --- a/crates/job/Cargo.toml +++ b/crates/job/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_job" -version = "0.1.1" +version = "0.1.2" 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 ed03bef..c8453e2 100644 --- a/crates/migrations/CHANGELOG.md +++ b/crates/migrations/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.4.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.2...graphile_worker_migrations-v0.4.3) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.4.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.1...graphile_worker_migrations-v0.4.2) - 2024-02-14 ### Other diff --git a/crates/migrations/Cargo.toml b/crates/migrations/Cargo.toml index 5203444..b08bd14 100644 --- a/crates/migrations/Cargo.toml +++ b/crates/migrations/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "graphile_worker_migrations" -version = "0.4.2" +version = "0.4.3" 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 10e4610..73d1a2f 100644 --- a/crates/shutdown_signal/CHANGELOG.md +++ b/crates/shutdown_signal/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [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 +- update Cargo.toml dependencies + ## [0.3.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.0...graphile_worker_shutdown_signal-v0.3.1) - 2024-02-04 ### Other diff --git a/crates/shutdown_signal/Cargo.toml b/crates/shutdown_signal/Cargo.toml index cec4370..0be449e 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.1" +version = "0.3.2" 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 ab9e17c..15e1e3a 100644 --- a/crates/task_handler/CHANGELOG.md +++ b/crates/task_handler/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## [0.4.1](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.0...graphile_worker_task_handler-v0.4.1) - 2024-05-08 + +### Other +- update Cargo.toml dependencies + ## [0.4.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.3.0...graphile_worker_task_handler-v0.4.0) - 2024-02-28 ### Added diff --git a/crates/task_handler/Cargo.toml b/crates/task_handler/Cargo.toml index 1f708ef..0ae3792 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.4.0" +version = "0.4.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.1.1" } +graphile_worker_ctx = { path = "../ctx", version = "0.1.2" } serde.workspace = true serde_json.workspace = true tokio = { workspace = true, features = ["rt", "macros"] }