This repository was archived by the owner on Apr 2, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 65
65
restore-keys : |
66
66
${{ runner.os }}-go-
67
67
68
- - name : Test
69
- run : make test
70
-
71
68
- name : Test extended dataset
72
69
run : go test -v -race -timeout=30m ./pkg/tests/end_to_end_tests/ -extended-test
Original file line number Diff line number Diff line change @@ -15,7 +15,10 @@ We use the following categories for changes:
15
15
16
16
## Unreleased
17
17
18
+ ## [ 0.16.0] - 2022-10-20
19
+
18
20
### Added
21
+ - Integration tests to qualify as certified Jaeger remote storage [ #1686 ]
19
22
20
23
### Changed
21
24
@@ -26,8 +29,8 @@ We use the following categories for changes:
26
29
references in Jaeger) for traces with more than one event and one link.
27
30
- Fix incorrect reference types when retrieving Jaeger traces with multiple
28
31
parent references [ #1681 ] .
29
- - Fix incorrect population of span kind field in jaeger getOperations response [ #162
30
- ]
32
+ - Fix incorrect population of span kind field in jaeger getOperations response [ #1686 ]
33
+ - Improved query performance when getting trace by id [ # 1626 ]
31
34
32
35
## [ 0.15.0] - 2022-10-11
33
36
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ LOCAL_DOCKER_BASE := local/dev_promscale_extension
4
4
GHCR_DOCKER_BASE := ghcr.io/timescale/dev_promscale_extension
5
5
MDOX_BIN =mdox
6
6
MDOX_VALIDATE_CONFIG =
7
- CURRENT_BRANCH? =$(shell git branch --show-current | sed 's#/#-#' )
7
+ CURRENT_BRANCH? =$(shell git rev-parse --abbrev-ref HEAD )
8
8
EXTENSION_VERSION =$(shell cat EXTENSION_VERSION | tr -d '[:space:]')
9
9
10
10
@@ -31,7 +31,6 @@ pkg/tests/testdata/traces-dataset.sz:
31
31
e2e : DOCKER_IMAGE?=$(shell ./scripts/fallback-docker.sh $(LOCAL_DOCKER_BASE ) :head-ts2-pg14 $(GHCR_DOCKER_BASE ) :$(CURRENT_BRANCH ) -ts2-pg14 $(GHCR_DOCKER_BASE ) :$(EXTENSION_VERSION ) -ts2-pg14)
32
32
e2e : pkg/tests/testdata/traces-dataset.sz generate
33
33
go test -v ./pkg/tests/end_to_end_tests/ -timescale-docker-image=$(DOCKER_IMAGE )
34
- go test -v ./pkg/tests/end_to_end_tests/ -use-timescaledb=false -timescale-docker-image=$(DOCKER_IMAGE )
35
34
# TODO: Skipping multinode because tests are broken for now
36
35
# go test -v ./pkg/tests/end_to_end_tests/ -use-multinode -timescale-docker-image=$(DOCKER_IMAGE)
37
36
Original file line number Diff line number Diff line change 38
38
// It is customary to bump the version by incrementing the numeral after
39
39
// the `dev` tag. The SQL migration script name must correspond to the /new/ version.
40
40
41
- Promscale = "0.16.0-dev "
41
+ Promscale = "0.16.0"
42
42
PrevReleaseVersion = "0.15.0"
43
43
CommitHash = "" // Comes from -ldflags settings
44
44
Branch = "" // Comes from -ldflags settings
You can’t perform that action at this time.
0 commit comments