feat: bump clickhouse-server docker image#8120
Conversation
There was a problem hiding this comment.
Code Review
This pull request updates the ClickHouse server image version to 26.3.12.3-alpine in the Docker Compose files. However, ClickHouse version 26.x does not exist, making this tag invalid. Please correct this to a valid version (e.g., 24.3.12.3-alpine). Additionally, since files under /docker are modified, a changeset for the hive scope is required.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
|
🐋 This PR was built and pushed to the following Docker images: Targets: Platforms: Image Tag: |
🚀 Snapshot Release (
|
| Package | Version | Info |
|---|---|---|
@graphql-hive/apollo |
0.48.1-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/cli |
0.60.1-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/core |
0.21.1-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/envelop |
0.40.6-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/yoga |
0.48.1-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
hive |
11.3.0-alpha-20260610074215-f4b0bbb1962308a70320153a0618535e20ef5c57 |
npm ↗︎ unpkg ↗︎ |
ff861fb to
807b1fb
Compare
| const action: Action = exec => Promise.all(statements.map(q => exec(q))).then(() => {}); | ||
| const action: Action = async exec => { | ||
| for (const query of statements) { | ||
| await exec(query); | ||
| } | ||
| }; |
807b1fb to
f03e2e1
Compare

Background
Bump
clickhouse/clickhouse-server:24.8-alpinetoclickhouse/clickhouse-server:26.3.12.3-alpine.The main breaking change is the quoting of integers, this is handled gracefully by using the
output_format_json_quote_64bit_integersoption for clickhouse client queries.