mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
chore: release v1.9.0
This commit is contained in:
parent
25faa4dfe2
commit
556329b411
26 changed files with 48 additions and 110 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
autofocus on field select after setting a non-count aggfn
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Add User Preferences modal
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
New performant session replay playbar component
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
fix: Properly show session replays from very long sessions in client sessions
|
||||
search results
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Reassign save search shortcut for Arc to CMD+SHIFT+S
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
fix: doesExceedThreshold greater than logic
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
chore: bump HyperDX SDKs (node-opentelemetry v0.8.0 + browser 0.21.0)
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
fix: handle null ratio value (alerting)
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: logtable scroll with highlighted line id
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
chore: Remove unused dependencies
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: threshold def of presence alert in alerts page
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Render JSON network body in a JSON viewer
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Allow to share open log in search dashboard tile
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': minor
|
||||
'@hyperdx/app': minor
|
||||
---
|
||||
|
||||
Allow to filter search results by event type (log or span)
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: revisit doesExceedThreshold logic
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': major
|
||||
---
|
||||
|
||||
Propogate isUTC and clock settings (12h/24h) across the app
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
chore: bump node to v18.20.3
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
perf: remove redundant otel-logs fields (timestamp + spanID + traceID)
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Confirm leaving Dashboard with unsaved changes
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Hide HyperJson buttons when selecting value
|
||||
2
.env
2
.env
|
|
@ -2,7 +2,7 @@
|
|||
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
|
||||
LOCAL_IMAGE_NAME=ghcr.io/hyperdxio/hyperdx-local
|
||||
LOCAL_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-local
|
||||
IMAGE_VERSION=1.8.0
|
||||
IMAGE_VERSION=1.9.0
|
||||
|
||||
# Set up domain URLs
|
||||
HYPERDX_API_PORT=8000
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "hyperdx",
|
||||
"private": true,
|
||||
"version": "1.8.0",
|
||||
"version": "1.9.0",
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,23 @@
|
|||
# @hyperdx/api
|
||||
|
||||
## 1.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 2488882: Allow to filter search results by event type (log or span)
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 63e7d30: fix: Properly show session replays from very long sessions in client
|
||||
sessions search results
|
||||
- 884938a: fix: doesExceedThreshold greater than logic
|
||||
- 25faa4d: chore: bump HyperDX SDKs (node-opentelemetry v0.8.0 + browser 0.21.0)
|
||||
- 288c763: fix: handle null ratio value (alerting)
|
||||
- da866be: fix: revisit doesExceedThreshold logic
|
||||
- b192366: chore: bump node to v18.20.3
|
||||
- 148c92b: perf: remove redundant otel-logs fields (timestamp + spanID +
|
||||
traceID)
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/api",
|
||||
"version": "1.8.0",
|
||||
"version": "1.9.0",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"engines": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,31 @@
|
|||
# @hyperdx/app
|
||||
|
||||
## 1.9.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 2488882: Allow to filter search results by event type (log or span)
|
||||
- 1751b2e: Propogate isUTC and clock settings (12h/24h) across the app
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 4176710: autofocus on field select after setting a non-count aggfn
|
||||
- e26a6d2: Add User Preferences modal
|
||||
- 6d99e3b: New performant session replay playbar component
|
||||
- ebd3f25: Reassign save search shortcut for Arc to CMD+SHIFT+S
|
||||
- 25faa4d: chore: bump HyperDX SDKs (node-opentelemetry v0.8.0 + browser 0.21.0)
|
||||
- ded8a77: fix: logtable scroll with highlighted line id
|
||||
- 4af6802: chore: Remove unused dependencies
|
||||
- 9c4f741: fix: threshold def of presence alert in alerts page
|
||||
- 3b29721: Render JSON network body in a JSON viewer
|
||||
- 3260f08: Allow to share open log in search dashboard tile
|
||||
- da866be: fix: revisit doesExceedThreshold logic
|
||||
- b192366: chore: bump node to v18.20.3
|
||||
- 148c92b: perf: remove redundant otel-logs fields (timestamp + spanID +
|
||||
traceID)
|
||||
- 47b758a: Confirm leaving Dashboard with unsaved changes
|
||||
- 79d4f92: Hide HyperJson buttons when selecting value
|
||||
|
||||
## 1.8.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/app",
|
||||
"version": "1.8.0",
|
||||
"version": "1.9.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue