Skip to content

Commit

Permalink
[chore] Prepare release v0.93.0 (#9359)
Browse files Browse the repository at this point in the history
The following commands were run to prepare this release:
- make chlog-update VERSION=v0.93.0
- make prepare-release PREVIOUS_VERSION=0.92.0 RELEASE_CANDIDATE=0.93.0
MODSET=beta
  • Loading branch information
opentelemetrybot committed Jan 24, 2024
1 parent 946dc24 commit 463bb08
Show file tree
Hide file tree
Showing 52 changed files with 344 additions and 625 deletions.
26 changes: 0 additions & 26 deletions .chloggen/cipher_suites.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/codeboten_cleanup-deprecated.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/codeboten_fix-grpc-crash.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/codeboten_mark-stable-otel.yaml

This file was deleted.

30 changes: 0 additions & 30 deletions .chloggen/codeboten_rm-deprecated-obsreport2.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/confignet-remove-deprecated-functions.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/configopaque-implement-BinaryMarshaler.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/configopaque_stringer.yaml

This file was deleted.

27 changes: 0 additions & 27 deletions .chloggen/exporter-helper-cleanup-error-logs.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/extension-memory-limiter.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/handle-grpc-status-codes.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .chloggen/remove-old-go-build-directives.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/remove_rpcz.yaml

This file was deleted.

20 changes: 0 additions & 20 deletions .chloggen/router.yaml

This file was deleted.

24 changes: 24 additions & 0 deletions CHANGELOG-API.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,30 @@ If you are looking for user-facing changes, check out [CHANGELOG.md](./CHANGELOG

<!-- next version -->

## v0.93.0

### 🛑 Breaking changes 🛑

- `bug_fix`: Implement `encoding.BinaryMarshaler` interface to prevent `configopaque` -> `[]byte` -> `string` conversions from leaking the value (#9279)
- `configopaque`: configopaque.String implements `fmt.Stringer` and `fmt.GoStringer`, outputting [REDACTED] when formatted with the %s, %q or %#v verbs` (#9213)
This may break applications that rely on the previous behavior of opaque strings with `fmt.Sprintf` to e.g. build URLs or headers.
Explicitly cast the opaque string to a string before using it in `fmt.Sprintf` to restore the previous behavior.

- `all`: Remove obsolete "// +build" directives (#9304)
- `connectortest`: Remove deprecated connectortest router helpers. (#9278)

### 🚩 Deprecations 🚩

- `obsreporttest`: deprecate test funcs/structs (#8492)
The following methods/structs have been moved from obsreporttest to componenttest:
- obsreporttest.TestTelemetry -> componenttest.TestTelemetry
- obsreporttest.SetupTelemetry -> componenttest.SetupTelemetry
- obsreporttest.CheckScraperMetrics -> TestTelemetry.CheckScraperMetrics
- obserporttest.TestTelemetry.TelemetrySettings -> componenttest.TestTelemetry.TelemetrySettings()

- `confignet`: Deprecates `DialContext` and `ListenContext` functions. Use `Dial` and `Listen` instead. (#9258)
Unlike the previous `Dial` and `Listen` functions, the new `Dial` and `Listen` functions take a `context.Context` like `DialContext` and `ListenContext`.

## v1.0.1/v0.92.0

### 🛑 Breaking changes 🛑
Expand Down

0 comments on commit 463bb08

Please sign in to comment.