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

Release for v0.3.0 #38

Merged
merged 3 commits into from
Jun 29, 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
4 changes: 4 additions & 0 deletions .github/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
changelog:
exclude:
labels:
- tagpr
42 changes: 42 additions & 0 deletions .tagpr
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# config file for the tagpr in git config format
# The tagpr generates the initial configuration, which you can rewrite to suit your environment.
# CONFIGURATIONS:
# tagpr.releaseBranch
# Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
# creates or updates a pull request as a release candidate, or tags when they are merged.
#
# tagpr.versionFile
# Versioning file containing the semantic version needed to be updated at release.
# It will be synchronized with the "git tag".
# Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
# Sometimes the source code file, such as version.go or Bar.pm, is used.
# If you do not want to use versioning files but only git tags, specify the "-" string here.
# You can specify multiple version files by comma separated strings.
#
# tagpr.vPrefix
# Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
# This is only a tagging convention, not how it is described in the version file.
#
# tagpr.changelog (Optional)
# Flag whether or not changelog is added or changed during the release.
#
# tagpr.command (Optional)
# Command to change files just before release.
#
# tagpr.template (Optional)
# Pull request template in go template format
#
# tagpr.release (Optional)
# GitHub Release creation behavior after tagging [true, draft, false]
# If this value is not set, the release is to be created.
#
# tagpr.majorLabels (Optional)
# Label of major update targets. Default is [major]
#
# tagpr.minorLabels (Optional)
# Label of minor update targets. Default is [minor]
#
[tagpr]
vPrefix = true
releaseBranch = main
versionFile = -
27 changes: 27 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
# Changelog

## [v0.3.0](https://github.com/Arthur1/opentelemetry-collector-arthur1/compare/v0.2.0...v0.3.0) - 2024-06-29
- update opentelemetry collector to 0.103.0 by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/27
- custom renovate config to merge pull requests by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/30
- fix invalid exporters name in otelcol-builder.yaml by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/32
- generate by mdatagen v0.103.0 by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/33
- add tparse to tools package by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/35
- use all go.sum files in setup-go cache by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/36
- set go.opentelemetry.io/otel/sdk/** to indirect by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/39
- [cloudflaremetricsreceiver] set go directive 1.21 by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/40
- Update All OpenTelemetry Collector packages by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/31
- ignore go.work & go.work.sum by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/41
- Update module github.com/hasura/go-graphql-client to v0.12.2 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/29
- run tests in each package in monorepo by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/42
- Update module github.com/cloudflare/cloudflare-go to v0.98.0 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/5

## [v0.2.0](https://github.com/Arthur1/opentelemetry-collector-arthur1/compare/v0.1.0...v0.2.0) - 2024-05-26
- fix(deps): update module go.opentelemetry.io/collector/component to v0.100.0 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/3
- fix(deps): update module golang.org/x/sys to v0.20.0 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/10
- fix(deps): update module github.com/arthur1/opentelemetry-collector-arthur1/receiver/cloudflaremetricsreceiver to v0.1.0 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/14
- fix(deps): update module go.opentelemetry.io/collector/consumer to v0.100.0 by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/7
- [runnreceiver] BREAKING: remove body from config by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/21
- [runnreceiver] add runn.elapsed_time metrics by @Arthur1 in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/24

## [v0.1.0](https://github.com/Arthur1/opentelemetry-collector-arthur1/commits/v0.1.0) - 2024-05-08
- chore: Configure Renovate by @renovate in https://github.com/Arthur1/opentelemetry-collector-arthur1/pull/1
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ go 1.22.3
toolchain go1.22.4

require (
github.com/Arthur1/opentelemetry-collector-arthur1/receiver/cloudflaremetricsreceiver v0.0.0
github.com/Arthur1/opentelemetry-collector-arthur1/receiver/runnreceiver v0.0.0
github.com/Arthur1/opentelemetry-collector-arthur1/receiver/cloudflaremetricsreceiver v0.3.0
github.com/Arthur1/opentelemetry-collector-arthur1/receiver/runnreceiver v0.3.0
github.com/stretchr/testify v1.9.0
go.opentelemetry.io/collector/component v0.103.0
go.opentelemetry.io/collector/confmap v0.103.0
Expand Down
2 changes: 1 addition & 1 deletion main.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions otelcol-builder.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ dist:
module: github.com/Arthur1/opentelemetry-collector-arthur1
description: Custom OpenTelemetry Collector for Testing Components Created by Arthur1
output_path: .
version: 0.0.0
version: 0.3.0

receivers:
- gomod: github.com/Arthur1/opentelemetry-collector-arthur1/receiver/runnreceiver v0.0.0
- gomod: github.com/Arthur1/opentelemetry-collector-arthur1/receiver/cloudflaremetricsreceiver v0.0.0
- gomod: github.com/Arthur1/opentelemetry-collector-arthur1/receiver/runnreceiver v0.3.0
- gomod: github.com/Arthur1/opentelemetry-collector-arthur1/receiver/cloudflaremetricsreceiver v0.3.0

exporters:
- gomod: go.opentelemetry.io/collector/exporter/debugexporter v0.103.0
Expand Down