From ef33a4330b85b99621b5059a91070974ee1e258e Mon Sep 17 00:00:00 2001 From: rmn-boiko Date: Thu, 9 Jan 2025 14:42:13 +0100 Subject: [PATCH] Add missing injection --- CHANGELOG.md | 4 ++++ Cargo.lock | 8 ++++---- Cargo.toml | 4 ++-- LICENSE.txt | 2 +- resources/openapi-mt.json | 2 +- resources/openapi.json | 2 +- src/app/api-server/src/app.rs | 1 + 7 files changed, 14 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b183dcb7..6a8ed833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. 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). +## [0.50.1] - 2024-01-09 +### Changed +- Add missing `RemoteStatusServiceImpl` service to catalog (kamu CLI `0.217.1`) + ## [0.50.0] - 2024-01-09 ### Changed - Env var and flow API changes (kamu CLI `0.217.0`) diff --git a/Cargo.lock b/Cargo.lock index e02620f9..f1797a80 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4001,7 +4001,7 @@ checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2" [[package]] name = "graceful-shutdown" -version = "0.50.0" +version = "0.50.1" dependencies = [ "tokio", "tracing", @@ -5224,7 +5224,7 @@ dependencies = [ [[package]] name = "kamu-api-server" -version = "0.50.0" +version = "0.50.1" dependencies = [ "arrow-flight", "async-graphql", @@ -5708,7 +5708,7 @@ dependencies = [ [[package]] name = "kamu-oracle-provider" -version = "0.50.0" +version = "0.50.1" dependencies = [ "alloy", "async-trait", @@ -5743,7 +5743,7 @@ dependencies = [ [[package]] name = "kamu-repo-tools" -version = "0.50.0" +version = "0.50.1" dependencies = [ "chrono", "clap", diff --git a/Cargo.toml b/Cargo.toml index 6cc81579..ed0fdaa2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -12,7 +12,7 @@ resolver = "2" [workspace.dependencies] # Utils -graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.50.0", default-features = false } +graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.50.1", default-features = false } # Utils (core) container-runtime = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.217.0", version = "0.217.0", default-features = false } database-common = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.217.0", version = "0.217.0", default-features = false } @@ -64,7 +64,7 @@ kamu-task-system-sqlite = { git = "https://github.com/kamu-data/kamu-cli", tag = [workspace.package] -version = "0.50.0" +version = "0.50.1" edition = "2021" homepage = "https://github.com/kamu-data/kamu-platform" repository = "https://github.com/kamu-data/kamu-platform" diff --git a/LICENSE.txt b/LICENSE.txt index b4f52c9c..a4a84c2d 100644 --- a/LICENSE.txt +++ b/LICENSE.txt @@ -11,7 +11,7 @@ Business Source License 1.1 Licensor: Kamu Data, Inc. -Licensed Work: Kamu Platform Version 0.50.0 +Licensed Work: Kamu Platform Version 0.50.1 The Licensed Work is © 2023 Kamu Data, Inc. Additional Use Grant: You may use the Licensed Work for any purpose, diff --git a/resources/openapi-mt.json b/resources/openapi-mt.json index 0c7f098a..42121ed3 100644 --- a/resources/openapi-mt.json +++ b/resources/openapi-mt.json @@ -818,7 +818,7 @@ }, "termsOfService": "https://docs.kamu.dev/terms-of-service/", "title": "Kamu REST API", - "version": "0.50.0" + "version": "0.50.1" }, "openapi": "3.1.0", "paths": { diff --git a/resources/openapi.json b/resources/openapi.json index 6298916c..38ad2bb6 100644 --- a/resources/openapi.json +++ b/resources/openapi.json @@ -818,7 +818,7 @@ }, "termsOfService": "https://docs.kamu.dev/terms-of-service/", "title": "Kamu REST API", - "version": "0.50.0" + "version": "0.50.1" }, "openapi": "3.1.0", "paths": { diff --git a/src/app/api-server/src/app.rs b/src/app/api-server/src/app.rs index 1ae776e9..966a16e6 100644 --- a/src/app/api-server/src/app.rs +++ b/src/app/api-server/src/app.rs @@ -361,6 +361,7 @@ pub async fn init_dependencies( b.add::(); b.add::(); b.add::(); + b.add::(); b.add::(); b.add::();