Skip to content
Merged
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
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,12 @@ All notable changes to taskito are documented here. The format is based on
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). All SDKs (Python, Node, Java) and the
underlying Rust crates are released together, in lock-step.

## Unreleased
## 0.18.0

Reliability and storage release: Postgres dequeues with `SKIP LOCKED`, crashed workers'
in-flight jobs are recovered within ~30s instead of waiting their full timeout, and the
dead-letter and filter paths are indexed. The internal `job_payloads` side table was removed
(payloads inline again). No public API or wire-format change.

### Changed

Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/taskito-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-core"
version = "0.17.0"
version = "0.18.0"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/taskito-java/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-java"
version = "0.17.0"
version = "0.18.0"
edition = "2021"
description = "Java (JNI) bindings for the Taskito task-queue core"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/taskito-mesh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-mesh"
version = "0.17.0"
version = "0.18.0"
edition = "2021"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/taskito-node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-node"
version = "0.17.0"
version = "0.18.0"
edition = "2021"
description = "Node.js (napi-rs) bindings for the Taskito task-queue core"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion crates/taskito-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-python"
version = "0.17.0"
version = "0.18.0"
edition = "2021"

[features]
Expand Down
2 changes: 1 addition & 1 deletion crates/taskito-workflows/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "taskito-workflows"
version = "0.17.0"
version = "0.18.0"
edition = "2021"

[features]
Expand Down
7 changes: 6 additions & 1 deletion docs/content/docs/resources/changelog.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,12 @@ All notable changes to taskito are documented here. The format is based on
[Semantic Versioning](https://semver.org/spec/v2.0.0.html). All SDKs (Python, Node, Java) and the
underlying Rust crates are released together, in lock-step.

## Unreleased
## 0.18.0

Reliability and storage release: Postgres dequeues with `SKIP LOCKED`, crashed workers'
in-flight jobs are recovered within ~30s instead of waiting their full timeout, and the
dead-letter and filter paths are indexed. The internal `job_payloads` side table was removed
(payloads inline again). No public API or wire-format change.

### Changed

Expand Down
2 changes: 1 addition & 1 deletion sdks/java/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.byteveda"
version = "0.17.0"
version = "0.18.0"

java {
// Sources + javadoc jars are added by the maven-publish plugin below.
Expand Down
2 changes: 1 addition & 1 deletion sdks/java/graalvm-smoke/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ plugins {
}

group = "org.byteveda"
version = "0.17.0"
version = "0.18.0"

repositories {
mavenCentral()
Expand Down
2 changes: 1 addition & 1 deletion sdks/java/processor/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.byteveda"
version = "0.17.0"
version = "0.18.0"

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
2 changes: 1 addition & 1 deletion sdks/java/test-support/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ plugins {
}

group = "org.byteveda"
version = "0.17.0"
version = "0.18.0"

java {
sourceCompatibility = JavaVersion.VERSION_11
Expand Down
2 changes: 1 addition & 1 deletion sdks/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@byteveda/taskito",
"version": "0.17.0",
"version": "0.18.0",
"description": "Rust-powered task queue for Node.js — no broker required.",
"license": "MIT",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "taskito"
version = "0.17.0"
version = "0.18.0"
description = "Rust-powered task queue for Python. No broker required."
requires-python = ">=3.10"
license = { file = "LICENSE" }
Expand Down
2 changes: 1 addition & 1 deletion sdks/python/taskito/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,4 +122,4 @@

__version__ = _get_version("taskito")
except PackageNotFoundError:
__version__ = "0.17.0"
__version__ = "0.18.0"
Loading