mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
Release HyperDX (#1955)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
c72d7baa7f
commit
af86da601e
28 changed files with 67 additions and 110 deletions
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: ClickStack and HyperDX color token improvements
|
||||
|
||||
- Fix link colors in ClickStack (blue in light mode, yellow in dark mode)
|
||||
- Override checkbox and radio button colors to use accent color with contrasting icons
|
||||
- Restyle slider marks as solid 6px dots with semantic color tokens
|
||||
- Add subtle Button variant to both themes
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
feat: Add collapsible filter sidebar toggle to search page
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/common-utils": patch
|
||||
---
|
||||
|
||||
fix: Correctly detect text index with quoted tokenizer argument
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
"@hyperdx/api": patch
|
||||
"@hyperdx/app": patch
|
||||
"@hyperdx/otel-collector": patch
|
||||
---
|
||||
|
||||
ci: Replace QEMU with native ARM64 runners for release builds
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Fix query error on ClickHouse Query latency chart
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Preserve default select when saving search
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
feat: allow collapsing child spans
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
feat: Add column toggle button to filter panel in DBSearchPage
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Prevent duplicate demo sources in Play Environment source select
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
"@hyperdx/common-utils": patch
|
||||
"@hyperdx/api": patch
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
feat: Add conditions to Dashboard filters; Support filter multi-select
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
feat: Add OpenAI provider support for AI assistance
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
Update OpenAI model configuration to use the new Responses API
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/api": patch
|
||||
---
|
||||
|
||||
perf: Optimize alerthistories aggregation queries to reduce DocDB CPU load
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Improve auto-complete behavior for aliases and maps
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
docs: Link to the SQL-based visualization docs
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
fix: Fix intermittently-missing SQL autocomplete suggestions
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
"@hyperdx/app": patch
|
||||
---
|
||||
|
||||
feat: Add dashboard listing page
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/common-utils': patch
|
||||
---
|
||||
|
||||
fix: Enable materialized column optimization for expression alias CTEs
|
||||
4
.env
4
.env
|
|
@ -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.22.0
|
||||
IMAGE_VERSION_SUB_TAG=.22.0
|
||||
CODE_VERSION=2.22.1
|
||||
IMAGE_VERSION_SUB_TAG=.22.1
|
||||
IMAGE_VERSION=2
|
||||
IMAGE_NIGHTLY_TAG=2-nightly
|
||||
IMAGE_LATEST_TAG=latest
|
||||
|
|
|
|||
|
|
@ -1,5 +1,19 @@
|
|||
# @hyperdx/api
|
||||
|
||||
## 2.22.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 470b2c29: ci: Replace QEMU with native ARM64 runners for release builds
|
||||
- 275dc941: feat: Add conditions to Dashboard filters; Support filter multi-select
|
||||
- 47e1f565: feat: Add OpenAI provider support for AI assistance
|
||||
- 629009da: Update OpenAI model configuration to use the new Responses API
|
||||
- acd117ab: perf: Optimize alerthistories aggregation queries to reduce DocDB CPU load
|
||||
- Updated dependencies [4f7dd9ef]
|
||||
- Updated dependencies [275dc941]
|
||||
- Updated dependencies [6936ef8e]
|
||||
- @hyperdx/common-utils@0.16.2
|
||||
|
||||
## 2.22.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/api",
|
||||
"version": "2.22.0",
|
||||
"version": "2.22.1",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"engines": {
|
||||
|
|
@ -10,7 +10,7 @@
|
|||
"@ai-sdk/anthropic": "^3.0.58",
|
||||
"@ai-sdk/openai": "^3.0.47",
|
||||
"@esm2cjs/p-queue": "^7.3.0",
|
||||
"@hyperdx/common-utils": "^0.16.1",
|
||||
"@hyperdx/common-utils": "^0.16.2",
|
||||
"@hyperdx/node-opentelemetry": "^0.9.0",
|
||||
"@hyperdx/passport-local-mongoose": "^9.0.1",
|
||||
"@opentelemetry/api": "^1.8.0",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,33 @@
|
|||
# @hyperdx/app
|
||||
|
||||
## 2.22.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6c347a52: fix: ClickStack and HyperDX color token improvements
|
||||
|
||||
- Fix link colors in ClickStack (blue in light mode, yellow in dark mode)
|
||||
- Override checkbox and radio button colors to use accent color with contrasting icons
|
||||
- Restyle slider marks as solid 6px dots with semantic color tokens
|
||||
- Add subtle Button variant to both themes
|
||||
|
||||
- a6a83d59: feat: Add collapsible filter sidebar toggle to search page
|
||||
- 470b2c29: ci: Replace QEMU with native ARM64 runners for release builds
|
||||
- cdc29d5a: fix: Fix query error on ClickHouse Query latency chart
|
||||
- 8b629385: fix: Preserve default select when saving search
|
||||
- 7ab7f6de: feat: allow collapsing child spans
|
||||
- c9d1dda3: feat: Add column toggle button to filter panel in DBSearchPage
|
||||
- 45755260: fix: Prevent duplicate demo sources in Play Environment source select
|
||||
- 275dc941: feat: Add conditions to Dashboard filters; Support filter multi-select
|
||||
- 1fb8e355: fix: Improve auto-complete behavior for aliases and maps
|
||||
- 2207edbf: docs: Link to the SQL-based visualization docs
|
||||
- dd313f77: fix: Fix intermittently-missing SQL autocomplete suggestions
|
||||
- e21811cc: feat: Add dashboard listing page
|
||||
- Updated dependencies [4f7dd9ef]
|
||||
- Updated dependencies [275dc941]
|
||||
- Updated dependencies [6936ef8e]
|
||||
- @hyperdx/common-utils@0.16.2
|
||||
|
||||
## 2.22.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/app",
|
||||
"version": "2.22.0",
|
||||
"version": "2.22.1",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
|
|
@ -34,7 +34,7 @@
|
|||
"@dagrejs/dagre": "^1.1.5",
|
||||
"@hookform/resolvers": "^3.9.0",
|
||||
"@hyperdx/browser": "^0.22.0",
|
||||
"@hyperdx/common-utils": "^0.16.1",
|
||||
"@hyperdx/common-utils": "^0.16.2",
|
||||
"@hyperdx/node-opentelemetry": "^0.9.0",
|
||||
"@mantine/core": "^7.17.8",
|
||||
"@mantine/dates": "^7.17.8",
|
||||
|
|
|
|||
|
|
@ -1,5 +1,13 @@
|
|||
# @hyperdx/common-utils
|
||||
|
||||
## 0.16.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4f7dd9ef: fix: Correctly detect text index with quoted tokenizer argument
|
||||
- 275dc941: feat: Add conditions to Dashboard filters; Support filter multi-select
|
||||
- 6936ef8e: fix: Enable materialized column optimization for expression alias CTEs
|
||||
|
||||
## 0.16.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@hyperdx/common-utils",
|
||||
"description": "Common utilities for HyperDX application",
|
||||
"version": "0.16.1",
|
||||
"version": "0.16.2",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"files": [
|
||||
|
|
|
|||
|
|
@ -1,5 +1,11 @@
|
|||
# @hyperdx/otel-collector
|
||||
|
||||
## 2.22.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 470b2c29: ci: Replace QEMU with native ARM64 runners for release builds
|
||||
|
||||
## 2.22.0
|
||||
|
||||
## 2.21.0
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@hyperdx/otel-collector",
|
||||
"description": "HyperDX OpenTelemetry Collector configuration and Docker image",
|
||||
"version": "2.22.0",
|
||||
"version": "2.22.1",
|
||||
"license": "MIT",
|
||||
"private": true
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4133,7 +4133,7 @@ __metadata:
|
|||
"@ai-sdk/anthropic": "npm:^3.0.58"
|
||||
"@ai-sdk/openai": "npm:^3.0.47"
|
||||
"@esm2cjs/p-queue": "npm:^7.3.0"
|
||||
"@hyperdx/common-utils": "npm:^0.16.1"
|
||||
"@hyperdx/common-utils": "npm:^0.16.2"
|
||||
"@hyperdx/node-opentelemetry": "npm:^0.9.0"
|
||||
"@hyperdx/passport-local-mongoose": "npm:^9.0.1"
|
||||
"@opentelemetry/api": "npm:^1.8.0"
|
||||
|
|
@ -4216,7 +4216,7 @@ __metadata:
|
|||
"@eslint/compat": "npm:^2.0.0"
|
||||
"@hookform/resolvers": "npm:^3.9.0"
|
||||
"@hyperdx/browser": "npm:^0.22.0"
|
||||
"@hyperdx/common-utils": "npm:^0.16.1"
|
||||
"@hyperdx/common-utils": "npm:^0.16.2"
|
||||
"@hyperdx/node-opentelemetry": "npm:^0.9.0"
|
||||
"@jedmao/location": "npm:^3.0.0"
|
||||
"@mantine/core": "npm:^7.17.8"
|
||||
|
|
@ -4341,7 +4341,7 @@ __metadata:
|
|||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"@hyperdx/common-utils@npm:^0.16.1, @hyperdx/common-utils@workspace:packages/common-utils":
|
||||
"@hyperdx/common-utils@npm:^0.16.2, @hyperdx/common-utils@workspace:packages/common-utils":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "@hyperdx/common-utils@workspace:packages/common-utils"
|
||||
dependencies:
|
||||
|
|
|
|||
Loading…
Reference in a new issue