Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# Changelog

## [0.11.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.11.4...graphile_worker-v0.11.5) - 2026-03-27

### Fixed

- update rand trait imports for 0.10

### Other

- *(deps)* update rust crate uuid to 1.23.0 ([#392](https://github.com/leo91000/graphile_worker_rs/pull/392))
- *(deps)* update rust crate serde_qs to 1.1.0 ([#391](https://github.com/leo91000/graphile_worker_rs/pull/391))
- *(deps)* update rust crate tracing-subscriber to 0.3.23 ([#390](https://github.com/leo91000/graphile_worker_rs/pull/390))
- *(deps)* update rust crate once_cell to 1.21.4 ([#389](https://github.com/leo91000/graphile_worker_rs/pull/389))
- *(deps)* update rust crate uuid to 1.22.0 ([#388](https://github.com/leo91000/graphile_worker_rs/pull/388))
- *(deps)* update rust crate quote to 1.0.45 ([#387](https://github.com/leo91000/graphile_worker_rs/pull/387))
- *(deps)* update rust crate tokio to 1.50.0 ([#386](https://github.com/leo91000/graphile_worker_rs/pull/386))
- *(deps)* update all non-major dependencies
- Update LICENSE.md

## [0.11.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.11.3...graphile_worker-v0.11.4) - 2026-02-25

### Fixed
Expand Down
24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker"
version = "0.11.4"
version = "0.11.5"
edition = "2021"
license = "MIT"
description = "High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)"
Expand Down Expand Up @@ -67,18 +67,18 @@ opentelemetry_0_31 = [
# runtime-async-std-native-tls = ["sqlx/runtime-async-std-native-tls"]

[dependencies]
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.7.4", default-features = false }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.14" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.18" }
graphile_worker_job = { path = "./crates/job", version = "0.1.12" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.4.2" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.14", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.14" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.11" }
graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "0.7.5", default-features = false }
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.15" }
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.19" }
graphile_worker_job = { path = "./crates/job", version = "0.1.13" }
graphile_worker_ctx = { path = "./crates/ctx", version = "0.4.3" }
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.15", default-features = false }
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.15" }
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.12" }
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.6" }
graphile_worker_lifecycle_hooks = { path = "./crates/lifecycle_hooks", version = "0.2.5" }
graphile_worker_job_spec = { path = "./crates/job_spec", version = "0.1.2" }
graphile_worker_task_details = { path = "./crates/task_details", version = "0.1.2" }
graphile_worker_lifecycle_hooks = { path = "./crates/lifecycle_hooks", version = "0.2.6" }
graphile_worker_job_spec = { path = "./crates/job_spec", version = "0.1.3" }
graphile_worker_task_details = { path = "./crates/task_details", version = "0.1.3" }
chrono = { version = "0.4.44", features = ["serde"] }
futures = "0.3.32"
getset = "0.1.6"
Expand Down
6 changes: 6 additions & 0 deletions crates/crontab_parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.5.19](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.18...graphile_worker_crontab_parser-v0.5.19) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.5.18](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_parser-v0.5.17...graphile_worker_crontab_parser-v0.5.18) - 2026-02-25

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/crontab_parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_crontab_parser"
version = "0.5.18"
version = "0.5.19"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab parsing package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -12,7 +12,7 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.14" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.15" }
json5 = { workspace = true }
nom = { workspace = true }
serde = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/crontab_runner/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.7.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.7.4...graphile_worker_crontab_runner-v0.7.5) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.7.4](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_runner-v0.7.3...graphile_worker_crontab_runner-v0.7.4) - 2026-02-25

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions crates/crontab_runner/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_crontab_runner"
version = "0.7.4"
version = "0.7.5"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab runner package for graphile worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -17,9 +17,9 @@ tls-rustls = ["sqlx/tls-rustls"]
tls-native-tls = ["sqlx/tls-native-tls"]

[dependencies]
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.14" }
graphile_worker_lifecycle_hooks = { path = "../lifecycle_hooks", version = "0.2.5" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.11" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.15" }
graphile_worker_lifecycle_hooks = { path = "../lifecycle_hooks", version = "0.2.6" }
graphile_worker_shutdown_signal = { path = "../shutdown_signal", version = "0.3.12" }
chrono = { workspace = true }
sqlx = { workspace = true }
thiserror = { workspace = true }
Expand Down
6 changes: 6 additions & 0 deletions crates/crontab_types/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.5.15](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.14...graphile_worker_crontab_types-v0.5.15) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.5.14](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_crontab_types-v0.5.13...graphile_worker_crontab_types-v0.5.14) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/crontab_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_crontab_types"
version = "0.5.14"
version = "0.5.15"
edition = "2021"
license-file = "LICENSE.md"
description = "Crontab types package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
6 changes: 6 additions & 0 deletions crates/ctx/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.4.2...graphile_worker_ctx-v0.4.3) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.4.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.4.1...graphile_worker_ctx-v0.4.2) - 2026-02-25

### Fixed
Expand Down
6 changes: 3 additions & 3 deletions crates/ctx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_ctx"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
license-file = "LICENSE.md"
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -12,9 +12,9 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_job = { path = "../job", version = "0.1.12" }
graphile_worker_job = { path = "../job", version = "0.1.13" }
graphile_worker_extensions = { path = "../extensions", version = "0.1.6" }
graphile_worker_task_details = { path = "../task_details", version = "0.1.2" }
graphile_worker_task_details = { path = "../task_details", version = "0.1.3" }
derive_builder.workspace = true
getset.workspace = true
serde_json.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/job/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.13](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.12...graphile_worker_job-v0.1.13) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.1.12](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job-v0.1.11...graphile_worker_job-v0.1.12) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/job/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_job"
version = "0.1.12"
version = "0.1.13"
edition = "2021"
license-file = "LICENSE.md"
description = "Job package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
6 changes: 6 additions & 0 deletions crates/job_spec/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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_spec-v0.1.2...graphile_worker_job_spec-v0.1.3) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.1.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_job_spec-v0.1.1...graphile_worker_job_spec-v0.1.2) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/job_spec/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_job_spec"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license-file = "LICENSE.md"
description = "Job specification types for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
6 changes: 6 additions & 0 deletions crates/lifecycle_hooks/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.2.6](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_lifecycle_hooks-v0.2.5...graphile_worker_lifecycle_hooks-v0.2.6) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.2.5](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_lifecycle_hooks-v0.2.4...graphile_worker_lifecycle_hooks-v0.2.5) - 2026-02-25

