Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

Commit

Permalink
Prepare for the 0.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
niksajakovljevic committed Jun 21, 2022
1 parent 84a1d9d commit 949fa37
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 23 deletions.
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ archives:
format: binary
builds:
- prom-migrator
name_template: "{{ .Binary }}_0.0.3_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
name_template: "{{ .Binary }}_0.0.4_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}{{ if .Mips }}_{{ .Mips }}{{ end }}"
replacements:
darwin: Darwin
linux: Linux
Expand Down Expand Up @@ -165,7 +165,7 @@ dockers:
- pkg
- migration-tool
image_templates:
- "timescale/prom-migrator:0.0.3"
- "timescale/prom-migrator:0.0.4"
- "timescale/prom-migrator:latest"

docker_manifests:
Expand Down
9 changes: 5 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,22 +13,23 @@ We use the following categories for changes:
- `Fixed` for any bug fixes.
- `Security` in case of vulnerabilities.

## [Unreleased]
## [0.12.0] - 2022-06-21

### Added
- `-enable-feature=promql-per-step-stats` feature for statistics in PromQL evaluation
- Add `readinessProbe` in helm chart [#1266]
- Telemetry for recording rules and alerting [#1424]
- Set number of ingest copiers to the number of DB CPUs [#1387]
- Telemetry for helm chart installations [#1429]
- Ability to reload rules and alerting config [#1426]
- Support arrays in trace attribute values [#1381]
- Docs improvements

### Fixed
- Trace query returns empty result when queried with
- Tags from process table in Jaeger UI [#1385]
- Tags that have a numeric value, like `http.status_code=200` [#1385]
- Tags that involve status code [#1384]
- List label values of allowed tenants only [#1427]
- List label values of allowed tenants only [#1427]
- Race condition when stopping ingest [#1370]

## [0.11.0] - 2022-05-11

Expand Down
4 changes: 2 additions & 2 deletions deploy/helm-chart/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: promscale
version: 0.11.0
appVersion: 0.11.0
version: 0.12.0
appVersion: 0.12.0
apiVersion: v2
home: https://github.com/timescale/promscale
description: Promscale Connector deployment
26 changes: 13 additions & 13 deletions deploy/static/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
---
Expand All @@ -24,11 +24,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
stringData:
Expand All @@ -45,11 +45,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
spec:
Expand All @@ -74,11 +74,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
spec:
Expand All @@ -92,10 +92,10 @@ spec:
metadata:
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
annotations:
Expand All @@ -115,7 +115,7 @@ spec:
- name: TOBS_TELEMETRY_INSTALLED_BY
value: "promscale"
- name: "TOBS_TELEMETRY_VERSION"
value: "0.11.0"
value: "0.12.0"
envFrom:
- secretRef:
name: promscale
Expand Down Expand Up @@ -149,11 +149,11 @@ metadata:
namespace: default
labels:
app: promscale
chart: promscale-0.11.0
chart: promscale-0.12.0
release: promscale
heritage: Helm
app.kubernetes.io/name: "promscale-connector"
app.kubernetes.io/version: 0.11.0
app.kubernetes.io/version: 0.12.0
app.kubernetes.io/part-of: "promscale-connector"
app.kubernetes.io/component: "connector"
annotations:
Expand Down
4 changes: 2 additions & 2 deletions pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ var (
// It is customary to bump the version by incrementing the numeral after
// the `dev` tag. The SQL migration script name must correspond to the /new/ version.

Promscale = "0.11.0"
PrevReleaseVersion = "0.10.0"
Promscale = "0.12.0"
PrevReleaseVersion = "0.11.0"
CommitHash = "" // Comes from -ldflags settings
Branch = "" // Comes from -ldflags settings
EarliestUpgradeTestVersion = "0.3.0" // 0.3.0 earliest version an image with correct extension versions exists
Expand Down

0 comments on commit 949fa37

Please sign in to comment.