Skip to content

Commit

Permalink
chore: release v1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wrn14897 committed Apr 19, 2024
1 parent 1e7d7b4 commit bbc0aee
Show file tree
Hide file tree
Showing 23 changed files with 48 additions and 92 deletions.
6 changes: 0 additions & 6 deletions .changeset/gentle-rats-suffer.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/gold-stingrays-collect.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/green-bulldogs-behave.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-tools-sin.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/itchy-bikes-cheat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-chicken-confess.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/moody-pets-rest.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-jokes-end.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/popular-llamas-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/rare-avocados-fry.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/seven-sloths-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/smooth-falcons-report.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/stale-paws-confess.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/sweet-singers-cough.md

This file was deleted.

2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
Expand Up @@ -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.7.0
IMAGE_VERSION=1.8.0

# Set up domain URLs
HYPERDX_API_PORT=8000
Expand Down
9 changes: 1 addition & 8 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ release:
--build-arg OTEL_SERVICE_NAME=${OTEL_SERVICE_NAME} \
--build-arg PORT=${HYPERDX_APP_PORT} \
--build-arg SERVER_URL=${HYPERDX_API_URL}:${HYPERDX_API_PORT} \
--platform ${BUILD_PLATFORMS} . -f ./packages/app/Dockerfile -t ${IMAGE_NAME}:${LATEST_VERSION}-app --target prod --push
--platform ${BUILD_PLATFORMS} . -f ./packages/app/Dockerfile -t ${IMAGE_NAME}:${LATEST_VERSION}-app --target prod --push &
docker buildx build \
--squash . -f ./docker/local/Dockerfile \
--build-context clickhouse=./docker/clickhouse \
Expand All @@ -118,10 +118,3 @@ release:
--platform ${BUILD_PLATFORMS} \
-t ${LOCAL_IMAGE_NAME_DOCKERHUB}:latest -t ${LOCAL_IMAGE_NAME_DOCKERHUB}:${LATEST_VERSION} \
-t ${LOCAL_IMAGE_NAME}:latest -t ${LOCAL_IMAGE_NAME}:${LATEST_VERSION} --push

.PHONY: push-gh
push-gh:
@echo "Creating git tag...\n"
yarn changeset tag
@echo "Pushing to the commit github...\n"
git push --follow-tags
3 changes: 1 addition & 2 deletions docker-compose.ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ services:
# - 8002:8002 # http-generic
environment:
AGGREGATOR_API_URL: 'http://aggregator:8001'
ENABLE_GO_PARSER: 'false'
ENABLE_GO_PARSER: 'true'
GO_PARSER_API_URL: 'http://go-parser:7777'
RUST_BACKTRACE: full
VECTOR_LOG: ${HYPERDX_LOG_LEVEL}
Expand Down Expand Up @@ -102,7 +102,6 @@ services:
- ingestor
- otel-collector
- redis

networks:
internal:
name: 'hyperdx-ci-internal-network'
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ services:
- 8686:8686 # healthcheck
environment:
AGGREGATOR_API_URL: 'http://aggregator:8001'
ENABLE_GO_PARSER: 'false'
ENABLE_GO_PARSER: 'true'
GO_PARSER_API_URL: 'http://go-parser:7777'
RUST_BACKTRACE: full
VECTOR_LOG: ${HYPERDX_LOG_LEVEL}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "hyperdx",
"private": true,
"version": "1.7.0",
"version": "1.8.0",
"license": "MIT",
"workspaces": [
"packages/*"
Expand Down
20 changes: 20 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# @hyperdx/api

## 1.8.0

### Minor Changes

- 4d6fb8f: feat: GA service health dashboard + metrics alert
- 0e365bf: this change enables generic webhooks. no existing webhook behavior
will be impacted by this change.
- 4d6fb8f: feat: GA k8s dashboard / metrics side panel

### Patch Changes

- eefe597: Show client sessions with no user interactions but has recording by
default
- b454003: feat: introduce conditional alert routing helper #is_match
- d3e270a: chore: bump vector to v0.37.0
- 3b1fe08: feat + fix: add webhook endpoints validators + parse webhook JSON
body
- 5fc7c21: feat: use handlebar to build up webhook body
- 4a85e22: chore: bump @clickhouse/client to v0.2.10

## 1.7.0

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperdx/api",
"version": "1.7.0",
"version": "1.8.0",
"license": "MIT",
"private": true,
"engines": {
Expand Down
21 changes: 21 additions & 0 deletions packages/app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @hyperdx/app

## 1.8.0

### Minor Changes

- 4d6fb8f: feat: GA service health dashboard + metrics alert
- 0e365bf: this change enables generic webhooks. no existing webhook behavior
will be impacted by this change.
- 4d6fb8f: feat: GA k8s dashboard / metrics side panel

### Patch Changes

- eefe597: Show client sessions with no user interactions but has recording by
default
- b454003: feat: introduce conditional alert routing helper #is_match
- 05517dc: LogViewer: better JSON parsing and other tweaks
- d3e270a: chore: bump vector to v0.37.0
- ec95ef0: Add skip forward/back 15s buttons on session replay
- 2c61276: Allow exporting table chart results as CSV
- bc1e84b: Allow to interact with page while log side panel is open
- ab96e7c: Update Team Page layout and styling

## 1.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@hyperdx/app",
"version": "1.7.0",
"version": "1.8.0",
"private": true,
"license": "MIT",
"engines": {
Expand Down

0 comments on commit bbc0aee

Please sign in to comment.