Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update SDK versions #164

Merged
merged 1 commit into from
Jan 28, 2025
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
2 changes: 1 addition & 1 deletion go/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ const sdkVersionHeaderName = "x-cx-sdk-version"
const sdkLanguageHeaderName = "x-cx-sdk-language"
const sdkGoVersionHeaderName = "x-cx-go-version"
const sdkCorrelationIDHeaderName = "x-cx-correlation-id"
const vanillaSdkVersion = "1.1.0"
const vanillaSdkVersion = "1.1.2"
4 changes: 2 additions & 2 deletions go/dashboards-client.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ type Dashboard = dashboards.Dashboard
// RowStyle is a style for a row.
type RowStyle = dashboards.RowStyle

// PromQlQueryType is a type for promql query.
// PromQLQueryType is a type for promql query.
type PromQLQueryType = dashboards.PromQLQueryType

// PromQlQueryType values.
// PromQLQueryType values.
const (
PromQLQueryTypeInstant = dashboards.PromQLQueryType_PROM_QL_QUERY_TYPE_INSTANT
PromQLQueryTypeRange = dashboards.PromQLQueryType_PROM_QL_QUERY_TYPE_RANGE
Expand Down
4 changes: 2 additions & 2 deletions rust/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 rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ resolver = "2"


[workspace.package]
version = "1.1.0"
version = "1.1.2"
license = "Apache-2.0"
edition = "2021"
repository = "https://github.com/coralogix/coralogix-management-sdk"
Expand Down Expand Up @@ -48,5 +48,5 @@ serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
bytes = "1.6"
reqwest = { version = "0.12", features = ["json"] }
cx-api = { version = "1.1.0", path = "cx-api" }
cx-api = { version = "1.1.2", path = "cx-api" }
uuid = { version = "1.10", features = ["v4", "fast-rng"] }
Loading