github-actions[bot]
d1288cf67b
Release HyperDX ( #1752 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-21 07:08:56 +01:00
github-actions[bot]
7679b80f13
Release HyperDX ( #1718 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-18 14:06:08 -08:00
github-actions[bot]
a33efbc4b5
Release HyperDX ( #1701 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-09 15:14:05 -08:00
github-actions[bot]
00703bc121
Release HyperDX ( #1696 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-04 12:30:19 -08:00
github-actions[bot]
a8457e2be9
Release HyperDX ( #1688 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-04 05:21:21 +01:00
github-actions[bot]
d78df68e87
Release HyperDX ( #1656 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-02-02 07:43:34 -08:00
github-actions[bot]
866de771b4
Release HyperDX ( #1592 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-23 15:55:50 -08:00
github-actions[bot]
547e2bfa21
Release HyperDX ( #1542 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2026-01-10 22:19:00 +01:00
Brandon Pereira
e767d79e02
Clean Up Integration Test Console Output ( #1566 )
...
- Also fix issue where integration tests were making actual network requests
- this also slightly speeds up tests
- Fixes issues where there were JS errors thrown during tests due to incorrect mocks, causing confusion when adding/fixing other tests
Before (note: too much content to even see all tests)
https://github.com/user-attachments/assets/346bb57d-aa64-4a62-b666-3cf47fcc2a6c
After:
https://github.com/user-attachments/assets/f6379a93-2d1d-4f12-a467-02d874f98de6
Fixes HDX-3165
2026-01-07 17:38:01 +00:00
github-actions[bot]
9037dae0ac
Release HyperDX ( #1531 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-30 23:19:50 +01:00
github-actions[bot]
81d48e410a
Release HyperDX ( #1455 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-29 08:36:23 -08:00
Brandon Pereira
65bcc1e72e
Improve common-utils build performance and add support for .env.local ( #1466 )
...
- Improves common-utils build process so the server is ready immediately when started. Currently, when the server starts common-utils hasn't finished building, so it starts, crashes, then restarts correctly after build. Now it runs as expected the first try.
- Adds support for `.env.local` so you can easily provide secret keys without always passing it in via the CLI
- These features already exist downstream, but they seem necessary fro oss as well.
2025-12-11 23:07:16 +00:00
github-actions[bot]
e46ec835ee
Release HyperDX ( #1381 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-12-08 16:58:57 +01:00
Jarrad
cac4d3ddca
add aws4 to api to allow mongo aws auth ( #1345 )
2025-11-29 04:30:28 +01:00
Brandon Pereira
7405d18308
Bump Typescript Version (app) ( #1401 )
...
As part of implementing a dependency upgrade (nuqs) we noticed that it requires Typescript 5, but we are on 4.
We should update this dependency so we don't get too outdated, by bumping this we can unblock other upgrades.
The biggest painpoint in this upgrade was the way that Typescript handles ESM in v4->v5 broke ts-jest ESM handling logic. I have mitigated this problem but using a lower version of `flat` which supports CJS, and mocking `ky` package since it's not actually needed for tests.
Fixes HDX-2900
2025-11-24 21:19:42 +00:00
github-actions[bot]
d322cd967d
Release HyperDX ( #1325 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-11-19 04:24:41 +01:00
github-actions[bot]
f98193852c
Release HyperDX ( #1289 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-30 11:13:50 +01:00
github-actions[bot]
0325416235
Release HyperDX ( #1224 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-10-22 16:13:54 +02:00
Warren
131a1c1edb
revert: api esbuild ( #1280 )
...
This PR reverts https://github.com/hyperdxio/hyperdx/pull/937
Ref: HDX-2620
2025-10-21 09:27:47 +00:00
Warren
348a4044e8
migration: migrate to Pino (logger) ( #1269 )
...
Summary
Migrates the HyperDX API and related services from Winston to Pino for standardized,
faster, and more structured logging with improved OpenTelemetry integration.
Changes
Core Migration
- Replaced Winston with Pino across all logging infrastructure
- Upgraded @hyperdx/node-opentelemetry from v0.8.2 to v0.9.0 to support Pino
transport
- Removed deprecated dependencies:
- winston and express-winston
- @opentelemetry/host-metrics and @opentelemetry/sdk-metrics (consolidated into
newer OTel SDK)
- Added new dependencies:
- pino and pino-http for core logging
- pino-pretty for development console output
Logger Configuration (packages/api/src/utils/logger.ts)
Production:
- Outputs stringified JSON to stdout via pino/file transport
- Maintains HyperDX transport integration when API key is configured
- Includes full OpenTelemetry trace context (trace_id, span_id, trace_flags)
<img width="830" height="184" alt="Screenshot 2025-10-14 at 4 31 36 PM" src="https://github.com/user-attachments/assets/82e60919-5c4d-4688-a6f5-d54632aef749 " />
Development:
- Uses pino-pretty for human-readable, colorized console output
- Hides verbose fields from console: pid, hostname, trace_id, span_id, trace_flags
- HTTP request/response objects excluded from logs via custom serializers
<img width="825" height="350" alt="image" src="https://github.com/user-attachments/assets/64b293d8-bc95-4715-931a-dbf73483d247 " />
HTTP Logging:
- Replaced express-winston with pino-http
- Custom log levels based on HTTP status codes (warn for 4xx, error for 5xx+)
- Simplified log messages: HTTP {method} {url}
Error Logging Updates
Updated error logging patterns throughout the codebase to follow Pino's structured
logging conventions:
// Before (Winston)
logger.error('Error message:', error);
// After (Pino)
logger.error({ err: error }, 'Error message');
Ref: HDX-2588
This PR should also address issue: https://github.com/hyperdxio/hyperdx/issues/1035
2025-10-15 17:15:46 +00:00
Dan Hable
c90a93e6c3
fix(alerts): bump cron package to pick up stalled job fix ( #1244 )
...
Ref: https://github.com/kelektiv/node-cron/issues/962
2025-10-07 21:39:48 +00:00
Mike Shi
b8efb4924c
chart ai assistant ( #1243 )
2025-10-07 14:47:10 -04:00
github-actions[bot]
fb1b035630
Release HyperDX ( #1197 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-29 16:05:02 -07:00
github-actions[bot]
a9715350ee
Release HyperDX ( #1170 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-20 21:03:57 -07:00
Warren
df259392a3
chore: remove unused npm packages (api) ( #1169 )
2025-09-15 18:38:59 +00:00
github-actions[bot]
6d1a123322
Release HyperDX ( #1149 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-12 13:43:16 -07:00
Drew Davis
45e8e1b62d
fix: Update tsconfigs to resolve IDE type errors ( #1150 )
2025-09-11 08:55:14 -04:00
dependabot[bot]
b139d90b47
build(deps): bump on-headers from 1.0.2 to 1.1.0 ( #1006 )
...
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [on-headers](https://github.com/jshttp/on-headers ) from 1.0.2 to 1.1.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/jshttp/on-headers/releases ">on-headers's releases</a>.</em></p>
<blockquote>
<h2>1.1.0</h2>
<h2>Important</h2>
<ul>
<li>Fix <a href="https://www.cve.org/CVERecord?id=CVE-2025-7339 ">CVE-2025-7339</a> (<a href="https://github.com/jshttp/on-headers/security/advisories/GHSA-76c9-3jph-rj3q ">GHSA-76c9-3jph-rj3q</a>)</li>
</ul>
<h2>What's Changed</h2>
<ul>
<li>Migrate CI pipeline to GitHub actions by <a href="https://github.com/carpasse "><code>@carpasse</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/12 ">jshttp/on-headers#12</a></li>
<li>fix README.md badges by <a href="https://github.com/carpasse "><code>@carpasse</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/13 ">jshttp/on-headers#13</a></li>
<li>add OSSF scorecard action by <a href="https://github.com/carpasse "><code>@carpasse</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/14 ">jshttp/on-headers#14</a></li>
<li>fix: use <code>ubuntu-latest</code> as ci runner by <a href="https://github.com/UlisesGascon "><code>@UlisesGascon</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/19 ">jshttp/on-headers#19</a></li>
<li>ci: apply OSSF Scorecard security best practices by <a href="https://github.com/UlisesGascon "><code>@UlisesGascon</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/20 ">jshttp/on-headers#20</a></li>
<li>👷 add upstream change detection by <a href="https://github.com/ctcpip "><code>@ctcpip</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/31 ">jshttp/on-headers#31</a></li>
<li>✨ add script to update known hashes by <a href="https://github.com/ctcpip "><code>@ctcpip</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/32 ">jshttp/on-headers#32</a></li>
<li>💚 update CI - add newer node versions by <a href="https://github.com/ctcpip "><code>@ctcpip</code></a> in <a href="https://redirect.github.com/jshttp/on-headers/pull/33 ">jshttp/on-headers#33</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/carpasse "><code>@carpasse</code></a> made their first contribution in <a href="https://redirect.github.com/jshttp/on-headers/pull/12 ">jshttp/on-headers#12</a></li>
<li><a href="https://github.com/UlisesGascon "><code>@UlisesGascon</code></a> made their first contribution in <a href="https://redirect.github.com/jshttp/on-headers/pull/19 ">jshttp/on-headers#19</a></li>
<li><a href="https://github.com/ctcpip "><code>@ctcpip</code></a> made their first contribution in <a href="https://redirect.github.com/jshttp/on-headers/pull/31 ">jshttp/on-headers#31</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/jshttp/on-headers/compare/v1.0.2...v1.1.0 ">https://github.com/jshttp/on-headers/compare/v1.0.2...v1.1.0 </a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/jshttp/on-headers/blob/master/HISTORY.md ">on-headers's changelog</a>.</em></p>
<blockquote>
<h1>1.1.0 / 2025-07-17</h1>
<ul>
<li>Fix <a href="https://www.cve.org/CVERecord?id=CVE-2025-7339 ">CVE-2025-7339</a> (<a href="https://github.com/jshttp/on-headers/security/advisories/GHSA-76c9-3jph-rj3q ">GHSA-76c9-3jph-rj3q</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="4b017af88f "><code>4b017af</code></a> 1.1.0</li>
<li><a href="b636f2d08e "><code>b636f2d</code></a> ♻️ refactor header array code</li>
<li><a href="3e2c2d46c3 "><code>3e2c2d4</code></a> ✨ ignore falsy header keys, matching node behavior</li>
<li><a href="172eb41b99 "><code>172eb41</code></a> ✨ support duplicate headers</li>
<li><a href="c6e384908c "><code>c6e3849</code></a> 🔒 ️ fix array handling</li>
<li><a href="6893518341 "><code>6893518</code></a> 💚 update CI - add newer node versions</li>
<li><a href="56a345d82b "><code>56a345d</code></a> ✨ add script to update known hashes</li>
<li><a href="175ab21715 "><code>175ab21</code></a> 👷 add upstream change detection (<a href="https://redirect.github.com/jshttp/on-headers/issues/31 ">#31</a>)</li>
<li><a href="ce0b2c8fcd "><code>ce0b2c8</code></a> ci: apply OSSF Scorecard security best practices (<a href="https://redirect.github.com/jshttp/on-headers/issues/20 ">#20</a>)</li>
<li><a href="1a38c543e7 "><code>1a38c54</code></a> fix: use <code>ubuntu-latest</code> as ci runner (<a href="https://redirect.github.com/jshttp/on-headers/issues/19 ">#19</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/jshttp/on-headers/compare/v1.0.2...v1.1.0 ">compare view</a></li>
</ul>
</details>
<details>
<summary>Maintainer changes</summary>
<p>This version was pushed to npm by <a href="https://www.npmjs.com/~ulisesgascon ">ulisesgascon</a>, a new releaser for on-headers since your current version.</p>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperdxio/hyperdx/network/alerts ).
</details>
2025-09-08 15:49:09 +00:00
github-actions[bot]
d298874a78
Release HyperDX ( #1106 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-09-08 08:14:58 -07:00
Warren
d6f8058e52
chore: bump @clickhouse/client to v1.12.1 + centralize @clickhouse/client ( #1110 )
...
1. deprecate unused `packages/api/src/clickhouse`
2. deprecate unused route `/datasources`
3. introduce `getJSNativeCreateClient` in common-utils
4. uninstall `@clickhouse/client` in api package
5. uninstall `@clickhouse/client` + `@clickhouse/client-web` in app package
6. bump `@clickhouse/client` in common-utils package to v1.12.1
2025-08-28 00:56:17 +00:00
Dan Hable
261d4693a3
feat: limit how many tasks are executing at any time ( #1103 )
...
Allows user defined concurrency limit when evaluating check alert tasks. Includes some further refinements of the task execution types to make actual task execution more type safe.
2025-08-25 19:01:03 +00:00
github-actions[bot]
1e1baa4205
Release HyperDX ( #1090 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-25 00:00:43 -07:00
github-actions[bot]
6d30caf023
Release HyperDX ( #1082 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-19 10:15:56 -07:00
github-actions[bot]
adb05ac723
Release HyperDX ( #1066 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-18 14:54:21 -07:00
Candido Sales Gomes
5a59d32c00
chore: Upgraded NX from version 16.8.1 to 21.3.11 ( #1076 )
...
- ✅ NX Version: 21.3.11 (Local)
- ✅ All existing projects properly recognized: @hyperdx/common-utils, @hyperdx/api, @hyperdx/app
- ✅ All NX commands are working properly
- ✅ Edited the `.vscode/settings.json` adding `editor.tabSize`, `editor.insertSpaces`, `editor.detectIndentation` to keep the format standard for all developers.
- ✅ Updated the `changeset`
## Why? Benefits
- Monorepo optimization - Improved incremental builds when only one package changes
- Enhanced Caching - More granular and intelligent caching mechanisms reduce redundant work
- 20-40% faster build times in CI/CD due to improved caching
- Improved Project Graph - Improved support for modern build tools (ESBuild, SWC, etc.)
- Enhanced visualization and analysis of project dependencies
- Clearer migration guides for future upgrades
- More intuitive commands and better error messages
## Tested
- `npx nx show projects`
- `npx nx graph --dry-run`
- `npx nx run @hyperdx/common-utils:dev --help`
- `bun run app:dev:local`
Lint
```
hyperdx/packages/common-utils && npm run build
npx nx run-many -t ci:lint
```
<img width="1126" height="314" alt="CleanShot 2025-08-17 at 22 47 19@2x" src="https://github.com/user-attachments/assets/e5186e1b-9799-491f-8ee8-25b26bd82a54 " />
## Evidence
<img width="3810" height="1724" alt="CleanShot 2025-07-24 at 21 15 24@2x" src="https://github.com/user-attachments/assets/1f4d316e-de14-4e35-9098-3b33420afc18 " />
2025-08-18 17:16:05 +00:00
github-actions[bot]
345ff7e26f
Release HyperDX ( #1042 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-08-08 14:07:19 -07:00
github-actions[bot]
229b511f64
Release HyperDX ( #1033 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-29 12:07:57 -07:00
Aaron Knudtson
eed38e8849
chore: bump node version ( #1028 )
...
Closes HDX-2031
This node version is already used as the docker image version, so I'm not expecting anything to break. Tested dev and all-in-one image
2025-07-29 14:06:57 +00:00
github-actions[bot]
8da7042ae0
Release HyperDX ( #1013 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-28 01:20:14 -07:00
Warren
21b5df66aa
fix: prevent the app from crashing due to a strict mode exception ( #1011 )
...
The api throws 504 and hangs when invalid credentials are given on login page.
> {"level":"error","message":"'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them","name":"TypeError","stack":"TypeError: 'caller', 'callee', and 'arguments' properties may not be accessed on strict mode functions or the arguments objects for calls to them\n at i (/app/packages/api/index.js:335:35331)\n at new i (/app/packages/api/index.js:335:35235)\n at PBKDF2Job.<anonymous> (/app/packages/api/index.js:335:38225)\n
at job.ondone (node:internal/crypto/pbkdf2:56:12)"
The root cause is due to the strict mode enforced by the esbuild. The fix here is to fork the `passport-local-mongoose` and fix the part that causes the error (edb1149704 )
Ref: HDX-2036
2025-07-23 17:55:03 +00:00
github-actions[bot]
c8729b8479
Release HyperDX ( #1001 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-21 09:22:05 -07:00
github-actions[bot]
8bbc5f4398
Release HyperDX ( #979 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-12 11:11:32 -07:00
github-actions[bot]
7a14dea07a
Release HyperDX ( #970 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-07-06 23:14:43 -07:00
github-actions[bot]
26e5bd7df7
Release HyperDX ( #946 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-27 13:28:17 -07:00
github-actions[bot]
326e52ea04
Release HyperDX ( #917 )
...
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
2025-06-24 14:26:00 -07:00
Aaron Knudtson
ad6887796f
feat: bundle api for image size reduction ( #937 )
...
all-in-one image: 1.51 gb -> 1.21 gb
app image: 573 mb -> 271 mb
Ref HDX-1803
2025-06-24 15:51:34 +00:00
dependabot[bot]
707ba7fb06
build(deps): bump http-proxy-middleware from 3.0.3 to 3.0.5 ( #879 )
...
Bumps [http-proxy-middleware](https://github.com/chimurai/http-proxy-middleware ) from 3.0.3 to 3.0.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/chimurai/http-proxy-middleware/releases ">http-proxy-middleware's releases</a>.</em></p>
<blockquote>
<h2>v3.0.5</h2>
<h2>What's Changed</h2>
<ul>
<li>fix(fixRequestBody): check readableLength by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1096 ">chimurai/http-proxy-middleware#1096</a></li>
<li>chore(package): v3.0.5 by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1098 ">chimurai/http-proxy-middleware#1098</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/chimurai/http-proxy-middleware/compare/v3.0.4...v3.0.5 ">https://github.com/chimurai/http-proxy-middleware/compare/v3.0.4...v3.0.5 </a></p>
<h2>v3.0.4</h2>
<h2>What's Changed</h2>
<ul>
<li>chore(package): bump dev dependencies by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1045 ">chimurai/http-proxy-middleware#1045</a></li>
<li>chore(package): update yarn.lock by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1046 ">chimurai/http-proxy-middleware#1046</a></li>
<li>docs(readme): fix example code syntax error by <a href="https://github.com/17hz "><code>@17hz</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1014 ">chimurai/http-proxy-middleware#1014</a></li>
<li>chore(package): bump express to v4.21.1 by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1047 ">chimurai/http-proxy-middleware#1047</a></li>
<li>chore(examples): update yarn.lock by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1048 ">chimurai/http-proxy-middleware#1048</a></li>
<li>chore(package): bump dev deps by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1059 ">chimurai/http-proxy-middleware#1059</a></li>
<li>chore(package): bump dev dependencies by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1060 ">chimurai/http-proxy-middleware#1060</a></li>
<li>chore(package): bump dev dependencies by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1074 ">chimurai/http-proxy-middleware#1074</a></li>
<li>ci(github-actions): pipeline improvements by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1082 ">chimurai/http-proxy-middleware#1082</a></li>
<li>feat(types): export Plugin type by <a href="https://github.com/oktapodia "><code>@oktapodia</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1071 ">chimurai/http-proxy-middleware#1071</a></li>
<li>fix(fixRequestBody): support multipart/form-data by <a href="https://github.com/JS-mark "><code>@JS-mark</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/896 ">chimurai/http-proxy-middleware#896</a></li>
<li>chore(package.json): bump dev deps by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1083 ">chimurai/http-proxy-middleware#1083</a></li>
<li>ci(package): patch http-proxy by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1084 ">chimurai/http-proxy-middleware#1084</a></li>
<li>ci(pkg-pr-new): publish package for testing purposes by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1085 ">chimurai/http-proxy-middleware#1085</a></li>
<li>build(patch-package): run patch-package in 'development' only by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1086 ">chimurai/http-proxy-middleware#1086</a></li>
<li>chore(examples): update next deps by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1087 ">chimurai/http-proxy-middleware#1087</a></li>
<li>ci(github-actions): update spellcheck config by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1088 ">chimurai/http-proxy-middleware#1088</a></li>
<li>fix(websocket): handle errors in handleUpgrade by <a href="https://github.com/nwalters512 "><code>@nwalters512</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/823 ">chimurai/http-proxy-middleware#823</a></li>
<li>fix(fixRequestBody): prevent multiple .write() calls by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1089 ">chimurai/http-proxy-middleware#1089</a></li>
<li>fix(fixRequestBody): handle invalid request by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1092 ">chimurai/http-proxy-middleware#1092</a></li>
<li>docs(CHANGELOG): update changelog by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1093 ">chimurai/http-proxy-middleware#1093</a></li>
<li>chore(package): v3.0.4 by <a href="https://github.com/chimurai "><code>@chimurai</code></a> in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1095 ">chimurai/http-proxy-middleware#1095</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/17hz "><code>@17hz</code></a> made their first contribution in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1014 ">chimurai/http-proxy-middleware#1014</a></li>
<li><a href="https://github.com/oktapodia "><code>@oktapodia</code></a> made their first contribution in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1071 ">chimurai/http-proxy-middleware#1071</a></li>
<li><a href="https://github.com/JS-mark "><code>@JS-mark</code></a> made their first contribution in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/896 ">chimurai/http-proxy-middleware#896</a></li>
<li><a href="https://github.com/nwalters512 "><code>@nwalters512</code></a> made their first contribution in <a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/823 ">chimurai/http-proxy-middleware#823</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a href="https://github.com/chimurai/http-proxy-middleware/compare/v3.0.3...v3.0.4 ">https://github.com/chimurai/http-proxy-middleware/compare/v3.0.3...v3.0.4 </a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/chimurai/http-proxy-middleware/blob/master/CHANGELOG.md ">http-proxy-middleware's changelog</a>.</em></p>
<blockquote>
<h2><a href="https://github.com/chimurai/http-proxy-middleware/releases/tag/v3.0.5 ">v3.0.5</a></h2>
<ul>
<li>fix(fixRequestBody): check readableLength (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1096 ">#1096</a>)</li>
</ul>
<h2><a href="https://github.com/chimurai/http-proxy-middleware/releases/tag/v3.0.4 ">v3.0.4</a></h2>
<ul>
<li>fix(fixRequestBody): handle invalid request (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1092 ">#1092</a>)</li>
<li>fix(fixRequestBody): prevent multiple .write() calls (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1089 ">#1089</a>)</li>
<li>fix(websocket): handle errors in handleUpgrade (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/823 ">#823</a>)</li>
<li>ci(package): patch http-proxy (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1084 ">#1084</a>)</li>
<li>fix(fixRequestBody): support multipart/form-data (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/896 ">#896</a>)</li>
<li>feat(types): export Plugin type (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/pull/1071 ">#1071</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a href="d3851ed007 "><code>d3851ed</code></a> chore(package): v3.0.5 (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1098 ">#1098</a>)</li>
<li><a href="1bdccbeec2 "><code>1bdccbe</code></a> fix(fixRequestBody): check readableLength (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1096 ">#1096</a>)</li>
<li><a href="01934d33b1 "><code>01934d3</code></a> chore(package): v3.0.4 (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1095 ">#1095</a>)</li>
<li><a href="3364c0ab41 "><code>3364c0a</code></a> docs(CHANGELOG): update changelog (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1093 ">#1093</a>)</li>
<li><a href="bd3c1243d0 "><code>bd3c124</code></a> fix(fixRequestBody): handle invalid request (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1092 ">#1092</a>)</li>
<li><a href="020976044d "><code>0209760</code></a> fix(fixRequestBody): prevent multiple .write() calls (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1089 ">#1089</a>)</li>
<li><a href="fd0f568251 "><code>fd0f568</code></a> fix(websocket): handle errors in handleUpgrade (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/823 ">#823</a>)</li>
<li><a href="e94087e8d0 "><code>e94087e</code></a> ci(github-actions): update spellcheck config (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1088 ">#1088</a>)</li>
<li><a href="397748a06d "><code>397748a</code></a> chore(examples): update next deps (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1087 ">#1087</a>)</li>
<li><a href="6fb6032f67 "><code>6fb6032</code></a> build(patch-package): run patch-package in 'development' only (<a href="https://redirect.github.com/chimurai/http-proxy-middleware/issues/1086 ">#1086</a>)</li>
<li>Additional commits viewable in <a href="https://github.com/chimurai/http-proxy-middleware/compare/v3.0.3...v3.0.5 ">compare view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores )
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/hyperdxio/hyperdx/network/alerts ).
</details>
Co-authored-by: Aaron Knudtson <87577305+knudtty@users.noreply.github.com>
2025-06-09 17:13:29 +00:00
github-actions[bot]
0fb06eeb0d
Release HyperDX ( #888 )
...
This PR was opened by the [Changesets release](https://github.com/changesets/action ) 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/api@2.0.1
### Patch Changes
- ab3b5cb : perf: merge api + app packages to dedupe node_modules
- ab387e1 : fix: missing types in app build
- d1dc2ec : Bumped mongodb driver support to allow for AWS IAM authentication. This drops support for MongoDB 3.6.
- 43edac8 : chore: bump @hyperdx/node-opentelemetry to v0.8.2
- fa11fbb : fix: usage stats missing cluster id
- Updated dependencies [ab3b5cb ]
- Updated dependencies [ab387e1 ]
- Updated dependencies [fce5ee5 ]
- @hyperdx/common-utils@0.2.1
## @hyperdx/app@2.0.1
### Patch Changes
- ab3b5cb : perf: merge api + app packages to dedupe node_modules
- ab387e1 : fix: missing types in app build
- fce5ee5 : feat: add load more to features and improve querying
- dfdb2d7 : Better loading state for events patterns table
- 3eeb530 : fix: date range undefined error causing issue loading keyvals for autocomplete
- 8874648 : fix: Pollyfill crypto.randomUUID
- 43edac8 : chore: bump @hyperdx/node-opentelemetry to v0.8.2
- Updated dependencies [ab3b5cb ]
- Updated dependencies [ab387e1 ]
- Updated dependencies [fce5ee5 ]
- @hyperdx/common-utils@0.2.1
## @hyperdx/common-utils@0.2.1
### Patch Changes
- ab3b5cb : perf: merge api + app packages to dedupe node_modules
- ab387e1 : fix: missing types in app build
- fce5ee5 : feat: add load more to features and improve querying
Co-authored-by: Warren <5959690+wrn14897@users.noreply.github.com>
2025-06-06 00:15:20 +00:00
Warren
43edac8b01
chore: bump @hyperdx/node-opentelemetry to v0.8.2 ( #911 )
...
ref: HDX-1821
2025-06-04 18:41:07 +00:00
Dan Hable
d1dc2ec050
chore: bump mongodb and mongoose versions ( #887 )
...
Allows for AWS IAM authentication.
Ref: HDX-1812
2025-05-30 17:36:41 +00:00