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

prepare release v0.93.0 #1149

Merged
merged 4 commits into from
Feb 9, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
8 changes: 0 additions & 8 deletions .chloggen/exclude-batch-processor-metrics.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions .chloggen/update-java.yaml

This file was deleted.

12 changes: 0 additions & 12 deletions .chloggen/update-nodejs.yaml

This file was deleted.

13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,19 @@

This Splunk OpenTelemetry Collector for Kubernetes release adopts the [Splunk OpenTelemetry Collector v0.93.0](https://github.com/signalfx/splunk-otel-collector/releases/tag/v0.93.0).

### 🛑 Breaking changes 🛑

- `internal metrics`: Stop reporting metrics sent by the batch processor ([#1147](https://github.com/signalfx/splunk-otel-collector-chart/pull/1147))

### 💡 Enhancements 💡

- `operator`: Bump java to v1.30.1 in helm-charts/splunk-otel-collector/values.yaml ([#1139](https://github.com/signalfx/splunk-otel-collector-chart/pull/1139))
- `operator`: Bump nodejs to v2.7.0 in helm-charts/splunk-otel-collector/values.yaml ([#1143](https://github.com/signalfx/splunk-otel-collector-chart/pull/1143))

## [0.93.0] - 2024-02-08

This Splunk OpenTelemetry Collector for Kubernetes release adopts the [Splunk OpenTelemetry Collector v0.93.0](https://github.com/signalfx/splunk-otel-collector/releases/tag/v0.93.0).

## [0.92.1] - 2024-02-06

This Splunk OpenTelemetry Collector for Kubernetes release adopts the [Splunk OpenTelemetry Collector v0.92.0](https://github.com/signalfx/splunk-otel-collector/releases/tag/v0.92.0).
Expand Down
3 changes: 1 addition & 2 deletions ci_scripts/chloggen-pr-validate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,10 @@ for file in $CHANGED_FILES; do
done

# ---- Changelog Entry Validation ----
if { [[ $HELM_CHART_UPDATED -eq 1 ]] || [[ $RENDERED_MANIFESTS_UPDATED -eq 1 ]]; } && [[ $CHLOGGEN_FILE_PRESENT -eq 0 ]]; then
if { [[ $HELM_CHART_UPDATED -eq 1 ]]; } && [[ $CHLOGGEN_FILE_PRESENT -eq 0 ]]; then
jvoravong marked this conversation as resolved.
Show resolved Hide resolved
printf "Changed Files:\n${CHANGED_FILES}\n"
echo "FAIL: A changelog entry (.chloggen) is required for this commit due to:"
[[ $HELM_CHART_UPDATED -eq 1 ]] && echo "- Updates to files under 'helm-charts/*/templates*'"
[[ $RENDERED_MANIFESTS_UPDATED -eq 1 ]] && echo "- Updates to files under 'examples/*/rendered_manifests*'"
exit 1
fi

Expand Down
Loading