-
Notifications
You must be signed in to change notification settings - Fork 1
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
chore(deps): update all dependencies #156
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
5a356aa
to
50d9b57
Compare
ℹ Artifact update noticeFile name: go.modIn order to perform the update(s) described in the table above, Renovate ran the
Details:
|
b97a3f2
to
f445f09
Compare
f445f09
to
74bf6d0
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
b35229a
->c0f429e
v1.36.3
->v1.37.0
v0.120.0
->v0.121.0
v1.28.1
->v1.29.0
v0.122.1
->v0.123.0
v1.28.1
->v1.29.0
v1.28.1
->v1.29.0
v0.122.1
->v0.123.0
v0.122.1
->v0.123.0
v0.122.1
->v0.123.0
v0.122.1
->v0.123.0
1.24.1-alpine3.20
->1.24.2-alpine3.20
0.17.2
->0.17.3
0.83.1
->0.84.2
Release Notes
onsi/gomega (github.com/onsi/gomega)
v1.37.0
Compare Source
1.37.0
Features
5666f98
]open-telemetry/opentelemetry-operator (github.com/open-telemetry/opentelemetry-operator)
v0.121.0
Compare Source
0.121.0
🛑 Breaking changes 🛑
all
: Move feature gateoperator.observability.prometheus
to stable (#3669)operator
: Remove the deprecated--label
command-line option (#3236)Use
--labels-filter
instead.💡 Enhancements 💡
opamp
: Allows specifying non-identifying attributes for the Bridge, also follows OpAMP guidelines for reporting instance.service.id (#2301)target allocator
: Allow setting the collector namespace via the config file (#3782)auto-instrumentation
: Add support to set image pull policy for agent images (#3575)auto-instrumentation
: Enhanced Java auto-instrumentation with improved volume mount paths and configuration options (#3843)target allocator
: Add support for setting the allowNamespaces and denyNamespaces in the target allocator.(#3086)
allowNamespaces can be set to an empty list to watch all namespaces (default) or to list of namespaces to watch.
denyNamespaces can be set to an empty list to deny watching any namespaces (default) or to a list of namespaces to deny watching.
target allocator
: Do not assign targets to a collector pod that is not Ready for longer than a non-zero grace period (#3781)🧰 Bug fixes 🧰
collector
: Add nil check for Extensions in GetLivenessProbe and GetReadinessProbe functions (#3747)Components
open-telemetry/opentelemetry-collector (go.opentelemetry.io/collector/component)
v1.29.0
🛑 Breaking changes 🛑
service/telemetry
: Marktelemetry.disableAddressFieldForInternalTelemetry
as beta, usage of deprecated service::telemetry::address are ignored (#25115)To restore the previous behavior disable
telemetry.disableAddressFieldForInternalTelemetry
feature gate.exporterbatch
: Remove deprecated fieldsmin_size_items
andmax_size_items
from batch config. (#12684)🚩 Deprecations 🚩
otlpexporter
: Mark BatcherConfig as deprecated, usesending_queue::batch
instead (#12726)exporterhelper
: Deprecateblocking
in favor ofblock_on_overflow
. (#12710)exporterhelper
: Deprecate configuring exporter batching separately. Usesending_queue::batch
instead. (#12772)Moving the batching configuration to
sending_queue::batch
requires settingsending_queue::sizer
toitems
which means that
sending_queue::queue_size
needs to be also increased by the average batch size number (roughlyx5000 for the default batching configuration).
See https://github.com/open-telemetry/opentelemetry-collector/tree/main/exporter/exporterhelper#configuration
💡 Enhancements 💡
exporterhelper
: Add support to configure batching in the sending queue. (#12746)exporterhelper
: Add support for wait_for_result, remove disabled_queue (#12742)This has a side effect for users of the experimental BatchConfig with the queue disabled, since not this is | uses only NumCPU() consumers.
exporterhelper
: Allow exporter memory queue to use different type of sizers. (#12708)service
: Add "telemetry.newPipelineTelemetry" feature gate to inject component-identifying attributes in internal telemetry (#12217)With the feature gate enabled, all internal telemetry (metrics/traces/logs) will include some of
the following instrumentation scope attributes:
otelcol.component.kind
otelcol.component.id
otelcol.pipeline.id
otelcol.signal
otelcol.signal.output
These attributes are defined in the Pipeline Component Telemetry RFC,
and identify the component instance from which the telemetry originates.
They are added automatically without changes to component code.
These attributes were already included in internal logs as regular log attributes, starting from
v0.120.0. For consistency with other signals, they have been switched to scope attributes (with
the exception of logs emitted to standard output), and are now enabled by the feature gate.
Please make sure that the exporter / backend endpoint you use has support for instrumentation
scope attributes before using this feature. If the internal telemetry is exported to another
Collector, a transform processor could be used to turn them into other kinds of attributes if
necessary.
exporterhelper
: Enable support to do batching usingbytes
sizer (#12751)service
: Add config key to set metric views used for internal telemetry (#10769)The
service::telemetry::metrics::views
config key can now be used to explicitly set the list ofmetric views used for internal telemetry, mirroring
meter_provider::views
in the SDK config.This can be used to disable specific internal metrics, among other uses.
This key will cause an error if used alongside other features which would normally implicitly create views, such as:
service::telemetry::metrics::level
todetailed
;telemetry.disableHighCardinalityMetrics
feature flag.🧰 Bug fixes 🧰
exporterhelper
: Fix order of starting between queue and batch. (#12705)kubernetes-sigs/controller-tools (kubernetes-sigs/controller-tools)
v0.17.3
Compare Source
What's Changed
--load-build-tags
flag by @joelanford in https://github.com/kubernetes-sigs/controller-tools/pull/1181Dependencies
New Contributors
Full Changelog: kubernetes-sigs/controller-tools@v0.17.2...v0.17.3
open-telemetry/opentelemetry-helm-charts (opentelemetry-operator)
v0.84.2
Compare Source
v0.84.1
Compare Source
OpenTelemetry Operator Helm chart for Kubernetes
What's Changed
Full Changelog: open-telemetry/opentelemetry-helm-charts@opentelemetry-operator-0.84.0...opentelemetry-operator-0.84.1
v0.84.0
Compare Source
OpenTelemetry Operator Helm chart for Kubernetes
What's Changed
New Contributors
Full Changelog: open-telemetry/opentelemetry-helm-charts@opentelemetry-kube-stack-0.4.5...opentelemetry-operator-0.84.0
Configuration
📅 Schedule: Branch creation - "* 0-3 * * *" in timezone Etc/UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.