### Fixed
Expand Down
8 changes: 4 additions & 4 deletions crates/lifecycle_hooks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_lifecycle_hooks"
version = "0.2.5"
version = "0.2.6"
edition = "2021"
license-file = "LICENSE.md"
description = "Lifecycle hooks for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand All @@ -12,10 +12,10 @@ categories = []
readme = "README.md"

[dependencies]
graphile_worker_job = { path = "../job", version = "0.1.12" }
graphile_worker_job = { path = "../job", version = "0.1.13" }
graphile_worker_extensions = { path = "../extensions", version = "0.1.6" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.14" }
graphile_worker_job_spec = { path = "../job_spec", version = "0.1.2" }
graphile_worker_crontab_types = { path = "../crontab_types", version = "0.5.15" }
graphile_worker_job_spec = { path = "../job_spec", version = "0.1.3" }
chrono.workspace = true
serde_json.workspace = true
sqlx.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/migrations/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.4.15](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.14...graphile_worker_migrations-v0.4.15) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.4.14](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_migrations-v0.4.13...graphile_worker_migrations-v0.4.14) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/migrations/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_migrations"
version = "0.4.14"
version = "0.4.15"
edition = "2021"
license-file = "LICENSE.md"
description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
6 changes: 6 additions & 0 deletions crates/shutdown_signal/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.3.12](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.11...graphile_worker_shutdown_signal-v0.3.12) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.3.11](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_shutdown_signal-v0.3.10...graphile_worker_shutdown_signal-v0.3.11) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/shutdown_signal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_shutdown_signal"
version = "0.3.11"
version = "0.3.12"
edition = "2021"
license-file = "LICENSE.md"
description = "Migrations package for graphile_worker, a high performance Rust/PostgreSQL job queue"
Expand Down
6 changes: 6 additions & 0 deletions crates/task_details/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,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_task_details-v0.1.2...graphile_worker_task_details-v0.1.3) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.1.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_details-v0.1.1...graphile_worker_task_details-v0.1.2) - 2026-02-25

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion crates/task_details/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_task_details"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
license-file = "LICENSE.md"
description = "Task details for graphile_worker, mapping task IDs to identifiers"
Expand Down
6 changes: 6 additions & 0 deletions crates/task_handler/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## [0.5.15](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.5.14...graphile_worker_task_handler-v0.5.15) - 2026-03-27

### Other

- update Cargo.toml dependencies

## [0.5.14](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.5.13...graphile_worker_task_handler-v0.5.14) - 2026-02-25

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions crates/task_handler/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "graphile_worker_task_handler"
version = "0.5.14"
version = "0.5.15"
edition = "2021"
license-file = "LICENSE.md"
description = "A library to handle tasks for the Graphile Worker project"
Expand All @@ -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.4.2" }
graphile_worker_ctx = { path = "../ctx", version = "0.4.3" }
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["rt", "macros"] }
Expand Down