You've already forked go-clickhouse
mirror of
https://github.com/uptrace/go-clickhouse.git
synced 2025-07-01 00:25:06 +02:00
chore: release v0.3.1 (release.sh)
This commit is contained in:
28
CHANGELOG.md
28
CHANGELOG.md
@ -1,3 +1,31 @@
|
|||||||
|
## 0.3.1 (2023-02-16)
|
||||||
|
|
||||||
|
|
||||||
|
### Bug Fixes
|
||||||
|
|
||||||
|
* change rollback to always record migrations ([43a65a0](https://github.com/uptrace/go-clickhouse/commit/43a65a02e4ab92bceb846674092bce1a1097bafe))
|
||||||
|
* continue working with non UTC timezone ([033c413](https://github.com/uptrace/go-clickhouse/commit/033c41395a3e7cbbaa25fddc127a1e626a0032b5))
|
||||||
|
* **migrate:** upping was applying zero migrations ([e80d6d2](https://github.com/uptrace/go-clickhouse/commit/e80d6d288b98bcb415e63e31314c0fd1077af668))
|
||||||
|
* move FINAL modifier to the right place ([#52](https://github.com/uptrace/go-clickhouse/issues/52)) ([0f4c068](https://github.com/uptrace/go-clickhouse/commit/0f4c06861f4d2bf5687063a3b52cbf0c3d3b5c4d))
|
||||||
|
|
||||||
|
|
||||||
|
### Features
|
||||||
|
|
||||||
|
* add bfloat16 support ([510b9ca](https://github.com/uptrace/go-clickhouse/commit/510b9caca8b64e62f7a7b12c283be2fcb2761cc5))
|
||||||
|
* add proper Rows implementation and some optimizations ([658ad14](https://github.com/uptrace/go-clickhouse/commit/658ad14fc0f97a2e51e3a113ea7ae0fd77eb2795))
|
||||||
|
* add queries to create/drop views ([b73c8fa](https://github.com/uptrace/go-clickhouse/commit/b73c8fabf8b3292d987803fadd18744872862f53))
|
||||||
|
* add Raw ([1e8ca47](https://github.com/uptrace/go-clickhouse/commit/1e8ca4767fa9a025f87595d95837d87feada4671))
|
||||||
|
* add support for DateTime64 ([c1e00ef](https://github.com/uptrace/go-clickhouse/commit/c1e00ef235a2ebfeebd2bdec52dde9c56ae27544))
|
||||||
|
* add WithAutoCreateDatabase option ([8bf4958](https://github.com/uptrace/go-clickhouse/commit/8bf4958230da026b140f47650c6b78b733160e60))
|
||||||
|
* allow disabling compression for benchmarks ([ef26067](https://github.com/uptrace/go-clickhouse/commit/ef260678ec2acc3fb2c540f8941c4b288d915cdf))
|
||||||
|
* **chmigrate:** add WithReplicated option ([988091e](https://github.com/uptrace/go-clickhouse/commit/988091e532f120f08738f28fb8c620e086d97c41))
|
||||||
|
* close idle connections after 30 minutes ([99f247b](https://github.com/uptrace/go-clickhouse/commit/99f247ba5e188995fe8ddb39a3c54764efb98245))
|
||||||
|
* enable opentelemetry support in protocol ([76504b2](https://github.com/uptrace/go-clickhouse/commit/76504b27784c509a39885a00750fbfc1eee0d8cc))
|
||||||
|
* initial commit ([092a2db](https://github.com/uptrace/go-clickhouse/commit/092a2dbf28ca070bd6d6cc3426ecbc1d9bc02c6e))
|
||||||
|
* **migrate:** added option to only mark migration up/down as applied on success ([f559e06](https://github.com/uptrace/go-clickhouse/commit/f559e06009e8fc263fa79cf99f692522a71f61ff))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
# [0.3.0](https://github.com/uptrace/go-clickhouse/compare/v0.2.9...v0.3.0) (2023-01-21)
|
# [0.3.0](https://github.com/uptrace/go-clickhouse/compare/v0.2.9...v0.3.0) (2023-01-21)
|
||||||
|
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@ replace github.com/uptrace/go-clickhouse => ./..
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/fatih/color v1.14.1
|
github.com/fatih/color v1.14.1
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
@ -9,7 +9,7 @@ replace github.com/uptrace/go-clickhouse/chdebug => ../chdebug
|
|||||||
exclude go.opentelemetry.io/proto/otlp v0.15.0
|
exclude go.opentelemetry.io/proto/otlp v0.15.0
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
go.opentelemetry.io/otel v1.13.0
|
go.opentelemetry.io/otel v1.13.0
|
||||||
go.opentelemetry.io/otel/trace v1.13.0
|
go.opentelemetry.io/otel/trace v1.13.0
|
||||||
)
|
)
|
||||||
|
@ -7,8 +7,8 @@ replace github.com/uptrace/go-clickhouse => ../..
|
|||||||
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
github.com/uptrace/go-clickhouse/chdebug v0.3.0
|
github.com/uptrace/go-clickhouse/chdebug v0.3.1
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
@ -6,7 +6,7 @@ replace github.com/uptrace/go-clickhouse => ../..
|
|||||||
|
|
||||||
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
||||||
|
|
||||||
require github.com/uptrace/go-clickhouse v0.3.0
|
require github.com/uptrace/go-clickhouse v0.3.1
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/codemodus/kace v0.5.1 // indirect
|
github.com/codemodus/kace v0.5.1 // indirect
|
||||||
|
@ -7,8 +7,8 @@ replace github.com/uptrace/go-clickhouse => ../..
|
|||||||
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
github.com/uptrace/go-clickhouse/chdebug v0.3.0
|
github.com/uptrace/go-clickhouse/chdebug v0.3.1
|
||||||
github.com/urfave/cli/v2 v2.24.3
|
github.com/urfave/cli/v2 v2.24.3
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -12,8 +12,8 @@ exclude go.opentelemetry.io/proto/otlp v0.15.0
|
|||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/brianvoe/gofakeit/v5 v5.11.2
|
github.com/brianvoe/gofakeit/v5 v5.11.2
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
github.com/uptrace/go-clickhouse/chotel v0.3.0
|
github.com/uptrace/go-clickhouse/chotel v0.3.1
|
||||||
github.com/uptrace/opentelemetry-go-extra/otelplay v0.1.21
|
github.com/uptrace/opentelemetry-go-extra/otelplay v0.1.21
|
||||||
go.opentelemetry.io/otel v1.13.0
|
go.opentelemetry.io/otel v1.13.0
|
||||||
)
|
)
|
||||||
|
@ -7,8 +7,8 @@ replace github.com/uptrace/go-clickhouse => ../..
|
|||||||
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
replace github.com/uptrace/go-clickhouse/chdebug => ../../chdebug
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/uptrace/go-clickhouse v0.3.0
|
github.com/uptrace/go-clickhouse v0.3.1
|
||||||
github.com/uptrace/go-clickhouse/chdebug v0.3.0
|
github.com/uptrace/go-clickhouse/chdebug v0.3.1
|
||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
|
2
go.mod
2
go.mod
@ -10,7 +10,7 @@ require (
|
|||||||
github.com/jinzhu/inflection v1.0.0
|
github.com/jinzhu/inflection v1.0.0
|
||||||
github.com/pierrec/lz4/v4 v4.1.17
|
github.com/pierrec/lz4/v4 v4.1.17
|
||||||
github.com/stretchr/testify v1.8.1
|
github.com/stretchr/testify v1.8.1
|
||||||
github.com/uptrace/go-clickhouse/chdebug v0.3.0
|
github.com/uptrace/go-clickhouse/chdebug v0.3.1
|
||||||
go.opentelemetry.io/otel/trace v1.13.0
|
go.opentelemetry.io/otel/trace v1.13.0
|
||||||
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb
|
golang.org/x/exp v0.0.0-20230213192124-5e25df0256eb
|
||||||
)
|
)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "goclickhouse",
|
"name": "goclickhouse",
|
||||||
"version": "0.3.0",
|
"version": "0.3.1",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": "git@github.com:uptrace/go-clickhouse.git",
|
"repository": "git@github.com:uptrace/go-clickhouse.git",
|
||||||
"author": "Vladimir Mihailenco <vladimir.webdev@gmail.com>",
|
"author": "Vladimir Mihailenco <vladimir.webdev@gmail.com>",
|
||||||
|
@ -2,5 +2,5 @@ package clickhouse
|
|||||||
|
|
||||||
// Version is the current release version.
|
// Version is the current release version.
|
||||||
func Version() string {
|
func Version() string {
|
||||||
return "0.3.0"
|
return "0.3.1"
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user