Skip to content
Open
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{
".": "1.15.0"
".": "1.15.0",
"extension/alloyengine": "1.15.0"
}
2 changes: 1 addition & 1 deletion collector/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ module github.com/grafana/alloy/otel_engine
go 1.25.8

require (
github.com/grafana/alloy v0.0.0-00010101000000-000000000000
github.com/grafana/alloy v1.15.0
github.com/grafana/alloy/extension/alloyengine v0.1.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/countconnector v0.147.0
github.com/open-telemetry/opentelemetry-collector-contrib/connector/grafanacloudconnector v0.147.0
Expand Down
2 changes: 1 addition & 1 deletion extension/alloyengine/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ replace github.com/grafana/alloy => ../..
replace github.com/grafana/alloy/syntax => ../../syntax

require (
github.com/grafana/alloy v0.0.0-00010101000000-000000000000
github.com/grafana/alloy v1.15.0
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

Suggested change
github.com/grafana/alloy v1.15.0
github.com/grafana/alloy v1.15.0 // x-release-please-version

This should allow release-please to find and update this as a part of the release PRs. One thing to check perhaps would be whether or not make generate-module-dependencies clobbers a comment here.

github.com/spf13/cobra v1.10.2
github.com/stretchr/testify v1.11.1
go.opentelemetry.io/collector/component v1.53.0
Expand Down
9 changes: 9 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"draft-pull-request": true,
"pull-request-title-pattern": "chore${scope}: Release${component} ${version}",
"packages": {
"extension/alloyengine": {
"release-type": "go",
"component": "extension/alloyengine",
"versioning": "minor-breaking"
},
".": {
"release-type": "go",
"versioning": "minor-breaking",
Expand All @@ -35,6 +40,10 @@
{
"type": "generic",
"path": "collector/VERSION"
},
{
"type": "generic",
"path": "extension/alloyengine/go.mod"
}
]
}
Expand Down
Loading