Skip to content

build(deps): bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2 - #1586

Merged
lvca merged 1 commit into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-deploy-plugin-3.1.2
May 6, 2024
Merged

lvca merged 1 commit into
mainfrom
dependabot/maven/org.apache.maven.plugins-maven-deploy-plugin-3.1.2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 6, 2024

Copy link
Copy Markdown
Contributor

Bumps org.apache.maven.plugins:maven-deploy-plugin from 3.1.1 to 3.1.2.

Release notes

Sourced from org.apache.maven.plugins:maven-deploy-plugin's releases.

3.1.2

Release Notes - Maven Deploy Plugin - Version 3.1.2


What's Changed

New Contributors

Full Changelog: apache/maven-deploy-plugin@maven-deploy-plugin-3.1.1...maven-deploy-plugin-3.1.2

Commits
  • 4f016bc [maven-release-plugin] prepare release maven-deploy-plugin-3.1.2
  • 0ed18be Remove workaround, handle it centrally
  • b9c1c8b [MDEPLOY-314] Include artifactId in DeployMojo#processProject messages
  • 74d331b [MDEPLOY-316] Parent 42 and prerequisite 3.6.3 (#54)
  • ac9c49d Bump org.mockito:mockito-core from 2.28.2 to 4.11.0
  • de7cefb Bump apache/maven-gh-actions-shared from 3 to 4
  • edf85d7 Add Dependabot
  • 390e610 [MDEPLOY-313] Update to parent 41, cleanup (#47)
  • 29f3c81 DeployFileMojo#readModel(File): fixed MojoExecutionException javadoc
  • 9039fc6 Type: fill --> file
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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)

Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/apache/maven-deploy-plugin/releases)
- [Commits](apache/maven-deploy-plugin@maven-deploy-plugin-3.1.1...maven-deploy-plugin-3.1.2)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-deploy-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java labels May 6, 2024
@lvca lvca self-assigned this May 6, 2024
@lvca lvca added this to the 24.5.1 milestone May 6, 2024
@lvca
lvca merged commit ab1bce0 into main May 6, 2024
@dependabot
dependabot Bot deleted the dependabot/maven/org.apache.maven.plugins-maven-deploy-plugin-3.1.2 branch May 6, 2024 05:28
mergify Bot added a commit that referenced this pull request Aug 29, 2025
…2 in /studio [skip ci]

Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 6.11.0 to 7.1.2.
Release notes

