Skip to content

Commit bbc0aee

Browse files
committed
chore: release v1.8.0
1 parent 1e7d7b4 commit bbc0aee

23 files changed

+48
-92
lines changed

.changeset/gentle-rats-suffer.md

-6
This file was deleted.

.changeset/gold-stingrays-collect.md

-6
This file was deleted.

.changeset/green-bulldogs-behave.md

-6
This file was deleted.

.changeset/grumpy-tools-sin.md

-5
This file was deleted.

.changeset/itchy-bikes-cheat.md

-6
This file was deleted.

.changeset/itchy-chicken-confess.md

-5
This file was deleted.

.changeset/moody-pets-rest.md

-5
This file was deleted.

.changeset/plenty-jokes-end.md

-5
This file was deleted.

.changeset/popular-llamas-change.md

-5
This file was deleted.

.changeset/rare-avocados-fry.md

-5
This file was deleted.

.changeset/seven-sloths-hide.md

-7
This file was deleted.

.changeset/smooth-falcons-report.md

-5
This file was deleted.

.changeset/stale-paws-confess.md

-5
This file was deleted.

.changeset/sweet-singers-cough.md

-6
This file was deleted.

.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
IMAGE_NAME=ghcr.io/hyperdxio/hyperdx
33
LOCAL_IMAGE_NAME=ghcr.io/hyperdxio/hyperdx-local
44
LOCAL_IMAGE_NAME_DOCKERHUB=hyperdx/hyperdx-local
5-
IMAGE_VERSION=1.7.0
5+
IMAGE_VERSION=1.8.0
66

77
# Set up domain URLs
88
HYPERDX_API_PORT=8000

Makefile

+1-8
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ release:
106106
--build-arg OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME} \
107107
--build-arg PORT=${HYPERDX_APP_PORT} \
108108
--build-arg SERVER_URL=${HYPERDX_API_URL}:${HYPERDX_API_PORT} \
109-
--platform ${BUILD_PLATFORMS} . -f ./packages/app/Dockerfile -t ${IMAGE_NAME}:${LATEST_VERSION}-app --target prod --push
109+
--platform ${BUILD_PLATFORMS} . -f ./packages/app/Dockerfile -t ${IMAGE_NAME}:${LATEST_VERSION}-app --target prod --push &
110110
docker buildx build \
111111
--squash . -f ./docker/local/Dockerfile \
112112
--build-context clickhouse=./docker/clickhouse \
@@ -118,10 +118,3 @@ release:
118118
--platform ${BUILD_PLATFORMS} \
119119
-t ${LOCAL_IMAGE_NAME_DOCKERHUB}:latest -t ${LOCAL_IMAGE_NAME_DOCKERHUB}:${LATEST_VERSION} \
120120
-t ${LOCAL_IMAGE_NAME}:latest -t ${LOCAL_IMAGE_NAME}:${LATEST_VERSION} --push
121-
122-
.PHONY: push-gh
123-
push-gh:
124-
@echo "Creating git tag...\n"
125-
yarn changeset tag
126-
@echo "Pushing to the commit github...\n"
127-
git push --follow-tags

docker-compose.ci.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ services:
1212
# - 8002:8002 # http-generic
1313
environment:
1414
AGGREGATOR_API_URL: 'http://aggregator:8001'
15-
ENABLE_GO_PARSER: 'false'
15+
ENABLE_GO_PARSER: 'true'
1616
GO_PARSER_API_URL: 'http://go-parser:7777'
1717
RUST_BACKTRACE: full
1818
VECTOR_LOG: ${HYPERDX_LOG_LEVEL}
@@ -102,7 +102,6 @@ services:
102102
- ingestor
103103
- otel-collector
104104
- redis
105-
106105
networks:
107106
internal:
108107
name: 'hyperdx-ci-internal-network'

docker-compose.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ services:
4949
- 8686:8686 # healthcheck
5050
environment:
5151
AGGREGATOR_API_URL: 'http://aggregator:8001'
52-
ENABLE_GO_PARSER: 'false'
52+
ENABLE_GO_PARSER: 'true'
5353
GO_PARSER_API_URL: 'http://go-parser:7777'
5454
RUST_BACKTRACE: full
5555
VECTOR_LOG: ${HYPERDX_LOG_LEVEL}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "hyperdx",
33
"private": true,
4-
"version": "1.7.0",
4+
"version": "1.8.0",
55
"license": "MIT",
66
"workspaces": [
77
"packages/*"

packages/api/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# @hyperdx/api
22

3+
## 1.8.0
4+
5+
### Minor Changes
6+
7+
- 4d6fb8f: feat: GA service health dashboard + metrics alert
8+
- 0e365bf: this change enables generic webhooks. no existing webhook behavior
9+
will be impacted by this change.
10+
- 4d6fb8f: feat: GA k8s dashboard / metrics side panel
11+
12+
### Patch Changes
13+
14+
- eefe597: Show client sessions with no user interactions but has recording by
15+
default
16+
- b454003: feat: introduce conditional alert routing helper #is_match
17+
- d3e270a: chore: bump vector to v0.37.0
18+
- 3b1fe08: feat + fix: add webhook endpoints validators + parse webhook JSON
19+
body
20+
- 5fc7c21: feat: use handlebar to build up webhook body
21+
- 4a85e22: chore: bump @clickhouse/client to v0.2.10
22+
323
## 1.7.0
424

525
### Patch Changes

packages/api/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperdx/api",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"license": "MIT",
55
"private": true,
66
"engines": {

packages/app/CHANGELOG.md

+21
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @hyperdx/app
22

3+
## 1.8.0
4+
5+
### Minor Changes
6+
7+
- 4d6fb8f: feat: GA service health dashboard + metrics alert
8+
- 0e365bf: this change enables generic webhooks. no existing webhook behavior
9+
will be impacted by this change.
10+
- 4d6fb8f: feat: GA k8s dashboard / metrics side panel
11+
12+
### Patch Changes
13+
14+
- eefe597: Show client sessions with no user interactions but has recording by
15+
default
16+
- b454003: feat: introduce conditional alert routing helper #is_match
17+
- 05517dc: LogViewer: better JSON parsing and other tweaks
18+
- d3e270a: chore: bump vector to v0.37.0
19+
- ec95ef0: Add skip forward/back 15s buttons on session replay
20+
- 2c61276: Allow exporting table chart results as CSV
21+
- bc1e84b: Allow to interact with page while log side panel is open
22+
- ab96e7c: Update Team Page layout and styling
23+
324
## 1.7.0
425

526
### Minor Changes

packages/app/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hyperdx/app",
3-
"version": "1.7.0",
3+
"version": "1.8.0",
44
"private": true,
55
"license": "MIT",
66
"engines": {

0 commit comments

Comments
 (0)