Release HyperDX#2169
Open
github-actions[bot] wants to merge 1 commit intomainfrom
Open
Conversation
8ac3bf7 to
aa8d829
Compare
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
aa8d829 to
de2fa7e
Compare
de2fa7e to
c7ef5a2
Compare
c7ef5a2 to
2033ee1
Compare
2033ee1 to
ffb7af5
Compare
ffb7af5 to
c6374bd
Compare
c6374bd to
435d853
Compare
435d853 to
618696e
Compare
618696e to
12a658d
Compare
12a658d to
a1347e5
Compare
a1347e5 to
5a8280b
Compare
5a8280b to
ca73d82
Compare
ca73d82 to
10222fa
Compare
10222fa to
5b953c7
Compare
5b953c7 to
231c537
Compare
231c537 to
d8d0833
Compare
d8d0833 to
a034f85
Compare
a034f85 to
c00a0b6
Compare
c00a0b6 to
61f392d
Compare
61f392d to
5a49ad7
Compare
5a49ad7 to
7ab3ec5
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.
Releases
@hyperdx/cli@0.4.1
Patch Changes
253cf5b: Fix CLI version flag reporting hardcoded 0.1.0 instead of the actual package version
4104364: feat: support multiple teams and kubectx-style team switching in the CLI
Adds three new commands for users that belong to multiple teams (HyperDX Cloud /
EE):
hdx team list— list every team the authenticated user belongs to, markingthe active one
hdx team current— print the currently active teamhdx team use <name-or-id>— switch the active team (matched by team ID orcase-insensitive name)
The active team is persisted to
~/.config/hyperdx/cli/session.jsonso thechoice survives across CLI invocations, and the CLI now sends an
x-hdx-teamheader on every API and ClickHouse-proxy request so the server scopes data to
the chosen team.
hdx auth statusalso surfaces the active team.On single-team OSS deployments these commands are effectively no-ops.
@hyperdx/api@2.25.0
Minor Changes
eb16df4: Add ability to disable data sources with improved UX
5c6da48: refactor(alerts/search): consolidate the saved-search → chart-config builder
into a single shared helper,
buildSearchChartConfig, in@hyperdx/common-utils/core/searchChartConfig.ts. The app search page, thealert preview chart, and the scheduled alert task's
SAVED_SEARCHbranch nowall route through it, so
tableFilterExpression,implicitColumnExpression,sample-weight expressions, SELECT precedence, and the
count()defaultSELECT shape are applied identically by construction.
Behavior fixes that fall out of consolidation:
source.tableFilterExpressionon Log sources, matching what the search page already did.
filtersarray no longer silently drops the
tableFilterExpressionSQL filter viaspread-overwrite.
Patch Changes
fecbfff: fix: flatten MCP query tool schema so SDK serializes inputSchema correctly
29586e7: Enable end-to-end PR testing on Vercel previews by inlining the Express API into the Next.js
/api/[...all]serverless function (opt-in viaHDX_PREVIEW_INLINE_API=true). Production deploys (Docker fullstack image, standalone Next output) are unchanged — they keep proxying/api/*to the separately-deployed API service.Also realigns
clickhouseProxy.tswith the upstream EE implementation (modulo CHC and RBAC code paths): query params are now parsed from the request URL viavalidateAndSanitizePath()+URL.searchParamsinstead ofreq.query, which fixes aSetting all is neither a builtin setting nor started with the prefix 'custom_'regression on Vercel previews where Next.js's[...all]catch-all route pollutedreq.query. Adds path-injection hardening, POST-only enforcement, and exposesX-ClickHouse-Mixed-Response/X-ClickHouse-Service-Unavailableresponse headers for the browser ClickHouse client.88b2b64: fix: use block_number/block_offset to uniquely identify log rows
Updated dependencies [eb16df4]
Updated dependencies [24699cd]
Updated dependencies [5c6da48]
Updated dependencies [ef571cc]
Updated dependencies [c2a9f96]
@hyperdx/app@2.25.0
Minor Changes
eb16df4: Add ability to disable data sources with improved UX
5c6da48: refactor(alerts/search): consolidate the saved-search → chart-config builder
into a single shared helper,
buildSearchChartConfig, in@hyperdx/common-utils/core/searchChartConfig.ts. The app search page, thealert preview chart, and the scheduled alert task's
SAVED_SEARCHbranch nowall route through it, so
tableFilterExpression,implicitColumnExpression,sample-weight expressions, SELECT precedence, and the
count()defaultSELECT shape are applied identically by construction.
Behavior fixes that fall out of consolidation:
source.tableFilterExpressionon Log sources, matching what the search page already did.
filtersarray no longer silently drops the
tableFilterExpressionSQL filter viaspread-overwrite.
ef571cc: feat: heatmap charts in chart editor and dashboards
DBHeatmapChartcomponentPatch Changes
24699cd: fix: Infer singular quantileXXX() from MV quantilesXXXState()
4e9caec: Support per-signal OTLP exporter endpoints for Hyperdx internal telemetry
29586e7: Enable end-to-end PR testing on Vercel previews by inlining the Express API into the Next.js
/api/[...all]serverless function (opt-in viaHDX_PREVIEW_INLINE_API=true). Production deploys (Docker fullstack image, standalone Next output) are unchanged — they keep proxying/api/*to the separately-deployed API service.Also realigns
clickhouseProxy.tswith the upstream EE implementation (modulo CHC and RBAC code paths): query params are now parsed from the request URL viavalidateAndSanitizePath()+URL.searchParamsinstead ofreq.query, which fixes aSetting all is neither a builtin setting nor started with the prefix 'custom_'regression on Vercel previews where Next.js's[...all]catch-all route pollutedreq.query. Adds path-injection hardening, POST-only enforcement, and exposesX-ClickHouse-Mixed-Response/X-ClickHouse-Service-Unavailableresponse headers for the browser ClickHouse client.3af4e92: Standardize query param libraries
c2a9f96: feat: Add more dashboard onClick linking options
88b2b64: fix: use block_number/block_offset to uniquely identify log rows
Updated dependencies [eb16df4]
Updated dependencies [24699cd]
Updated dependencies [fecbfff]
Updated dependencies [5c6da48]
Updated dependencies [29586e7]
Updated dependencies [ef571cc]
Updated dependencies [c2a9f96]
Updated dependencies [88b2b64]
@hyperdx/common-utils@0.19.0
Minor Changes
eb16df4: Add ability to disable data sources with improved UX
5c6da48: refactor(alerts/search): consolidate the saved-search → chart-config builder
into a single shared helper,
buildSearchChartConfig, in@hyperdx/common-utils/core/searchChartConfig.ts. The app search page, thealert preview chart, and the scheduled alert task's
SAVED_SEARCHbranch nowall route through it, so
tableFilterExpression,implicitColumnExpression,sample-weight expressions, SELECT precedence, and the
count()defaultSELECT shape are applied identically by construction.
Behavior fixes that fall out of consolidation:
source.tableFilterExpressionon Log sources, matching what the search page already did.
filtersarray no longer silently drops the
tableFilterExpressionSQL filter viaspread-overwrite.
Patch Changes
24699cd: fix: Infer singular quantileXXX() from MV quantilesXXXState()
ef571cc: feat: heatmap charts in chart editor and dashboards
DBHeatmapChartcomponentc2a9f96: feat: Add more dashboard onClick linking options
@hyperdx/otel-collector@2.25.0
Minor Changes
aaba3e9: feat: new optimized otel schema based on weeks of benchmarks.
The Primary Key is now grouped by
toStartOfFiveMinutes. At extremely largedata sizes, it may be helpful to reduce granularity to 1 minute instead of 5.
Bloom Filter indexes can be used instead, but full text search performs better
across the board. Additionally, tests show that TimestampTime is effectively
not necessary, which is especially true with data grouped by 5 minute
boundaries by default.