Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Prepare release v1.3.0/v0.96.0 #9680

Merged
merged 7 commits into from
Mar 4, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Original file line number Diff line number Diff line change
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
Loading
Loading