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

Delete deprecaed MarshalerSizer interfaces #6083

Merged
merged 1 commit into from
Sep 15, 2022
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased

### 🛑 Breaking changes 🛑

- Delete deprecated `p[metric|log|trace].MarshalerSizer` interfaces (#6083)


## v0.60.0 Beta

### 🛑 Breaking changes 🛑
Expand Down
3 changes: 0 additions & 3 deletions pdata/plog/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

package plog // import "go.opentelemetry.io/collector/pdata/plog"

// Deprecated: [v0.60.0] use MarshalSizer.
type MarshalerSizer = MarshalSizer

// MarshalSizer is the interface that groups the basic Marshal and Size methods
type MarshalSizer interface {
Marshaler
Expand Down
3 changes: 0 additions & 3 deletions pdata/pmetric/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

package pmetric // import "go.opentelemetry.io/collector/pdata/pmetric"

// Deprecated: [v0.60.0] use MarshalSizer.
type MarshalerSizer = MarshalSizer

// MarshalSizer is the interface that groups the basic Marshal and Size methods
type MarshalSizer interface {
Marshaler
Expand Down
3 changes: 0 additions & 3 deletions pdata/ptrace/encoding.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@

package ptrace // import "go.opentelemetry.io/collector/pdata/ptrace"

// Deprecated: [v0.60.0] use MarshalSizer.
type MarshalerSizer = MarshalSizer

// MarshalSizer is the interface that groups the basic Marshal and Size methods
type MarshalSizer interface {
Marshaler
Expand Down