Skip to content

Commit 1a76766

Browse files
github-actions[bot]leo91000
authored andcommitted
chore: release
1 parent 3ccc4d2 commit 1a76766

File tree

8 files changed

+34
-9
lines changed

8 files changed

+34
-9
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.8.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.2...graphile_worker-v0.8.0) - 2024-05-29
4+
5+
### Added
6+
- Introduce IntoTaskHandlerResult trait
7+
- Job stream now yield as much job as the concurrency option defines
8+
- Add get_ext() helper method on WorkerContext
9+
10+
### Other
11+
- Add app state documentation in README
12+
313
## [0.7.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker-v0.7.1...graphile_worker-v0.7.2) - 2024-05-28
414

515
### Added

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphile_worker"
3-
version = "0.7.2"
3+
version = "0.8.0"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "High performance Rust/PostgreSQL job queue (also suitable for getting jobs generated by PostgreSQL triggers/functions out into a different work queue)"
@@ -63,11 +63,11 @@ graphile_worker_crontab_runner = { path = "./crates/crontab_runner", version = "
6363
graphile_worker_crontab_types = { path = "./crates/crontab_types", version = "0.5.4" }
6464
graphile_worker_crontab_parser = { path = "./crates/crontab_parser", version = "0.5.5" }
6565
graphile_worker_job = { path = "./crates/job", version = "0.1.2" }
66-
graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.0" }
66+
graphile_worker_ctx = { path = "./crates/ctx", version = "0.2.1" }
6767
graphile_worker_migrations = { path = "./crates/migrations", version = "0.4.4", default-features = false }
68-
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.4.2" }
68+
graphile_worker_task_handler = { path = "./crates/task_handler", version = "0.5.0" }
6969
graphile_worker_shutdown_signal = { path = "./crates/shutdown_signal", version = "0.3.2" }
70-
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.2" }
70+
graphile_worker_extensions = { path = "./crates/extensions", version = "0.1.3" }
7171
chrono = { version = "0.4.38", features = ["serde"] }
7272
futures = "0.3.30"
7373
getset = "0.1.2"

crates/ctx/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [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
10+
11+
### Added
12+
- Add get_ext() helper method on WorkerContext
13+
914
## [0.2.0](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_ctx-v0.1.2...graphile_worker_ctx-v0.2.0) - 2024-05-28
1015

1116
### Added

crates/ctx/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphile_worker_ctx"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "Worker Context package for graphile_worker, a high performance Rust/PostgreSQL job queue"
@@ -13,7 +13,7 @@ readme = "README.md"
1313

1414
[dependencies]
1515
graphile_worker_job = { path = "../job", version = "0.1.2" }
16-
graphile_worker_extensions = { path = "../extensions", version = "0.1.2" }
16+
graphile_worker_extensions = { path = "../extensions", version = "0.1.3" }
1717
getset.workspace = true
1818
serde_json.workspace = true
1919
sqlx.workspace = true

crates/extensions/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [0.1.3](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_extensions-v0.1.2...graphile_worker_extensions-v0.1.3) - 2024-05-29
10+
11+
### Other
12+
- release
13+
914
## [0.1.2](https://github.com/leo91000/graphile_worker_rs/releases/tag/graphile_worker_extensions-v0.1.2) - 2024-05-28
1015

1116
### Added

crates/extensions/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphile_worker_extensions"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "Extensions package for graphile_worker, a high performance Rust/PostgreSQL job queue"

crates/task_handler/CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [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
4+
5+
### Added
6+
- Introduce IntoTaskHandlerResult trait
7+
38
## [0.4.2](https://github.com/leo91000/graphile_worker_rs/compare/graphile_worker_task_handler-v0.4.1...graphile_worker_task_handler-v0.4.2) - 2024-05-28
49

510
### Other

crates/task_handler/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "graphile_worker_task_handler"
3-
version = "0.4.2"
3+
version = "0.5.0"
44
edition = "2021"
55
license-file = "LICENSE.md"
66
description = "A library to handle tasks for the Graphile Worker project"
@@ -14,7 +14,7 @@ readme = "README.md"
1414
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1515

1616
[dependencies]
17-
graphile_worker_ctx = { path = "../ctx", version = "0.2.0" }
17+
graphile_worker_ctx = { path = "../ctx", version = "0.2.1" }
1818
serde.workspace = true
1919
serde_json.workspace = true
2020
tokio = { workspace = true, features = ["rt", "macros"] }

0 commit comments

Comments
 (0)