Skip to content

Commit

Permalink
[chore] Prepare release v1.3.0/v0.96.0 (#9680)
Browse files Browse the repository at this point in the history
The following commands were run to prepare this release:
- make chlog-update VERSION=v1.3.0/v0.96.0
- make prepare-release PREVIOUS_VERSION=1.2.0 RELEASE_CANDIDATE=1.3.0
MODSET=stable
- make prepare-release PREVIOUS_VERSION=0.95.0 RELEASE_CANDIDATE=0.96.0
MODSET=beta
  • Loading branch information
opentelemetrybot committed Mar 4, 2024
1 parent 409359f commit af71d1d
Show file tree
Hide file tree
Showing 58 changed files with 377 additions and 648 deletions.
25 changes: 0 additions & 25 deletions .chloggen/UseSystemCACerts.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/configgrpc-add-context.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/configgrpc-remove-deprecated-items.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/confighttp-remove-deprecated-items.yaml

This file was deleted.

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

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/configretry-validation-fix.yaml

This file was deleted.

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

This file was deleted.

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

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/make-metadata-thread-safe.yaml

This file was deleted.

25 changes: 0 additions & 25 deletions .chloggen/pass-confmap-providers.yaml

This file was deleted.

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

This file was deleted.

6 changes: 0 additions & 6 deletions .chloggen/update-otlp.yaml

This file was deleted.

26 changes: 0 additions & 26 deletions .chloggen/update_mapstructure.yaml

This file was deleted.

12 changes: 12 additions & 0 deletions CHANGELOG-API.md
Expand Up @@ -7,6 +7,18 @@ If you are looking for user-facing changes, check out [CHANGELOG.md](./CHANGELOG

<!-- next version -->

## v1.3.0/v0.96.0

### 🚩 Deprecations 🚩

- `configgrpc`: Deprecates `ToServer`. Use `ToServerContext` instead. (#9624)
- `component`: deprecate component.ErrNilNextConsumer (#9526)
- `configtls`: Rename TLSClientSetting, TLSServerSetting, and TLSSetting based on the naming convention used in other config packages. (#9474)

### πŸ’‘ Enhancements πŸ’‘

- `receivertest`: add support for metrics in contract checker (#9551)

## v1.2.0/v0.95.0

### πŸ›‘ Breaking changes πŸ›‘
Expand Down
24 changes: 24 additions & 0 deletions CHANGELOG.md
Expand Up @@ -7,6 +7,30 @@ If you are looking for developer-facing changes, check out [CHANGELOG-API.md](./

<!-- next version -->

## v1.3.0/v0.96.0

### πŸ›‘ Breaking changes πŸ›‘

- `configgrpc`: Remove deprecated `GRPCClientSettings`, `GRPCServerSettings`, and `ServerConfig.ToListenerContext`. (#9616)
- `confighttp`: Remove deprecated `HTTPClientSettings`, `NewDefaultHTTPClientSettings`, and `CORSSettings`. (#9625)
- `confignet`: Removes deprecated `NetAddr` and `TCPAddr` (#9614)

### πŸ’‘ Enhancements πŸ’‘

- `configtls`: Add `include_system_ca_certs_pool` to configtls, allowing to load system certs and additional custom certs. (#7774)
- `otelcol`: Add `ConfigProviderSettings` to `CollectorSettings` (#4759)
This allows passing a custom list of `confmap.Provider`s to `otelcol.NewCommand`.
- `pdata`: Update to OTLP v1.1.0 (#9587)
Introduces Span and SpanLink flags.
- `confmap`: Update mapstructure to use a maintained fork, github.com/go-viper/mapstructure/v2. (#9634)
See https://github.com/mitchellh/mapstructure/issues/349 for context.


### 🧰 Bug fixes 🧰

- `configretry`: Allow max_elapsed_time to be set to 0 for indefinite retries (#9641)
- `client`: Make `Metadata.Get` thread safe (#9595)

## v1.2.0/v0.95.0

### πŸ›‘ Breaking changes πŸ›‘
Expand Down
2 changes: 1 addition & 1 deletion cmd/builder/internal/builder/config.go
Expand Up @@ -16,7 +16,7 @@ import (
"go.uber.org/zap"
)

const defaultOtelColVersion = "0.95.0"
const defaultOtelColVersion = "0.96.0"

// ErrInvalidGoMod indicates an invalid gomod
var ErrInvalidGoMod = errors.New("invalid gomod specification for module")
Expand Down

0 comments on commit af71d1d

Please sign in to comment.