*Sourced from [css-loader's releases](https://github.com/webpack-contrib/css-loader/releases).*

> v7.1.2
> ------
>
> ### [7.1.2](webpack/css-loader@v7.1.1...v7.1.2) (2024-05-22)
>
> ### Bug Fixes
>
> * keep order of `@import`s with the `webpackIgnore` comment ([#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600)) ([76757ef](webpack/css-loader@76757ef))
>
> v7.1.1
> ------
>
> ### [7.1.1](webpack/css-loader@v7.1.0...v7.1.1) (2024-04-10)
>
> ### Bug Fixes
>
> * automatically rename class `default` to `_default` when named export is enabled ([#1590](https://redirect.github.com/webpack-contrib/css-loader/issues/1590)) ([d6c31a1](webpack/css-loader@d6c31a1))
>
> v7.1.0
> ------
>
> [7.1.0](webpack/css-loader@v7.0.0...v7.1.0) (2024-04-08)
> -------------------------------------------------------------------------------------------
>
> ### Features
>
> * added the `getJSON` option to output CSS modules mapping ([#1577](https://redirect.github.com/webpack-contrib/css-loader/issues/1577)) ([af834b4](webpack/css-loader@af834b4))
>
> v7.0.0
> ------
>
> [7.0.0](webpack/css-loader@v6.11.0...v7.0.0) (2024-04-04)
> --------------------------------------------------------------------------------------------
>
> ### ⚠ BREAKING CHANGES
>
> * The `modules.namedExport` option is `true` by default if you enable the `esModule` option
>
> Migration guide:
>
> Before:
>
> ```
> import style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> After:
>
> ```
> import * as style from "./style.css";
>
> console.log(style.myClass);
> ```

... (truncated)


Changelog

*Sourced from [css-loader's changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md).*

> ### [7.1.2](webpack/css-loader@v7.1.1...v7.1.2) (2024-05-22)
>
> ### Bug Fixes
>
> * keep order of `@import`s with the `webpackIgnore` comment ([#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600)) ([76757ef](webpack/css-loader@76757ef))
>
> ### [7.1.1](webpack/css-loader@v7.1.0...v7.1.1) (2024-04-10)
>
> ### Bug Fixes
>
> * automatically rename class `default` to `_default` when named export is enabled ([#1590](https://redirect.github.com/webpack-contrib/css-loader/issues/1590)) ([d6c31a1](webpack/css-loader@d6c31a1))
>
> [7.1.0](webpack/css-loader@v7.0.0...v7.1.0) (2024-04-08)
> -------------------------------------------------------------------------------------------
>
> ### Features
>
> * added the `getJSON` option to output CSS modules mapping ([#1577](https://redirect.github.com/webpack-contrib/css-loader/issues/1577)) ([af834b4](webpack/css-loader@af834b4))
>
> [7.0.0](webpack/css-loader@v6.11.0...v7.0.0) (2024-04-04)
> --------------------------------------------------------------------------------------------
>
> ### ⚠ BREAKING CHANGES
>
> * The `modules.namedExport` option is `true` by default if you enable the `esModule` option
>
> Migration guide:
>
> Before:
>
> ```
> import style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> After:
>
> ```
> import * as style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> To restore 6.x behavior, please use:
>
> ```
> module.exports = {
> </tr></table>
> ```

... (truncated)


Commits

* [`d5ba44a`](webpack/css-loader@d5ba44a) chore(release): 7.1.2
* [`76757ef`](webpack/css-loader@76757ef) fix: keep order of `@import`s with the `webpackIgnore` comment ([#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600))
* [`4b41689`](webpack/css-loader@4b41689) ci: use node v22 ([#1596](https://redirect.github.com/webpack-contrib/css-loader/issues/1596))
* [`2068222`](webpack/css-loader@2068222) chore: update dependencies to latest version ([#1595](https://redirect.github.com/webpack-contrib/css-loader/issues/1595))
* [`e006f66`](webpack/css-loader@e006f66) refactor: use `environment` to get `templateLiteral` value ([#1591](https://redirect.github.com/webpack-contrib/css-loader/issues/1591))
* [`5c717c9`](webpack/css-loader@5c717c9) chore(release): 7.1.1
* [`d6c31a1`](webpack/css-loader@d6c31a1) fix: automatically rename class `default` to `_default` when named export is ...
* [`b162e25`](webpack/css-loader@b162e25) chore(release): 7.1.0
* [`15f793d`](webpack/css-loader@15f793d) docs: update logic ([#1587](https://redirect.github.com/webpack-contrib/css-loader/issues/1587))
* [`9c165a4`](webpack/css-loader@9c165a4) docs: update migration guide ([#1586](https://redirect.github.com/webpack-contrib/css-loader/issues/1586))
* Additional commits viewable in [compare view](webpack/css-loader@v6.11.0...v7.1.2)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=css-loader&package-manager=npm\_and\_yarn&previous-version=6.11.0&new-version=7.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
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  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)
> \*\*Note\*\*
> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…eData#1586)

Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.1 to 3.1.2.
- [Release notes](https://github.com/apache/maven-deploy-plugin/releases)
- [Commits](apache/maven-deploy-plugin@maven-deploy-plugin-3.1.1...maven-deploy-plugin-3.1.2)

---
updated-dependencies:
- dependency-name: org.apache.maven.plugins:maven-deploy-plugin
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
tae898 pushed a commit to humemai/arcadedb-embedded-python that referenced this pull request Jun 28, 2026
…2 in /studio [skip ci]

Bumps [css-loader](https://github.com/webpack-contrib/css-loader) from 6.11.0 to 7.1.2.
Release notes

*Sourced from [css-loader's releases](https://github.com/webpack-contrib/css-loader/releases).*

> v7.1.2
> ------
>
> ### [7.1.2](webpack/css-loader@v7.1.1...v7.1.2) (2024-05-22)
>
> ### Bug Fixes
>
> * keep order of `@import`s with the `webpackIgnore` comment ([ArcadeData#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600)) ([76757ef](webpack/css-loader@76757ef))
>
> v7.1.1
> ------
>
> ### [7.1.1](webpack/css-loader@v7.1.0...v7.1.1) (2024-04-10)
>
> ### Bug Fixes
>
> * automatically rename class `default` to `_default` when named export is enabled ([ArcadeData#1590](https://redirect.github.com/webpack-contrib/css-loader/issues/1590)) ([d6c31a1](webpack/css-loader@d6c31a1))
>
> v7.1.0
> ------
>
> [7.1.0](webpack/css-loader@v7.0.0...v7.1.0) (2024-04-08)
> -------------------------------------------------------------------------------------------
>
> ### Features
>
> * added the `getJSON` option to output CSS modules mapping ([ArcadeData#1577](https://redirect.github.com/webpack-contrib/css-loader/issues/1577)) ([af834b4](webpack/css-loader@af834b4))
>
> v7.0.0
> ------
>
> [7.0.0](webpack/css-loader@v6.11.0...v7.0.0) (2024-04-04)
> --------------------------------------------------------------------------------------------
>
> ### ⚠ BREAKING CHANGES
>
> * The `modules.namedExport` option is `true` by default if you enable the `esModule` option
>
> Migration guide:
>
> Before:
>
> ```
> import style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> After:
>
> ```
> import * as style from "./style.css";
>
> console.log(style.myClass);
> ```

... (truncated)


Changelog

*Sourced from [css-loader's changelog](https://github.com/webpack-contrib/css-loader/blob/master/CHANGELOG.md).*

> ### [7.1.2](webpack/css-loader@v7.1.1...v7.1.2) (2024-05-22)
>
> ### Bug Fixes
>
> * keep order of `@import`s with the `webpackIgnore` comment ([ArcadeData#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600)) ([76757ef](webpack/css-loader@76757ef))
>
> ### [7.1.1](webpack/css-loader@v7.1.0...v7.1.1) (2024-04-10)
>
> ### Bug Fixes
>
> * automatically rename class `default` to `_default` when named export is enabled ([ArcadeData#1590](https://redirect.github.com/webpack-contrib/css-loader/issues/1590)) ([d6c31a1](webpack/css-loader@d6c31a1))
>
> [7.1.0](webpack/css-loader@v7.0.0...v7.1.0) (2024-04-08)
> -------------------------------------------------------------------------------------------
>
> ### Features
>
> * added the `getJSON` option to output CSS modules mapping ([ArcadeData#1577](https://redirect.github.com/webpack-contrib/css-loader/issues/1577)) ([af834b4](webpack/css-loader@af834b4))
>
> [7.0.0](webpack/css-loader@v6.11.0...v7.0.0) (2024-04-04)
> --------------------------------------------------------------------------------------------
>
> ### ⚠ BREAKING CHANGES
>
> * The `modules.namedExport` option is `true` by default if you enable the `esModule` option
>
> Migration guide:
>
> Before:
>
> ```
> import style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> After:
>
> ```
> import * as style from "./style.css";
>
> console.log(style.myClass);
> ```
>
> To restore 6.x behavior, please use:
>
> ```
> module.exports = {
> </tr></table>
> ```

... (truncated)


Commits

* [`d5ba44a`](webpack/css-loader@d5ba44a) chore(release): 7.1.2
* [`76757ef`](webpack/css-loader@76757ef) fix: keep order of `@import`s with the `webpackIgnore` comment ([ArcadeData#1600](https://redirect.github.com/webpack-contrib/css-loader/issues/1600))
* [`4b41689`](webpack/css-loader@4b41689) ci: use node v22 ([ArcadeData#1596](https://redirect.github.com/webpack-contrib/css-loader/issues/1596))
* [`2068222`](webpack/css-loader@2068222) chore: update dependencies to latest version ([ArcadeData#1595](https://redirect.github.com/webpack-contrib/css-loader/issues/1595))
* [`e006f66`](webpack/css-loader@e006f66) refactor: use `environment` to get `templateLiteral` value ([ArcadeData#1591](https://redirect.github.com/webpack-contrib/css-loader/issues/1591))
* [`5c717c9`](webpack/css-loader@5c717c9) chore(release): 7.1.1
* [`d6c31a1`](webpack/css-loader@d6c31a1) fix: automatically rename class `default` to `_default` when named export is ...
* [`b162e25`](webpack/css-loader@b162e25) chore(release): 7.1.0
* [`15f793d`](webpack/css-loader@15f793d) docs: update logic ([ArcadeData#1587](https://redirect.github.com/webpack-contrib/css-loader/issues/1587))
* [`9c165a4`](webpack/css-loader@9c165a4) docs: update migration guide ([ArcadeData#1586](https://redirect.github.com/webpack-contrib/css-loader/issues/1586))
* Additional commits viewable in [compare view](webpack/css-loader@v6.11.0...v7.1.2)
  
[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility\_score?dependency-name=css-loader&package-manager=npm\_and\_yarn&previous-version=6.11.0&new-version=7.1.2)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
You can trigger a rebase of this PR by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)
---
Dependabot commands and options
  
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  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)
> \*\*Note\*\*
> Automatic rebases have been disabled on this pull request as it has been open for over 30 days.
mergify Bot added a commit that referenced this pull request Aug 30, 2026
…p ci]

Bumps the go-modules group in /e2e-go with 5 updates:
| Package | From | To |
| --- | --- | --- |
| [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus) | `1.10.1` | `1.10.2` |
| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.70.0` | `0.71.0` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/metric](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
| [go.opentelemetry.io/otel/trace](https://github.com/open-telemetry/opentelemetry-go) | `1.45.0` | `1.46.0` |
Updates `github.com/sirupsen/logrus` from 1.10.1 to 1.10.2
Release notes

*Sourced from [github.com/sirupsen/logrus's releases](https://github.com/sirupsen/logrus/releases).*

> v1.10.2
> -------
>
> Logrus v1.10.2
> ==============
>
> This is a small maintenance release that updates `github.com/stretchr/testify` to v1.12.1, removing the legacy `gopkg.in/yaml.v3` dependency from Logrus' dependency graph. There are no functional changes in this release.
>
> Dependency Changes
>
> * update github.com/stretchr/testify to v1.12.1
>
> **Full Changelog**: <https://github.com/sirupsen/logrus/compare/v1.10.1...v1.10.2>


Changelog

*Sourced from [github.com/sirupsen/logrus's changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md).*

> 1.10.2
> ------
>
> Changed:
>
> * Update `github.com/stretchr/testify` to v1.12.1, removing the legacy
>   `gopkg.in/yaml.v3` dependency.


Commits

* [`6d6a132`](https://github.com/sirupsen/logrus/commit/6d6a132bc03324d4ceb78e1b927f995d014cda20) Merge pull request [#1586](https://redirect.github.com/sirupsen/logrus/issues/1586) from thaJeztah/prepare\_v1.10.2
* [`4f94653`](https://github.com/sirupsen/logrus/commit/4f9465318cbf1bea0f31d01322cb2d75636ca8a6) update changelog for v1.10.2
* [`87434bb`](https://github.com/sirupsen/logrus/commit/87434bb3a736e2a27d34df66924471714f408d3d) Merge pull request [#1585](https://redirect.github.com/sirupsen/logrus/issues/1585) from thaJeztah/bump\_testify
* [`e7d2120`](https://github.com/sirupsen/logrus/commit/e7d2120300a3e407bef3e8606bdd2ab0aa67dbf8) chore(deps): bump github.com/stretchr/testify v1.12.1
* See full diff in [compare view](https://github.com/sirupsen/logrus/compare/v1.10.1...v1.10.2)
  
Updates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` from 0.70.0 to 0.71.0
Changelog

*Sourced from [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp's changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md).*

> [1.46.0/2.5.3/0.71.0/0.37.3/0.26.0/0.20.1/0.16.3/0.18.0] - 2026-08-25
> ---------------------------------------------------------------------
>
> This release is the last to support [Go 1.25].
> The next release will require at least [Go 1.26].
>
> ### Added
>
> * Add support for the `aws.ec2` resource detector in `go.opentelemetry.io/contrib/otelconf/x`. ([#9139](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9139))
> * Support testing of [Go 1.27]. ([#9524](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9524))
> * Add `go.opentelemetry.io/contrib/detectors/docker`, a resource detector for Docker, ported from `processor/resourcedetectionprocessor/internal/docker` in opentelemetry-collector-contrib. ([#9001](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9001))
> * Add `S3AttributeBuilder` to `go.opentelemetry.io/contrib/instrumentation/github.com/aws/aws-sdk-go-v2/otelaws` that sets S3-specific span attributes following the OpenTelemetry S3 semantic conventions. ([#9292](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9292))
>
> ### Deprecated
>
> * Deprecate `go.opentelemetry.io/contrib/instrumentation/github.com/labstack/echo/otelecho`.
>   Use `github.com/labstack/echo-opentelemetry` instead. ([#9136](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9136))
>
> ### Fixed
>
> * Record `error.type` attribute on server spans in `go.opentelemetry.io/contrib/instrumentation/github.com/emicklei/go-restful/otelrestful` when a request is cancelled or ends in a 5xx error. ([#9387](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9387))
> * Report `ot-baggage-*` extraction errors from `go.opentelemetry.io/contrib/propagators/ot` to `otel.Handle` instead of silently discarding them, while still attaching the successfully parsed baggage members to the context. ([#9395](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9395))
> * Set `error.type` on the `rpc.client.call.duration` and `rpc.server.call.duration` metrics in `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` when the RPC fails with a non-OK status, per the RPC semantic conventions. ([#9429](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9429))
> * Reject OTLP exporter headers with an empty `name` in `go.opentelemetry.io/contrib/otelconf`, `go.opentelemetry.io/contrib/otelconf/x`, and `go.opentelemetry.io/contrib/otelconf/v0.3.0`, instead of forwarding invalid header names to OTLP exporters. ([#9102](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9102))
> * `go.opentelemetry.io/contrib/detectors/aws/lambda` no longer returns an error when run outside of an AWS Lambda environment, matching the no-op behavior of other resource detectors. ([#9464](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9464))
> * Convert Prometheus untyped metrics to OTLP Gauges in `go.opentelemetry.io/contrib/bridges/prometheus`. ([#9099](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9099))


Commits

* [`c4c6248`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/c4c6248ec2289133b6a51f554ca9367ece1de8e7) Release v1.46.0/v2.5.3/v0.71.0/v0.37.3/v0.26.0/v0.20.1/v0.16.3/v0.18.0 ([#9563](https://redirect.github.com/open-telemetry/opentelemetry-go-contrib/issues/9563))
* [`11c8a13`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/11c8a13e60e734bb02185e78b1ad16c38c3e4d6d) fix(deps): update aws-sdk-go-v2 monorepo
* [`0458b9d`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/0458b9df1d1ea87bb7d156d3065a4626506daa22) chore(deps): update module go.opentelemetry.io/contrib/instrumentation/net/ht...
* [`638a0d5`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/638a0d5944d4f80d6d8d9dc17df30cf9f73a1e4c) fix(deps): update module github.com/moby/moby/api to v1.55.0
* [`5089aa5`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/5089aa5de995dcdc7bd96d7e8b36ce4be1ec3cbf) chore(deps): update googleapis to da73d73
* [`a50857b`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/a50857b305dfa06fe469ff7bad5f22db0ecde3bb) chore(deps): update jaegertracing/jaeger docker tag to v2.20.0
* [`aa4f4a5`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/aa4f4a577cec952b0444a0faeb98be04b13023a2) chore(deps): update open-telemetry/shared-workflows action to v0.11.0
* [`ccbbc14`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/ccbbc14b559c3878fa017d1036ae8feb636ec4a5) fix(deps): update module github.com/aws/smithy-go to v1.28.0
* [`9312464`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/9312464aaff2f556a115ab7a416566dc00c830f4) chore(deps): update module github.com/docker/go-connections to v0.8.1
* [`36c3b00`](https://github.com/open-telemetry/opentelemetry-go-contrib/commit/36c3b006602a1e74f95eac0db1cefb5c423e1b4d) chore(deps): update module github.com/felixge/httpsnoop to v1.1.0
* Additional commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-go-contrib/compare/zpages/v0.70.0...zpages/v0.71.0)
  
Updates `go.opentelemetry.io/otel` from 1.45.0 to 1.46.0
Release notes

*Sourced from [go.opentelemetry.io/otel's releases](https://github.com/open-telemetry/opentelemetry-go/releases).*

> v1.46.0/v0.68.0/v0.22.0/v0.0.19
> -------------------------------
>
> This release is the last to support [Go 1.25](https://go.dev/doc/go1.25).
> The next release will require at least [Go 1.26](https://go.dev/doc/go1.26).
>
> ### Added
>
> * Support testing of [Go 1.27](https://go.dev/doc/go1.27). ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))
>
> What's Changed
> --------------
>
> * chore(deps): update github/codeql-action action to v4.37.6 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8697](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8697)
> * chore(deps): update module go.opentelemetry.io/collector/featuregate to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8698](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8698)
> * chore(deps): update golang.org/x/telemetry digest to bdd03c3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8699](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8699)
> * fix(deps): update module go.opentelemetry.io/collector/pdata to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8700](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8700)
> * chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.30.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8701](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8701)
> * chore(deps): update module github.com/rogpeppe/go-internal to v1.16.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8702](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8702)
> * chore(deps): update module github.com/cloudflare/circl to v1.6.5 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8703](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8703)
> * Record processor.{span,log}.processed before invoking the exporter in simple processors by [`@​cijothomas`](https://github.com/cijothomas) in [open-telemetry/opentelemetry-go#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8705)
> * perf(sdk/metric): reduce benchmark suite execution time ([#8683](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8683)) by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8688](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8688)
> * chore(deps): update codspeedhq/action action to v5.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8710](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8710)
> * attempt 2: Lazily compute filtered and dropped attributes by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8598)
> * fix(deps): update googleapis to c8921c7 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8712](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8712)
> * chore(deps): update module github.com/santhosh-tekuri/jsonschema/v6 to v6.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8708](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8708)
> * chore(deps): update github.com/charmbracelet/ultraviolet digest to 402eeaa by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8716](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8716)
> * chore(deps): update module github.com/dlclark/regexp2/v2 to v2.6.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8715](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8715)
> * chore(deps): update mvdan.cc/unparam digest to a64391f by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8717](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8717)
> * fix(deps): update golang.org/x to a8b543c by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8720](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8720)
> * fix(deps): update googleapis to ec0a776 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8719](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8719)

... (truncated)


Changelog

*Sourced from [go.opentelemetry.io/otel's changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md).*

> [1.46.0/0.68.0/0.22.0/0.0.19] - 2026-08-25
> ------------------------------------------
>
> This release is the last to support [Go 1.25].
> The next release will require at least [Go 1.26].
>
> ### Added
>
> * Support testing of [Go 1.27]. ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))


Commits

* [`58db4c8`](https://github.com/open-telemetry/opentelemetry-go/commit/58db4c898f5b5594f8ba78f156475bf48486e2f2) Release v1.46.0 ([#8858](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8858))
* [`524fc3c`](https://github.com/open-telemetry/opentelemetry-go/commit/524fc3c25f3b578a28f9ed10e685ac3567285e6b) chore(deps): update golang.org/x/telemetry digest to 1f5465a ([#8853](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8853))
* [`3b8ef6f`](https://github.com/open-telemetry/opentelemetry-go/commit/3b8ef6f6eacda76a1e6f20b4d7a8e95136fb29f1) chore(deps): update codspeedhq/action action to v5.2.1 ([#8854](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8854))
* [`cfbeab5`](https://github.com/open-telemetry/opentelemetry-go/commit/cfbeab547fb501fc239598e20a80054c13dbc7cb) attribute: clarify xxhash test purpose ([#8753](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8753))
* [`3599b59`](https://github.com/open-telemetry/opentelemetry-go/commit/3599b597202b0e3aa82c157fe6c3930e121ba0c7) sdk/log: Add interface stability markers ([#8855](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8855))
* [`08d52dc`](https://github.com/open-telemetry/opentelemetry-go/commit/08d52dc720d967471eee7a6682c9e5d24400a7ed) otlptracehttp: Accept quoted finite doubles in OTLP JSON ([#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
* [`d720f5a`](https://github.com/open-telemetry/opentelemetry-go/commit/d720f5af01fb5cb448c1534171f1193b7e1270f7) otlplog: export dropped attribute count ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
* [`80fe23b`](https://github.com/open-telemetry/opentelemetry-go/commit/80fe23bd7774bce4a8cdff6af0c0b9e1382d45f9) chore(deps): update module honnef.co/go/tools to v0.8.1 ([#8816](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8816))
* [`5337812`](https://github.com/open-telemetry/opentelemetry-go/commit/5337812ca9719aae921c20a8e794491590e1b328) chore(deps): update codspeedhq/action action to v5.2.0 ([#8851](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8851))
* [`2f73a3e`](https://github.com/open-telemetry/opentelemetry-go/commit/2f73a3efde70227c5abf121bb8bd9d3a2a441c5a) chore(deps): update module github.com/uudashr/iface to v1.5.1 ([#8841](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8841))
* Additional commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-go/compare/v1.45.0...v1.46.0)
  
Updates `go.opentelemetry.io/otel/metric` from 1.45.0 to 1.46.0
Release notes

*Sourced from [go.opentelemetry.io/otel/metric's releases](https://github.com/open-telemetry/opentelemetry-go/releases).*

> v1.46.0/v0.68.0/v0.22.0/v0.0.19
> -------------------------------
>
> This release is the last to support [Go 1.25](https://go.dev/doc/go1.25).
> The next release will require at least [Go 1.26](https://go.dev/doc/go1.26).
>
> ### Added
>
> * Support testing of [Go 1.27](https://go.dev/doc/go1.27). ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))
>
> What's Changed
> --------------
>
> * chore(deps): update github/codeql-action action to v4.37.6 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8697](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8697)
> * chore(deps): update module go.opentelemetry.io/collector/featuregate to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8698](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8698)
> * chore(deps): update golang.org/x/telemetry digest to bdd03c3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8699](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8699)
> * fix(deps): update module go.opentelemetry.io/collector/pdata to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8700](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8700)
> * chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.30.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8701](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8701)
> * chore(deps): update module github.com/rogpeppe/go-internal to v1.16.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8702](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8702)
> * chore(deps): update module github.com/cloudflare/circl to v1.6.5 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8703](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8703)
> * Record processor.{span,log}.processed before invoking the exporter in simple processors by [`@​cijothomas`](https://github.com/cijothomas) in [open-telemetry/opentelemetry-go#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8705)
> * perf(sdk/metric): reduce benchmark suite execution time ([#8683](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8683)) by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8688](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8688)
> * chore(deps): update codspeedhq/action action to v5.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8710](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8710)
> * attempt 2: Lazily compute filtered and dropped attributes by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8598)
> * fix(deps): update googleapis to c8921c7 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8712](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8712)
> * chore(deps): update module github.com/santhosh-tekuri/jsonschema/v6 to v6.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8708](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8708)
> * chore(deps): update github.com/charmbracelet/ultraviolet digest to 402eeaa by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8716](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8716)
> * chore(deps): update module github.com/dlclark/regexp2/v2 to v2.6.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8715](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8715)
> * chore(deps): update mvdan.cc/unparam digest to a64391f by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8717](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8717)
> * fix(deps): update golang.org/x to a8b543c by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8720](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8720)
> * fix(deps): update googleapis to ec0a776 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8719](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8719)

... (truncated)


Changelog

*Sourced from [go.opentelemetry.io/otel/metric's changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md).*

> [1.46.0/0.68.0/0.22.0/0.0.19] - 2026-08-25
> ------------------------------------------
>
> This release is the last to support [Go 1.25].
> The next release will require at least [Go 1.26].
>
> ### Added
>
> * Support testing of [Go 1.27]. ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))


Commits

* [`58db4c8`](https://github.com/open-telemetry/opentelemetry-go/commit/58db4c898f5b5594f8ba78f156475bf48486e2f2) Release v1.46.0 ([#8858](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8858))
* [`524fc3c`](https://github.com/open-telemetry/opentelemetry-go/commit/524fc3c25f3b578a28f9ed10e685ac3567285e6b) chore(deps): update golang.org/x/telemetry digest to 1f5465a ([#8853](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8853))
* [`3b8ef6f`](https://github.com/open-telemetry/opentelemetry-go/commit/3b8ef6f6eacda76a1e6f20b4d7a8e95136fb29f1) chore(deps): update codspeedhq/action action to v5.2.1 ([#8854](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8854))
* [`cfbeab5`](https://github.com/open-telemetry/opentelemetry-go/commit/cfbeab547fb501fc239598e20a80054c13dbc7cb) attribute: clarify xxhash test purpose ([#8753](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8753))
* [`3599b59`](https://github.com/open-telemetry/opentelemetry-go/commit/3599b597202b0e3aa82c157fe6c3930e121ba0c7) sdk/log: Add interface stability markers ([#8855](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8855))
* [`08d52dc`](https://github.com/open-telemetry/opentelemetry-go/commit/08d52dc720d967471eee7a6682c9e5d24400a7ed) otlptracehttp: Accept quoted finite doubles in OTLP JSON ([#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
* [`d720f5a`](https://github.com/open-telemetry/opentelemetry-go/commit/d720f5af01fb5cb448c1534171f1193b7e1270f7) otlplog: export dropped attribute count ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
* [`80fe23b`](https://github.com/open-telemetry/opentelemetry-go/commit/80fe23bd7774bce4a8cdff6af0c0b9e1382d45f9) chore(deps): update module honnef.co/go/tools to v0.8.1 ([#8816](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8816))
* [`5337812`](https://github.com/open-telemetry/opentelemetry-go/commit/5337812ca9719aae921c20a8e794491590e1b328) chore(deps): update codspeedhq/action action to v5.2.0 ([#8851](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8851))
* [`2f73a3e`](https://github.com/open-telemetry/opentelemetry-go/commit/2f73a3efde70227c5abf121bb8bd9d3a2a441c5a) chore(deps): update module github.com/uudashr/iface to v1.5.1 ([#8841](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8841))
* Additional commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-go/compare/v1.45.0...v1.46.0)
  
Updates `go.opentelemetry.io/otel/trace` from 1.45.0 to 1.46.0
Release notes

*Sourced from [go.opentelemetry.io/otel/trace's releases](https://github.com/open-telemetry/opentelemetry-go/releases).*

> v1.46.0/v0.68.0/v0.22.0/v0.0.19
> -------------------------------
>
> This release is the last to support [Go 1.25](https://go.dev/doc/go1.25).
> The next release will require at least [Go 1.26](https://go.dev/doc/go1.26).
>
> ### Added
>
> * Support testing of [Go 1.27](https://go.dev/doc/go1.27). ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))
>
> What's Changed
> --------------
>
> * chore(deps): update github/codeql-action action to v4.37.6 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8697](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8697)
> * chore(deps): update module go.opentelemetry.io/collector/featuregate to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8698](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8698)
> * chore(deps): update golang.org/x/telemetry digest to bdd03c3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8699](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8699)
> * fix(deps): update module go.opentelemetry.io/collector/pdata to v1.64.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8700](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8700)
> * chore(deps): update module github.com/grpc-ecosystem/grpc-gateway/v2 to v2.30.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8701](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8701)
> * chore(deps): update module github.com/rogpeppe/go-internal to v1.16.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8702](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8702)
> * chore(deps): update module github.com/cloudflare/circl to v1.6.5 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8703](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8703)
> * Record processor.{span,log}.processed before invoking the exporter in simple processors by [`@​cijothomas`](https://github.com/cijothomas) in [open-telemetry/opentelemetry-go#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8705)
> * perf(sdk/metric): reduce benchmark suite execution time ([#8683](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8683)) by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8688](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8688)
> * chore(deps): update codspeedhq/action action to v5.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8710](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8710)
> * attempt 2: Lazily compute filtered and dropped attributes by [`@​dashpole`](https://github.com/dashpole) in [open-telemetry/opentelemetry-go#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8598)
> * fix(deps): update googleapis to c8921c7 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8712](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8712)
> * chore(deps): update module github.com/santhosh-tekuri/jsonschema/v6 to v6.0.3 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8708](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8708)
> * chore(deps): update github.com/charmbracelet/ultraviolet digest to 402eeaa by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8716](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8716)
> * chore(deps): update module github.com/dlclark/regexp2/v2 to v2.6.0 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8715](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8715)
> * chore(deps): update mvdan.cc/unparam digest to a64391f by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8717](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8717)
> * fix(deps): update golang.org/x to a8b543c by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8720](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8720)
> * fix(deps): update googleapis to ec0a776 by [`@​renovate`](https://github.com/renovate)[bot] in [open-telemetry/opentelemetry-go#8719](https://redirect.github.com/open-telemetry/opentelemetry-go/pull/8719)

... (truncated)


Changelog

*Sourced from [go.opentelemetry.io/otel/trace's changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md).*

> [1.46.0/0.68.0/0.22.0/0.0.19] - 2026-08-25
> ------------------------------------------
>
> This release is the last to support [Go 1.25].
> The next release will require at least [Go 1.26].
>
> ### Added
>
> * Support testing of [Go 1.27]. ([#8811](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8811))
> * Support `http/json` protocol in `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp`. ([#8273](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8273), [#8775](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8775), [#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
> * Add `Hasher` struct and methods in `go.opentelemetry.io/otel/attribute` to compute authoritative `Distinct` hashes incrementally for attribute filtering and deduplication. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
>
> ### Changed
>
> * Lazily evaluate filtered and dropped attributes on measurement hot paths in `go.opentelemetry.io/otel/sdk/metric` to avoid unnecessary attribute set allocations. ([#8598](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8598))
> * Add `ErrExporterShutdown` to `go.opentelemetry.io/otel/sdk/log` and return it from the `go.opentelemetry.io/otel/exporters/stdout/stdoutlog`, `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc`, and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` exporters when `Export` is called after `Shutdown`. ([#8773](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8773))
> * Clarify in `go.opentelemetry.io/otel/log` that calling `Logger.Enabled` is optional and that cached results can become stale. ([#8764](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8764))
>
> ### Fixed
>
> * Export dropped attribute counts in OTLP log records from `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploggrpc` and `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp`. ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
> * Name span events created from OpenTracing logs after the `event` log field, falling back to `log`, instead of always using an empty name in `go.opentelemetry.io/otel/bridge/opentracing`. ([#8648](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8648))
> * Count exception attributes omitted due to the attribute count limit as dropped in `go.opentelemetry.io/otel/sdk/log`. ([#8796](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8796))
> * Prevent log record and instrumentation scope attributes with empty keys from reaching processors and exporters in `go.opentelemetry.io/otel/sdk/log`. ([#8797](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8797))
> * Fix a data race when span attributes are read concurrently in `go.opentelemetry.io/otel/sdk/trace`. ([#8706](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8706))
> * Prevent a panic in `(*Set).Filter` when called on a nil receiver in `go.opentelemetry.io/otel/attribute`. ([#8792](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8792))
> * The simple span and log processors record `otel.sdk.processor.{span,log}.processed` when the record is submitted to the exporter instead of after the export completes, and no longer set `error.type` from the export outcome, in `go.opentelemetry.io/otel/sdk/trace` and `go.opentelemetry.io/otel/sdk/log`. ([#8705](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8705))
> * Prevent `Resource.MarshalLog` from panicking on nil resources in `go.opentelemetry.io/otel/sdk/resource`. ([#8758](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8758))


Commits

* [`58db4c8`](https://github.com/open-telemetry/opentelemetry-go/commit/58db4c898f5b5594f8ba78f156475bf48486e2f2) Release v1.46.0 ([#8858](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8858))
* [`524fc3c`](https://github.com/open-telemetry/opentelemetry-go/commit/524fc3c25f3b578a28f9ed10e685ac3567285e6b) chore(deps): update golang.org/x/telemetry digest to 1f5465a ([#8853](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8853))
* [`3b8ef6f`](https://github.com/open-telemetry/opentelemetry-go/commit/3b8ef6f6eacda76a1e6f20b4d7a8e95136fb29f1) chore(deps): update codspeedhq/action action to v5.2.1 ([#8854](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8854))
* [`cfbeab5`](https://github.com/open-telemetry/opentelemetry-go/commit/cfbeab547fb501fc239598e20a80054c13dbc7cb) attribute: clarify xxhash test purpose ([#8753](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8753))
* [`3599b59`](https://github.com/open-telemetry/opentelemetry-go/commit/3599b597202b0e3aa82c157fe6c3930e121ba0c7) sdk/log: Add interface stability markers ([#8855](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8855))
* [`08d52dc`](https://github.com/open-telemetry/opentelemetry-go/commit/08d52dc720d967471eee7a6682c9e5d24400a7ed) otlptracehttp: Accept quoted finite doubles in OTLP JSON ([#8831](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8831))
* [`d720f5a`](https://github.com/open-telemetry/opentelemetry-go/commit/d720f5af01fb5cb448c1534171f1193b7e1270f7) otlplog: export dropped attribute count ([#8829](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8829))
* [`80fe23b`](https://github.com/open-telemetry/opentelemetry-go/commit/80fe23bd7774bce4a8cdff6af0c0b9e1382d45f9) chore(deps): update module honnef.co/go/tools to v0.8.1 ([#8816](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8816))
* [`5337812`](https://github.com/open-telemetry/opentelemetry-go/commit/5337812ca9719aae921c20a8e794491590e1b328) chore(deps): update codspeedhq/action action to v5.2.0 ([#8851](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8851))
* [`2f73a3e`](https://github.com/open-telemetry/opentelemetry-go/commit/2f73a3efde70227c5abf121bb8bd9d3a2a441c5a) chore(deps): update module github.com/uudashr/iface to v1.5.1 ([#8841](https://redirect.github.com/open-telemetry/opentelemetry-go/issues/8841))
* Additional commits viewable in [compare view](https://github.com/open-telemetry/opentelemetry-go/compare/v1.45.0...v1.46.0)
  
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)
---
Dependabot commands and options
  
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 show  ignore conditions` will show all of the ignore conditions of the specified dependency
- `@dependabot ignore  major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
- `@dependabot ignore  minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
- `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
- `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency
- `@dependabot unignore  ` will remove the ignore condition of the specified dependency and ignore conditions
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant