meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Add copy buttons to all
 blocks\n(function() {\n function addCopyButtons() {\n document.querySelectorAll('pre code').forEach(function(codeBlock) {\n if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;\n codeBlock.parentElement.setAttribute('data-copy-added', 'true');\n \n var btn = document.createElement('button');\n btn.textContent = 'Copy';\n btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';\n btn.onmouseover = function() { this.style.opacity = '1'; };\n btn.onmouseout = function() { this.style.opacity = '0.7'; };\n btn.onclick = function() {\n navigator.clipboard.writeText(codeBlock.textContent).then(function() {\n btn.textContent = 'Copied!';\n setTimeout(function() { btn.textContent = 'Copy'; }, 1500);\n });\n };\n codeBlock.parentElement.style.position = 'relative';\n codeBlock.parentElement.appendChild(btn);\n });\n }\n \n addCopyButtons();\n \n // Re-run on dynamic content\n var observer = new MutationObserver(addCopyButtons);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Add Copy Buttons to Code Blocks");
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Force GitHub README to respect dark mode\n(function() {\n var style = document.createElement('style');\n style.textContent = '\n .markdown-body {\n color-scheme: dark light;\n }\n .markdown-body pre { background: #161b22 !important; }\n .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; }\n .markdown-body table th, .markdown-body table td { border-color: #30363d !important; }\n .markdown-body img { background: #0d1117; }\n .markdown-body blockquote { border-left-color: #8b949e; }\n .markdown-body hr { border-color: #30363d; }\n ';\n document.head.appendChild(style);\n})();", "GitHub Dark Mode README Fix"); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Highlight search terms from Google/DuckDuckGo/Bing referrer\n(function() {\n var ref = document.referrer;\n var terms = [];\n \n if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) {\n var url = new URL(ref);\n var q = url.searchParams.get('q') || url.searchParams.get('p');\n if (q) {\n terms = q.split(/\\s+/).filter(function(t) { return t.length > 2; });\n }\n }\n \n if (terms.length === 0) return;\n \n var style = document.createElement('style');\n style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }';\n document.head.appendChild(style);\n \n function highlight(node) {\n if (node.nodeType === 3) { // text node\n var text = node.textContent;\n var found = false;\n terms.forEach(function(term) {\n var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\') + ')', 'gi');\n if (regex.test(text)) {\n found = true;\n var frag = document.createDocumentFragment();\n var parts = text.split(regex);\n parts.forEach(function(part, i) {\n if (i % 2 === 0) {\n frag.appendChild(document.createTextNode(part));\n } else {\n var span = document.createElement('span');\n span.className = 'userscript-highlight';\n span.textContent = part;\n frag.appendChild(span);\n }\n });\n node.parentNode.replaceChild(frag, node);\n }\n });\n } else if (node.nodeType === 1 && node.childNodes) { // element\n var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT'];\n if (!skipTags.includes(node.tagName)) {\n Array.from(node.childNodes).forEach(highlight);\n }\n }\n }\n \n highlight(document.body);\n \n // Re-highlight on dynamic content\n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1 || node.nodeType === 3) highlight(node);\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Highlight Search Terms"); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Strip utm_, fbclid, gclid, etc. from all links on page\n(function() {\n var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content',\n 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid',\n 'ref', 'ref_src', 'source', 'medium', 'campaign'];\n \n function cleanUrl(url) {\n try {\n var u = new URL(url, window.location.origin);\n var changed = false;\n trackingParams.forEach(function(p) {\n if (u.searchParams.has(p)) {\n u.searchParams.delete(p);\n changed = true;\n }\n });\n return changed ? u.toString() : url;\n } catch (e) {\n return url;\n }\n }\n \n function cleanLinks() {\n document.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n \n cleanLinks();\n \n var observer = new MutationObserver(function(mutations) {\n mutations.forEach(function(m) {\n m.addedNodes.forEach(function(node) {\n if (node.nodeType === 1) {\n if (node.tagName === 'A') cleanLinks();\n node.querySelectorAll('a[href]').forEach(function(a) {\n var clean = cleanUrl(a.href);\n if (clean !== a.href) a.href = clean;\n });\n }\n });\n });\n });\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "Remove Tracking Parameters from Links"); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Auto-enable theater mode on YouTube\n(function() {\n function tryTheater() {\n var btn = document.querySelector('button[aria-label=\"Theater mode\"], ytd-player #player button[title=\"Theater mode\"]');\n if (btn && !btn.classList.contains('activated')) {\n btn.click();\n }\n }\n \n // Try immediately\n tryTheater();\n \n // Try after navigation (SPA)\n var lastUrl = location.href;\n setInterval(function() {\n if (location.href !== lastUrl) {\n lastUrl = location.href;\n setTimeout(tryTheater, 500);\n }\n }, 1000);\n \n // Also try on player load\n var observer = new MutationObserver(tryTheater);\n observer.observe(document.body, { childList: true, subtree: true });\n})();", "YouTube Theater Mode Default"); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Remove or un-stick sticky/fixed headers that block content\n(function() {\n function unstick() {\n document.querySelectorAll('header, nav, [role=\"banner\"], .header, .navbar, .sticky, .fixed-top, [style*=\"position: fixed\"], [style*=\"position:sticky\"]').forEach(function(el) {\n if (el.style.position === 'fixed' || el.style.position === 'sticky' || \n getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') {\n el.style.position = 'static';\n el.style.top = 'auto';\n el.style.zIndex = 'auto';\n }\n });\n }\n \n unstick();\n \n var observer = new MutationObserver(unstick);\n observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] });\n})();", "Kill Sticky Headers"); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + '
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad
, 'i'); if (__m === '*' || __re.test(location.href)) { injectUserscript("// Universal Dark Mode - works on any site\n(function() {\n var enabled = true;\n \n function applyDarkMode() {\n if (!enabled) return;\n \n // Create style element if it doesn't exist\n var style = document.getElementById('universal-dark-mode-style');\n if (!style) {\n style = document.createElement('style');\n style.id = 'universal-dark-mode-style';\n document.head.appendChild(style);\n }\n \n // Dark mode CSS - inverts colors but preserves images/video\n style.textContent = '\n /* Invert everything except media */\n html {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #1a1a2e !important;\n }\n \n /* Restore images, videos, iframes, canvas */\n img, video, iframe, canvas, svg, picture, [style*=\"background-image\"] {\n filter: invert(1) hue-rotate(180deg) !important;\n }\n \n /* Preserve specific elements that should not be inverted */\n .no-dark-mode, .no-dark-mode *,\n [data-theme=\"light\"], [data-theme=\"light\"],\n .ace_editor, .ace_editor *,\n .CodeMirror, .CodeMirror *,\n .monaco-editor, .monaco-editor *,\n .markdown-body pre, .markdown-body pre *,\n .highlight, .highlight *,\n pre code, pre code * {\n filter: none !important;\n }\n \n /* Fix common UI elements */\n .modal, .popup, .dropdown-menu, .tooltip, .popover {\n filter: invert(1) hue-rotate(180deg) !important;\n background: #2d2d44 !important;\n border-color: #444 !important;\n }\n \n /* Scrollbars */\n ::-webkit-scrollbar { background: #1a1a2e !important; }\n ::-webkit-scrollbar-thumb { background: #444 !important; }\n ::-webkit-scrollbar-thumb:hover { background: #555 !important; }\n \n /* Selection */\n ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; }\n ';\n }\n \n function removeDarkMode() {\n var style = document.getElementById('universal-dark-mode-style');\n if (style) style.remove();\n }\n \n // Toggle with Alt+Shift+D\n document.addEventListener('keydown', function(e) {\n if (e.altKey && e.shiftKey && e.key === 'D') {\n e.preventDefault();\n enabled = !enabled;\n if (enabled) {\n applyDarkMode();\n console.log('[Universal Dark Mode] Enabled');\n } else {\n removeDarkMode();\n console.log('[Universal Dark Mode] Disabled');\n }\n }\n });\n \n // Apply on load\n applyDarkMode();\n \n // Re-apply on dynamic content\n var observer = new MutationObserver(function(mutations) {\n if (enabled && !document.getElementById('universal-dark-mode-style')) {\n applyDarkMode();\n }\n });\n observer.observe(document.head, { childList: true });\n \n console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle');\n})();", "Universal Dark Mode"); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })();
Skip to content

meta(changelog): Update changelog for 8.43.0 - #14639

Merged
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0
Dec 10, 2024
Merged

meta(changelog): Update changelog for 8.43.0#14639
lforst merged 131 commits into
masterfrom
prepare-release/8.43.0

Conversation

@lforst

Copy link
Copy Markdown
Contributor

No description provided.

aliu39and others added 30 commits October 29, 2024 14:03
s1gr1dand others added 22 commits December 5, 2024 15:15
…14590)
I also apparently somehow forgot a whole bunch of instrumentation in my
previous PR 😬
…`) (#14553)
As injecting the dynamic `import()` came with a bunch of challenges
related to how the build output looks like, this default is changed to
make users use the `--import` CLI flag.
This PR basically reverts this:
#13958
…4605)
Adds serverless (e.g. Vercel, Netlify) improvements:
- Cloining/forking the isolation context when needed
- flushing at the end of the h3 event handler and when an error happens
- using Vercel's `waitUntil` for waiting on Sentry events to send before
shutting down the function
E2E tests and usage in nuxt in:
#14612
---------
Co-authored-by: Sigrid Huemer <32902192+s1gr1d@users.noreply.github.com>
Types for react cache are incompatible so we pin it for now.
Includes the following fixes:
- fix: Catch calls to iframe content document
([#222](getsentry/rrweb#222))
- fix(snapshot): Fix CSS expansion of add CSS property
([#223](getsentry/rrweb#223))
…evaluations (#14582)
Follow-up to #14207. Sentry integration for buffering feature flags manually with an API and auto-capturing them on error events.
Adds Sentry tracing instrumentation for the
[ai](https://www.npmjs.com/package/ai) library.
For more information, see the [`ai`
documentation](https://sdk.vercel.ai/docs/ai-sdk-core/telemetry).
```javascript
const Sentry = require('@sentry/node');
Sentry.init({
integrations: [Sentry.vercelAIIntegration()],
});
```
By default this integration adds tracing support to all `ai` callsites. If you need to disable
collecting spans for a specific call, you can do so by setting `experimental_telemetry.isEnabled` to
`false` in the first argument of the function call.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: false },
});
```
If you want to collect inputs and outputs for a specific call, you must specifically opt-in to each
function call by setting `experimental_telemetry.recordInputs` and `experimental_telemetry.recordOutputs`
to `true`.
```javascript
const result = await generateText({
model: openai('gpt-4-turbo'),
experimental_telemetry: { isEnabled: true, recordInputs: true, recordOutputs: true },
});
```
Adds support for Astro 5 and an E2E test app for Astro 5 with
the new [server
islands](https://docs.astro.build/en/guides/server-islands/) feature.
For server islands, we emit a new `http.server`
transaction for the island-specific additional http requests. Which is
generally good IMO, given that server island requests are routed to the
automatically generated `/_server-island/[name]` Astro endpoint.
…y default (#14595)
We have internal [user
reports](https://sentry.slack.com/archives/CTZCE4WBZ/p1733360320054299)
about an uncaught promise rejection being thrown by a .NET library
called CEFSharp. This lib can embed chromium in a .NET app, which
means, a web page can be displayed within a .NET app. Apparently
there's some problem that spams this error to some of our users.
Bumps
[@sentry/webpack-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/webpack-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/webpack-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/webpack-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps
[@sentry/rollup-plugin](https://github.com/getsentry/sentry-javascript-bundler-plugins)
from 2.22.6 to 2.22.7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/releases"><code>@​sentry/rollup-plugin</code>'s
releases</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/blob/main/CHANGELOG.md"><code>@​sentry/rollup-plugin</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>2.22.7</h2>
<ul>
<li>deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and
require specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li>feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/31978d7a3fc278f42b5f1fbbc72d27dd34426f98"><code>31978d7</code></a>
release: 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/514055a1dbcf80cf4ca60967b233696e50e0b11d"><code>514055a</code></a>
meta: Update changelog for 2.22.7</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7dfea7bad45c825090819bdca09017649a4a5e38"><code>7dfea7b</code></a>
deps: Bump <code>@sentry/cli</code> to <code>2.39.1</code> and require
specific version (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/632">#632</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/040814d43e62f419ce9da4a055fde13bc3216f30"><code>040814d</code></a>
feat(telemetry): Record if plugin is run in CI (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/627">#627</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/f7c468d9b85c95fe15ce66a124bbf83a6b4d3c15"><code>f7c468d</code></a>
chore: Log only to stderr (<a
href="https://redirect.github.com/getsentry/sentry-javascript-bundler-plugins/issues/624">#624</a>)</li>
<li><a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/commit/7f984482c73e4284e8b12a08dfedf23b5a82f0af"><code>7f98448</code></a>
Merge branch 'release/2.22.6'</li>
<li>See full diff in <a
href="https://github.com/getsentry/sentry-javascript-bundler-plugins/compare/2.22.6...2.22.7">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@sentry/rollup-plugin&package-manager=npm_and_yarn&previous-version=2.22.6&new-version=2.22.7)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…#14625)
Bumps
[@opentelemetry/instrumentation](https://github.com/open-telemetry/opentelemetry-js)
from 0.55.0 to 0.56.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/open-telemetry/opentelemetry-js/releases"><code>@​opentelemetry/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>experimental/v0.56.0</h2>
<h2>0.56.0</h2>
<h3>:boom: Breaking Change</h3>
<ul>
<li>feat(otlp-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>OTLPExporterBrowserBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code>)</li>
<li><code>ExportServiceError</code> was intended for internal use and
has been dropped from exports</li>
<li><code>validateAndNormalizeHeaders</code> was intended for internal
use and has been dropped from exports</li>
<li><code>OTLPExporterBase</code> all properties are now private, the
constructor now takes an <code>IOTLPExportDelegate</code>, the type
parameter for config type has been dropped.
<ul>
<li>This type is scheduled for removal in a future version of this
package, please treat all exporters as <code>SpanExporter</code>,
<code>PushMetricExporter</code> or <code>LogRecordExporter</code>, based
on their respective type.</li>
</ul>
</li>
</ul>
</li>
<li>feat(otlp-grpc-exporter-base)!: collapse base classes into one <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5031">#5031</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li><code>OTLPGRPCExporterNodeBase</code> has been removed in favor of a
platform-agnostic implementation (<code>OTLPExporterBase</code> from
<code>@opentelemetry/otlp-exporter-base</code>)</li>
</ul>
</li>
<li>feat(otlp-transformer)!: accept <code>ResourceMetrics</code> in
serializers instead of <code>ResourceMetrics[]</code>
<ul>
<li>(user-facing): <code>ProtobufMetricsSerializer</code> now only
accepts <code>ResourceMetrics</code> instead of
<code>ResourceMetrics[]</code> to align with
<code>PushMetricExporter</code> requirements</li>
<li>(user-facing): <code>JsonMetricsSerializer</code> now only accepts
<code>ResourceMetrics</code> instead of <code>ResourceMetrics[]</code>
to align with <code>PushMetricExporter</code> requirements</li>
</ul>
</li>
</ul>
<h3>:rocket: (Enhancement)</h3>
<ul>
<li>feat(otlp-exporter-base): handle OTLP partial success <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5183">#5183</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>feat(otlp-exporter-base): internally accept a http header provider
function only <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5179">#5179</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>refactor(otlp-exporter-base): don't create blob before sending xhr
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5193">#5193</a>
<a href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a>
<ul>
<li>improves compatibility with some unsupported runtimes</li>
</ul>
</li>
<li>feat(otlp-exporter-base): add http response body to exporter error
<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5204">#5204</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:bug: (Bug Fix)</h3>
<ul>
<li>fix(otlp-exporter-*): de-confuse Nuxt build tooling by not using
'export *' in comments <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5227">#5227</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
<h3>:house: (Internal)</h3>
<ul>
<li>chore(otlp-exporter-*-grpc): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5196">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-http): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5198">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
<li>chore(otlp-exporter-*-proto): clean up tests <a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/pull/5199">#5196</a>
<a
href="https://github.com/pichlermarc"><code>@​pichlermarc</code></a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/85dcbc7c55f002837f1bf1bf01145dbb34a55b40"><code>85dcbc7</code></a>
chore: prepare next release (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5232">#5232</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/b0f73ea11d22f65dc2b2bfe9ddcb0890ea74f533"><code>b0f73ea</code></a>
fix: de-confuse Nuxt build tooling by not using 'export *' in comments
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5227">#5227</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/c9b5bb0bfeb77ab9ce238fc28b505daa87ed419e"><code>c9b5bb0</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5225">#5225</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fc94e4669a94e688204a919165a020323fc1d5c2"><code>fc94e46</code></a>
feat(otlp-exporter-base): implement partial success handling (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5183">#5183</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/fd7f2d951b4b760c6b957ca42f4a0f6b5fa600bd"><code>fd7f2d9</code></a>
fix(deps): update dependency zone.js to v0.15.0 (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5213">#5213</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/17bf0d9a344e7e4dd391d070c4d318f0783529e7"><code>17bf0d9</code></a>
chore(deps): update dependency <code>@​bufbuild/buf</code> to v1.47.2
(<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5210">#5210</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/1249e34591d79407c488466ebd4340e84a6b0e9f"><code>1249e34</code></a>
refactor(otlp-exporter-base): remove exports that were meant to be
internal (...</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/5ad0aa544b680556be5c58ed05d2cea191c6e542"><code>5ad0aa5</code></a>
chore: replace deprecated String.prototype.substr() with substring() (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5209">#5209</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/3bf12847d166db34967355a6de8cee5b4b70fab3"><code>3bf1284</code></a>
feat(otlp-exporter-base): add http response body to exporter error (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5204">#5204</a>)</li>
<li><a
href="https://github.com/open-telemetry/opentelemetry-js/commit/561f8ad3a3b50c61f643d13a42bcd9c2006a6b57"><code>561f8ad</code></a>
fix(docs): broken link for community contribution lifecycle and
processes (<a
href="https://redirect.github.com/open-telemetry/opentelemetry-js/issues/5">#5</a>...</li>
<li>Additional commits viewable in <a
href="https://github.com/open-telemetry/opentelemetry-js/compare/experimental/v0.55.0...experimental/v0.56.0">compare
view</a></li>
</ul>
</details>
<br />
[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@opentelemetry/instrumentation&package-manager=npm_and_yarn&previous-version=0.55.0&new-version=0.56.0)](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)
</details>
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Today, if you pass e.g. `Infinity` or another large number to
`maxSpanWaitDuration`, the SDK will error out because we try to do `new
Array(maxSpanWaitDuration)`, which is impossible.
Ideally, we can properly allow an infinite wait time, but for now this
adds checks to ensure only valid values are passed in there, and we do
not explode.
See
#14154 (comment)
We do install this on CI separately before, so this should not be
necessary (esp. we do not need firefox, as we only run these tests on
chromium).
This should shave off about 20s of the `build` step for all the E2E
tests!
@lforst
lforst changed the base branch from develop to masterDecember 10, 2024 11:59
@lforst
lforst requested a review from a team as a code ownerDecember 10, 2024 11:59
@lforst
lforst merged commit 177e5d1 into masterDec 10, 2024
@lforst
lforst deleted the prepare-release/8.43.0 branch December 10, 2024 12:33
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

15 participants

@lforst@Lms24@aliu39@michellewzhang@billyvg@cmanallen@chargome@mydea@JonasBa@luke-layerhealth@HazAT@s1gr1d@timfish@andreiborza@AbhiPrasad