Skip to content

Commit c4409cf

Browse files
authored
Update CHANGELOG and bump version (#1706)
1 parent c609ca0 commit c4409cf

File tree

4 files changed

+19
-15
lines changed

4 files changed

+19
-15
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
matrix:
3030
environment: [dev, ops, prod]
3131
name: CD
32-
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v5.1.0
32+
uses: grafana/plugin-ci-workflows/.github/workflows/cd.yml@ci-cd-workflows/v6.1.1
3333
permissions:
3434
contents: write
3535
id-token: write
@@ -40,7 +40,5 @@ jobs:
4040
environment: ${{ matrix.environment }}
4141
docs-only: ${{ fromJSON(github.event.inputs.docs-only) }}
4242
scopes: ${{ github.event.inputs.environment == 'cloud (recommended)' && 'grafana_cloud' || github.event.inputs.environment == 'on-prem (for emergencies fix to On Prem customers)' && 'universal' }}
43-
go-version: "1.26"
44-
golangci-lint-version: "2.10.1"
4543
run-playwright: false
4644
github-draft-release: false

.github/workflows/push.yml

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
# Minimal top-level permissions; jobs can extend as needed
1515
permissions:
1616
contents: read
17-
id-token: write # Required for OIDC (Vault / shared workflows)
17+
id-token: write # Required for OIDC (Vault / shared workflows)
1818

1919
# Prevent duplicate runs on the same ref.
2020
# For PRs: cancel older in-progress runs when new commits are pushed.
@@ -27,7 +27,7 @@ jobs:
2727
ci:
2828
name: CI
2929

30-
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v5.1.0
30+
uses: grafana/plugin-ci-workflows/.github/workflows/ci.yml@ci-cd-workflows/v6.1.1
3131

3232
# Only run CI job for PRs / non-main refs.
3333
# Main publishing is handled by the CD workflow below.
@@ -39,9 +39,6 @@ jobs:
3939
id-token: write
4040

4141
with:
42-
go-version: '1.26.0'
43-
golangci-lint-version: '2.10.1'
44-
4542
# Ensure PR builds produce unique plugin versions.
4643
# For PR events, suffix with the head SHA; otherwise leave empty.
4744
plugin-version-suffix: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || '' }}
@@ -57,20 +54,20 @@ jobs:
5754
# Publishing requires write permissions + OIDC
5855
permissions:
5956
attestations: write
60-
contents: write # Required to publish artifacts
61-
id-token: write # OIDC for Vault / signing
57+
contents: write # Required to publish artifacts
58+
id-token: write # OIDC for Vault / signing
6259

6360
with:
6461
# This is a "publish latest" flow, not a full release
6562
disable-docs-publishing: true
6663
disable-github-release: true
6764

6865
# Target the dev catalog environment (used by Cloud E2E)
69-
environment: 'dev'
66+
environment: "dev"
7067

7168
# Keep toolchain consistent with CI job
72-
go-version: '1.26.0'
73-
golangci-lint-version: '2.10.1'
69+
go-version: "1.26.0"
70+
golangci-lint-version: "2.10.1"
7471

7572
# Suffix artifact with commit SHA for traceability and uniqueness
7673
plugin-version-suffix: ${{ github.sha }}

CHANGELOG.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
11
# Changelog
22

3+
## 4.14.1
4+
5+
### Features
6+
7+
- Extract `Map` value type for `mapKey` filter in `getFilters` (#1694)
8+
9+
### Fixes
10+
11+
- Dependency updates
12+
313
## 4.14.0
414

515
### Features
616

717
- Add FilterTime hint to enable multi-timestamp log filtering/sorting (#1642)
818
- Skip OTel trace time range optimization when trace timestamp table does not exist (#1663)
9-
- Extract `Map` value type for `mapKey` filter in `getFilters` (#1694)
1019

1120
### Fixes
1221

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "clickhouse-datasource",
3-
"version": "4.14.0",
3+
"version": "4.14.1",
44
"description": "Clickhouse Datasource",
55
"engines": {
66
"node": ">=20"

0 commit comments

Comments
 (0)