Skip to content

Commit

Permalink
v0.46.3: hotfix flgithsql interface (missing transaction) (#164)
Browse files Browse the repository at this point in the history
  • Loading branch information
zaychenko-sergei authored Dec 21, 2024
1 parent 728cf24 commit 95c34b0
Show file tree
Hide file tree
Showing 7 changed files with 73 additions and 85 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.46.3]
### Fixed
- Regression in FlightSQL interface related to database-backed `QueryService`

## [0.46.2]
### Fixed
- Less aggressive telemetry for key dataset services, like ingestion (CLI v0.213.1)
Expand Down
78 changes: 39 additions & 39 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resolver = "2"

[workspace.dependencies]
# Utils
graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.46.2", default-features = false }
graceful-shutdown = { path = "src/utils/graceful-shutdown", version = "0.46.3", default-features = false }
# Utils (core)
container-runtime = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.213.1", version = "0.213.1", default-features = false }
database-common = { git = "https://github.com/kamu-data/kamu-cli", tag = "v0.213.1", version = "0.213.1", default-features = false }
Expand Down Expand Up @@ -64,7 +64,7 @@ kamu-task-system-sqlite = { git = "https://github.com/kamu-data/kamu-cli", tag =


[workspace.package]
version = "0.46.2"
version = "0.46.3"
edition = "2021"
homepage = "https://github.com/kamu-data/kamu-platform"
repository = "https://github.com/kamu-data/kamu-platform"
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Business Source License 1.1

Licensor: Kamu Data, Inc.

Licensed Work: Kamu Platform Version 0.46.2
Licensed Work: Kamu Platform Version 0.46.3
The Licensed Work is © 2023 Kamu Data, Inc.

Additional Use Grant: You may use the Licensed Work for any purpose,
Expand Down
27 changes: 6 additions & 21 deletions resources/openapi-mt.json
Original file line number Diff line number Diff line change
Expand Up @@ -818,7 +818,7 @@
},
"termsOfService": "https://docs.kamu.dev/terms-of-service/",
"title": "Kamu REST API",
"version": "0.46.2"
"version": "0.46.3"
},
"openapi": "3.1.0",
"paths": {
Expand Down Expand Up @@ -1091,10 +1091,7 @@
"name": "contentType",
"required": false,
"schema": {
"type": [
"string",
"null"
]
"type": "string"
}
}
],
Expand Down Expand Up @@ -1367,10 +1364,7 @@
"name": "include",
"required": false,
"schema": {
"type": [
"string",
"null"
]
"type": "string"
}
}
],
Expand Down Expand Up @@ -1825,21 +1819,15 @@
"name": "sourceName",
"required": false,
"schema": {
"type": [
"string",
"null"
]
"type": "string"
}
},
{
"in": "query",
"name": "uploadToken",
"required": false,
"schema": {
"type": [
"string",
"null"
]
"type": "string"
}
},
{
Expand Down Expand Up @@ -1909,10 +1897,7 @@
"name": "include",
"required": false,
"schema": {
"type": [
"string",
"null"
]
"type": "string"
}
},
{
Expand Down
Loading

0 comments on commit 95c34b0

Please sign in to comment.