mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
chore: release v1.7.0
This commit is contained in:
parent
f59ce359f3
commit
b362acca20
18 changed files with 37 additions and 67 deletions
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Allow to drag and drop saved searches and dashhoards between groups
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': minor
|
||||
---
|
||||
|
||||
fix: Use nuqs for ChartPage url query params
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Add multi-series line/table charts as well as histogram/number charts to the
|
||||
chart explorer.
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: histogram AggFn values to be only valid ones (UI)
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
feat: parse legacy k8s v1 cluster events
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
---
|
||||
|
||||
Support '-', ';', '=', and '+' in password
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Upgrade to React 18 and Next 13
|
||||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: dense rank should be computed base on rank value and group (multi-series
|
||||
chart)
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Minor UI fixes
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix: cache the result conditionally (SimpleCache)
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
refactor + perf: decouple and performance opt metrics tags endpoints
|
||||
2
.env
2
.env
|
|
@ -1,6 +1,6 @@
|
|||
# Used by docker-compose.yml
|
||||
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
|
||||
IMAGE_VERSION=1.6.0
|
||||
IMAGE_VERSION=1.7.0
|
||||
|
||||
# Set up domain URLs
|
||||
HYPERDX_API_PORT=8000
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -1,5 +1,5 @@
|
|||
LATEST_VERSION := $$(sed -n 's/.*"version": "\([^"]*\)".*/\1/p' package.json)
|
||||
BUILD_PLATFORMS = linux/arm64/v8,linux/amd64
|
||||
BUILD_PLATFORMS = linux/arm64,linux/amd64
|
||||
|
||||
include .env
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "hyperdx",
|
||||
"private": true,
|
||||
"version": "1.6.0",
|
||||
"version": "1.7.0",
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,17 @@
|
|||
# @hyperdx/api
|
||||
|
||||
## 1.7.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 095ec0e: fix: histogram AggFn values to be only valid ones (UI)
|
||||
- 41d80de: feat: parse legacy k8s v1 cluster events
|
||||
- 7021924: Support '-', ';', '=', and '+' in password
|
||||
- b87c4d7: fix: dense rank should be computed base on rank value and group
|
||||
(multi-series chart)
|
||||
- a49726e: fix: cache the result conditionally (SimpleCache)
|
||||
- b83e51f: refactor + perf: decouple and performance opt metrics tags endpoints
|
||||
|
||||
## 1.6.0
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/api",
|
||||
"version": "1.6.0",
|
||||
"version": "1.7.0",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"engines": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,25 @@
|
|||
# @hyperdx/app
|
||||
|
||||
## 1.7.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 396468c: fix: Use nuqs for ChartPage url query params
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- dba8a43: Allow to drag and drop saved searches and dashhoards between groups
|
||||
- 95ccfa1: Add multi-series line/table charts as well as histogram/number charts
|
||||
to the chart explorer.
|
||||
- 095ec0e: fix: histogram AggFn values to be only valid ones (UI)
|
||||
- 41d80de: feat: parse legacy k8s v1 cluster events
|
||||
- f9521a5: Upgrade to React 18 and Next 13
|
||||
- b87c4d7: fix: dense rank should be computed base on rank value and group
|
||||
(multi-series chart)
|
||||
- 95f5041: Minor UI fixes
|
||||
- a49726e: fix: cache the result conditionally (SimpleCache)
|
||||
- b83e51f: refactor + perf: decouple and performance opt metrics tags endpoints
|
||||
|
||||
## 1.6.0
|
||||
|
||||
### Minor Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/app",
|
||||
"version": "1.6.0",
|
||||
"version": "1.7.0",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue