diff --git a/CHANGELOG.md b/CHANGELOG.md index e47421f4..79af24cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] + + +## [[0.13.4]](https://github.com/thoth-pub/thoth/releases/tag/v0.13.4) - 2024-12-11 ### Added - - Implement caching errors in export API + - [661](https://github.com/thoth-pub/thoth/pull/661) - Implement caching errors in export API ## [[0.13.3]](https://github.com/thoth-pub/thoth/releases/tag/v0.13.3) - 2024-12-02 ### Changed diff --git a/Cargo.lock b/Cargo.lock index a4352968..95e3e3ec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3459,7 +3459,7 @@ dependencies = [ [[package]] name = "thoth" -version = "0.13.3" +version = "0.13.4" dependencies = [ "clap", "dialoguer", @@ -3473,7 +3473,7 @@ dependencies = [ [[package]] name = "thoth-api" -version = "0.13.3" +version = "0.13.4" dependencies = [ "actix-web", "argon2rs", @@ -3502,7 +3502,7 @@ dependencies = [ [[package]] name = "thoth-api-server" -version = "0.13.3" +version = "0.13.4" dependencies = [ "actix-cors", "actix-http", @@ -3520,7 +3520,7 @@ dependencies = [ [[package]] name = "thoth-app" -version = "0.13.3" +version = "0.13.4" dependencies = [ "chrono", "dotenv", @@ -3545,7 +3545,7 @@ dependencies = [ [[package]] name = "thoth-app-server" -version = "0.13.3" +version = "0.13.4" dependencies = [ "actix-cors", "actix-web", @@ -3555,7 +3555,7 @@ dependencies = [ [[package]] name = "thoth-client" -version = "0.13.3" +version = "0.13.4" dependencies = [ "chrono", "graphql_client", @@ -3571,7 +3571,7 @@ dependencies = [ [[package]] name = "thoth-errors" -version = "0.13.3" +version = "0.13.4" dependencies = [ "actix-web", "chrono", @@ -3594,7 +3594,7 @@ dependencies = [ [[package]] name = "thoth-export-server" -version = "0.13.3" +version = "0.13.4" dependencies = [ "actix-cors", "actix-web", diff --git a/Cargo.toml b/Cargo.toml index 71cf6e67..a7c2cb5b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -15,11 +15,11 @@ maintenance = { status = "actively-developed" } members = ["thoth-api", "thoth-api-server", "thoth-app", "thoth-app-server", "thoth-client", "thoth-errors", "thoth-export-server"] [dependencies] -thoth-api = { version = "=0.13.3", path = "thoth-api", features = ["backend"] } -thoth-api-server = { version = "=0.13.3", path = "thoth-api-server" } -thoth-app-server = { version = "=0.13.3", path = "thoth-app-server" } -thoth-errors = { version = "=0.13.3", path = "thoth-errors" } -thoth-export-server = { version = "=0.13.3", path = "thoth-export-server" } +thoth-api = { version = "=0.13.4", path = "thoth-api", features = ["backend"] } +thoth-api-server = { version = "=0.13.4", path = "thoth-api-server" } +thoth-app-server = { version = "=0.13.4", path = "thoth-app-server" } +thoth-errors = { version = "=0.13.4", path = "thoth-errors" } +thoth-export-server = { version = "=0.13.4", path = "thoth-export-server" } clap = { version = "4.5.21", features = ["cargo", "env"] } dialoguer = { version = "0.11.0", features = ["password"] } dotenv = "0.15.0" diff --git a/thoth-api-server/Cargo.toml b/thoth-api-server/Cargo.toml index 7f28b883..f3ccc6d8 100644 --- a/thoth-api-server/Cargo.toml +++ b/thoth-api-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api-server" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -9,8 +9,8 @@ repository = "https://github.com/thoth-pub/thoth" readme = "README.md" [dependencies] -thoth-api = { version = "=0.13.3", path = "../thoth-api", features = ["backend"] } -thoth-errors = { version = "=0.13.3", path = "../thoth-errors" } +thoth-api = { version = "=0.13.4", path = "../thoth-api", features = ["backend"] } +thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } actix-web = "4.9" actix-cors = "0.7.0" actix-http = "3.9.0" diff --git a/thoth-api/Cargo.toml b/thoth-api/Cargo.toml index 6223db1b..3173979a 100644 --- a/thoth-api/Cargo.toml +++ b/thoth-api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-api" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -15,7 +15,7 @@ maintenance = { status = "actively-developed" } backend = ["diesel", "diesel-derive-enum", "diesel_migrations", "futures", "actix-web", "jsonwebtoken", "deadpool-redis"] [dependencies] -thoth-errors = { version = "=0.13.3", path = "../thoth-errors" } +thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } actix-web = { version = "4.9", optional = true } argon2rs = "0.2.5" isbn2 = "0.4.0" diff --git a/thoth-app-server/Cargo.toml b/thoth-app-server/Cargo.toml index aded1c0d..703edbd4 100644 --- a/thoth-app-server/Cargo.toml +++ b/thoth-app-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app-server" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" diff --git a/thoth-app/Cargo.toml b/thoth-app/Cargo.toml index 0ed15267..025145ca 100644 --- a/thoth-app/Cargo.toml +++ b/thoth-app/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-app" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -29,8 +29,8 @@ semver = "1.0.23" serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.11.0", features = ["serde", "v4", "js"] } -thoth-api = { version = "=0.13.3", path = "../thoth-api" } -thoth-errors = { version = "=0.13.3", path = "../thoth-errors" } +thoth-api = { version = "=0.13.4", path = "../thoth-api" } +thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } [build-dependencies] dotenv = "0.15.0" diff --git a/thoth-client/Cargo.toml b/thoth-client/Cargo.toml index 9a5639e8..cc338b30 100644 --- a/thoth-client/Cargo.toml +++ b/thoth-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-client" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -10,8 +10,8 @@ readme = "README.md" build = "build.rs" [dependencies] -thoth-api = {version = "=0.13.3", path = "../thoth-api" } -thoth-errors = {version = "=0.13.3", path = "../thoth-errors" } +thoth-api = {version = "=0.13.4", path = "../thoth-api" } +thoth-errors = {version = "=0.13.4", path = "../thoth-errors" } graphql_client = "0.14.0" chrono = { version = "0.4.38", features = ["serde"] } reqwest = { version = "0.12", features = ["json"] } @@ -22,4 +22,4 @@ serde_json = "1.0" uuid = { version = "1.11.0", features = ["serde"] } [build-dependencies] -thoth-api = { version = "=0.13.3", path = "../thoth-api", features = ["backend"] } +thoth-api = { version = "=0.13.4", path = "../thoth-api", features = ["backend"] } diff --git a/thoth-errors/Cargo.toml b/thoth-errors/Cargo.toml index 6e3a19c0..ea64f255 100644 --- a/thoth-errors/Cargo.toml +++ b/thoth-errors/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-errors" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" diff --git a/thoth-export-server/Cargo.toml b/thoth-export-server/Cargo.toml index e5cffdb6..5aa215fa 100644 --- a/thoth-export-server/Cargo.toml +++ b/thoth-export-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thoth-export-server" -version = "0.13.3" +version = "0.13.4" authors = ["Javier Arias ", "Ross Higman "] edition = "2021" license = "Apache-2.0" @@ -10,9 +10,9 @@ readme = "README.md" build = "build.rs" [dependencies] -thoth-api = { version = "=0.13.3", path = "../thoth-api" } -thoth-errors = { version = "=0.13.3", path = "../thoth-errors" } -thoth-client = { version = "=0.13.3", path = "../thoth-client" } +thoth-api = { version = "=0.13.4", path = "../thoth-api" } +thoth-errors = { version = "=0.13.4", path = "../thoth-errors" } +thoth-client = { version = "=0.13.4", path = "../thoth-client" } actix-web = "4.9" actix-cors = "0.7.0" cc_license = "0.1.0"