Release HyperDX (#1752)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot] 2026-02-21 07:08:56 +01:00 committed by GitHub
parent 4f1da03273
commit d1288cf67b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
22 changed files with 66 additions and 74 deletions

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": patch
---
feat: Add confirm dialog when closing tile editor w/ changes

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": patch
---
fix: Add option to display all events in search histogram bars

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": patch
---
fix: correct generated favicons for HyperDX and ClickStack

View file

@ -1,6 +0,0 @@
---
"@hyperdx/common-utils": minor
"@hyperdx/app": minor
---
feat: pie chart now available for chart visualization

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": patch
---
fix: Prevent sampled events error when HAVING clause is specified

View file

@ -1,5 +0,0 @@
---
"@hyperdx/otel-collector": minor
---
fix: improve log level extraction with word boundaries in regex

View file

@ -1,5 +0,0 @@
---
"@hyperdx/api": patch
---
fix: update required fields in our spec

View file

@ -1,6 +0,0 @@
---
"@hyperdx/common-utils": patch
"@hyperdx/app": patch
---
fix: clickstack build fixed when running same-site origin by omitting credentials from Authorization header for local mode fetch

View file

@ -1,6 +0,0 @@
---
"@hyperdx/common-utils": minor
"@hyperdx/api": minor
---
feat: Add config property to external dashboard APIs. Deprecate series.

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": minor
---
feat: Theme-based branding in UI copy. Replace hardcoded "HyperDX" with the current theme display name so ClickStack deployments show "ClickStack" (e.g. "Welcome to ClickStack", page titles, error messages, help text). Adds `useBrandDisplayName()` hook in ThemeProvider.

View file

@ -1,5 +0,0 @@
---
"@hyperdx/app": patch
---
fix: searching json number property error

View file

@ -1,5 +0,0 @@
---
"@hyperdx/otel-collector": patch
---
chore: bump base alpine 3.23 to address CVE-2025-15467

4
.env
View file

@ -8,8 +8,8 @@ NEXT_ALL_IN_ONE_IMAGE_NAME_DOCKERHUB=clickhouse/clickstack-all-in-one
ALL_IN_ONE_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-all-in-one
NEXT_OTEL_COLLECTOR_IMAGE_NAME_DOCKERHUB=clickhouse/clickstack-otel-collector
OTEL_COLLECTOR_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-otel-collector
CODE_VERSION=2.17.0
IMAGE_VERSION_SUB_TAG=.17.0
CODE_VERSION=2.18.0
IMAGE_VERSION_SUB_TAG=.18.0
IMAGE_VERSION=2
IMAGE_NIGHTLY_TAG=2-nightly
IMAGE_LATEST_TAG=latest

View file

@ -1,5 +1,19 @@
# @hyperdx/api
## 2.18.0
### Minor Changes
- b676f268: feat: Add config property to external dashboard APIs. Deprecate series.
### Patch Changes
- 18e96904: fix: update required fields in our spec
- Updated dependencies [051276fc]
- Updated dependencies [4f1da032]
- Updated dependencies [b676f268]
- @hyperdx/common-utils@0.13.0
## 2.17.0
### Patch Changes

View file

@ -1,6 +1,6 @@
{
"name": "@hyperdx/api",
"version": "2.17.0",
"version": "2.18.0",
"license": "MIT",
"private": true,
"engines": {
@ -9,7 +9,7 @@
"dependencies": {
"@ai-sdk/anthropic": "^2.0.23",
"@esm2cjs/p-queue": "^7.3.0",
"@hyperdx/common-utils": "^0.12.3",
"@hyperdx/common-utils": "^0.13.0",
"@hyperdx/node-opentelemetry": "^0.9.0",
"@hyperdx/passport-local-mongoose": "^9.0.1",
"@opentelemetry/api": "^1.8.0",

View file

@ -1,5 +1,25 @@
# @hyperdx/app
## 2.18.0
### Minor Changes
- 051276fc: feat: pie chart now available for chart visualization
- e984e20e: feat: Theme-based branding in UI copy. Replace hardcoded "HyperDX" with the current theme display name so ClickStack deployments show "ClickStack" (e.g. "Welcome to ClickStack", page titles, error messages, help text). Adds `useBrandDisplayName()` hook in ThemeProvider.
### Patch Changes
- ec54757e: feat: Add confirm dialog when closing tile editor w/ changes
- 185d4e40: fix: Add option to display all events in search histogram bars
- fa2424da: fix: correct generated favicons for HyperDX and ClickStack
- 5988850a: fix: Prevent sampled events error when HAVING clause is specified
- 4f1da032: fix: clickstack build fixed when running same-site origin by omitting credentials from Authorization header for local mode fetch
- 38286f67: fix: searching json number property error
- Updated dependencies [051276fc]
- Updated dependencies [4f1da032]
- Updated dependencies [b676f268]
- @hyperdx/common-utils@0.13.0
## 2.17.0
### Minor Changes

View file

@ -1,6 +1,6 @@
{
"name": "@hyperdx/app",
"version": "2.17.0",
"version": "2.18.0",
"private": true,
"license": "MIT",
"engines": {
@ -31,7 +31,7 @@
"@dagrejs/dagre": "^1.1.5",
"@hookform/resolvers": "^3.9.0",
"@hyperdx/browser": "^0.21.1",
"@hyperdx/common-utils": "^0.12.3",
"@hyperdx/common-utils": "^0.13.0",
"@hyperdx/node-opentelemetry": "^0.9.0",
"@lezer/highlight": "^1.2.0",
"@mantine/core": "^7.17.8",

View file

@ -1,5 +1,16 @@
# @hyperdx/common-utils
## 0.13.0
### Minor Changes
- 051276fc: feat: pie chart now available for chart visualization
- b676f268: feat: Add config property to external dashboard APIs. Deprecate series.
### Patch Changes
- 4f1da032: fix: clickstack build fixed when running same-site origin by omitting credentials from Authorization header for local mode fetch
## 0.12.3
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@hyperdx/common-utils",
"description": "Common utilities for HyperDX application",
"version": "0.12.3",
"version": "0.13.0",
"license": "MIT",
"private": true,
"files": [

View file

@ -1,5 +1,15 @@
# @hyperdx/otel-collector
## 2.18.0
### Minor Changes
- 4c42fdc3: fix: improve log level extraction with word boundaries in regex
### Patch Changes
- 36da6ff4: chore: bump base alpine 3.23 to address CVE-2025-15467
## 2.17.0
### Patch Changes

View file

@ -1,7 +1,7 @@
{
"name": "@hyperdx/otel-collector",
"description": "HyperDX OpenTelemetry Collector configuration and Docker image",
"version": "2.17.0",
"version": "2.18.0",
"license": "MIT",
"private": true
}

View file

@ -4227,7 +4227,7 @@ __metadata:
dependencies:
"@ai-sdk/anthropic": "npm:^2.0.23"
"@esm2cjs/p-queue": "npm:^7.3.0"
"@hyperdx/common-utils": "npm:^0.12.3"
"@hyperdx/common-utils": "npm:^0.13.0"
"@hyperdx/node-opentelemetry": "npm:^0.9.0"
"@hyperdx/passport-local-mongoose": "npm:^9.0.1"
"@opentelemetry/api": "npm:^1.8.0"
@ -4309,7 +4309,7 @@ __metadata:
"@hookform/devtools": "npm:^4.3.1"
"@hookform/resolvers": "npm:^3.9.0"
"@hyperdx/browser": "npm:^0.21.1"
"@hyperdx/common-utils": "npm:^0.12.3"
"@hyperdx/common-utils": "npm:^0.13.0"
"@hyperdx/node-opentelemetry": "npm:^0.9.0"
"@jedmao/location": "npm:^3.0.0"
"@lezer/highlight": "npm:^1.2.0"
@ -4440,7 +4440,7 @@ __metadata:
languageName: node
linkType: hard
"@hyperdx/common-utils@npm:^0.12.3, @hyperdx/common-utils@workspace:packages/common-utils":
"@hyperdx/common-utils@npm:^0.13.0, @hyperdx/common-utils@workspace:packages/common-utils":
version: 0.0.0-use.local
resolution: "@hyperdx/common-utils@workspace:packages/common-utils"
dependencies: