mirror of
https://github.com/hyperdxio/hyperdx
synced 2026-04-21 13:37:15 +00:00
Release v1.1.2 (#46)
This commit is contained in:
parent
593c4ca758
commit
349175716e
13 changed files with 34 additions and 41 deletions
|
|
@ -2,7 +2,7 @@
|
|||
"$schema": "https://unpkg.com/@changesets/config@2.3.1/schema.json",
|
||||
"changelog": "@changesets/cli/changelog",
|
||||
"commit": false,
|
||||
"fixed": [],
|
||||
"fixed": [["@hyperdx/api", "@hyperdx/app"]],
|
||||
"linked": [],
|
||||
"access": "restricted",
|
||||
"baseBranch": "main",
|
||||
|
|
|
|||
|
|
@ -1,7 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
Filter out empty session replays from session replay search, add email filter to
|
||||
session replay UI
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
chore: bump @hyperdx/node-opentelemetry + @hyperdx/browser to latest
|
||||
|
|
@ -1,10 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
fix(app): negative duration in search
|
||||
|
||||
Duration column in the search interface displayed negative numbers when only a
|
||||
timestamp was present. This fix changes the behavior to display "N/A" for such
|
||||
cases, clarifying that the duration is not applicable rather than displaying a
|
||||
misleading negative number.
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
feat(app): enable cursor in session player
|
||||
|
|
@ -1,6 +0,0 @@
|
|||
---
|
||||
'@hyperdx/api': patch
|
||||
'@hyperdx/app': patch
|
||||
---
|
||||
|
||||
refactor: set output datetime format on the client side
|
||||
2
.env
2
.env
|
|
@ -1,6 +1,6 @@
|
|||
# Used by docker-compose.yml
|
||||
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
|
||||
IMAGE_VERSION=1.1.1
|
||||
IMAGE_VERSION=1.1.2
|
||||
|
||||
# Set up domain URLs
|
||||
HYPERDX_API_PORT=8000
|
||||
|
|
|
|||
4
Makefile
4
Makefile
|
|
@ -61,8 +61,8 @@ build-local:
|
|||
version:
|
||||
sh ./version.sh
|
||||
|
||||
.PHONY: build-and-push-ghcr
|
||||
build-and-push-ghcr:
|
||||
.PHONY: release
|
||||
release:
|
||||
docker buildx build --platform ${BUILD_PLATFORMS} ./docker/hostmetrics -t ${IMAGE_NAME}:${LATEST_VERSION}-hostmetrics --target prod --push &
|
||||
docker buildx build --platform ${BUILD_PLATFORMS} ./docker/ingestor -t ${IMAGE_NAME}:${LATEST_VERSION}-ingestor --target prod --push &
|
||||
docker buildx build --platform ${BUILD_PLATFORMS} ./docker/otel-collector -t ${IMAGE_NAME}:${LATEST_VERSION}-otel-collector --target prod --push &
|
||||
|
|
|
|||
|
|
@ -1,6 +1,7 @@
|
|||
{
|
||||
"name": "hyperdx",
|
||||
"private": true,
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"license": "MIT",
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,14 @@
|
|||
# @hyperdx/api
|
||||
|
||||
## 1.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- bd37a5e: Filter out empty session replays from session replay search, add
|
||||
email filter to session replay UI
|
||||
- 5d005f7: chore: bump @hyperdx/node-opentelemetry + @hyperdx/browser to latest
|
||||
- 593c4ca: refactor: set output datetime format on the client side
|
||||
|
||||
## 1.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/api",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"license": "MIT",
|
||||
"private": true,
|
||||
"engines": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,22 @@
|
|||
# @hyperdx/app
|
||||
|
||||
## 1.1.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- bd37a5e: Filter out empty session replays from session replay search, add
|
||||
email filter to session replay UI
|
||||
- 5d005f7: chore: bump @hyperdx/node-opentelemetry + @hyperdx/browser to latest
|
||||
- 8b103f3: fix(app): negative duration in search
|
||||
|
||||
Duration column in the search interface displayed negative numbers when only a
|
||||
timestamp was present. This fix changes the behavior to display "N/A" for such
|
||||
cases, clarifying that the duration is not applicable rather than displaying a
|
||||
misleading negative number.
|
||||
|
||||
- 911c02a: feat(app): enable cursor in session player
|
||||
- 593c4ca: refactor: set output datetime format on the client side
|
||||
|
||||
## 1.1.1
|
||||
|
||||
### Patch Changes
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@hyperdx/app",
|
||||
"version": "1.1.1",
|
||||
"version": "1.1.2",
|
||||
"private": true,
|
||||
"license": "MIT",
|
||||
"engines": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue