Skip to content
Open
Show file tree
Hide file tree
Changes from 4 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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm

### Changed

- `Renovate`: skip commit upgrades of `otel-go`. (#7405)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This won't need a changelog entry.

- The semantic conventions have been upgraded from `v1.30.0` to `v1.32.0` in `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc`. (#7361)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/detectors/aws/ec2`. (#7373)
- The semantic conventions have been upgraded from `v1.26.0` to `v1.32.0` in `go.opentelemetry.io/contrib/detectors/aws/eks`. (#7375)
Expand Down
35 changes: 25 additions & 10 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,32 +4,47 @@
"config:recommended"
],
"ignorePaths": [],
"labels": ["Skip Changelog", "dependencies"],
"labels": [
"Skip Changelog",
"dependencies"
],
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you keep your changes limited to what's actually being done in the PR rather than also adding different style?

"separateMajorMinor": true,
"postUpdateOptions" : [
"postUpdateOptions": [
"gomodTidy"
],
"packageRules": [
{
"matchManagers": ["gomod"],
"matchDepTypes": ["indirect"],
"matchManagers": [
"gomod"
],
"matchDepTypes": [
"indirect"
],
"enabled": true
},
{
"matchPackageNames": ["go.opentelemetry.io/build-tools/**"],
"matchPackageNames": [
"go.opentelemetry.io/build-tools/**"
],
"groupName": "build-tools"
},
{
"matchPackageNames": ["google.golang.org/genproto/googleapis/**"],
"matchPackageNames": [
"google.golang.org/genproto/googleapis/**"
],
"groupName": "googleapis"
},
{
"matchPackageNames": ["golang.org/x/**"],
"matchPackageNames": [
"golang.org/x/**"
],
"groupName": "golang.org/x"
},
{
"matchPackageNames": ["go.opentelemetry.io/otel/**"],
"enabled": false
"matchPackageNames": [
"go.opentelemetry.io/otel/**"
],
"allowedVersions": "/^v\\d+\\.\\d+\\.\\d+$/"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Have this been tested?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested with a Go script to verify that it correctly identifies semantic versions vs pseudo-versions

}
]
}
}
Loading