Skip to content

Commit 573fb70

Browse files
fix(deps): update module github.com/expr-lang/expr to v1.16.9 (#33245)
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [github.com/expr-lang/expr](https://togithub.com/expr-lang/expr) | `v1.16.7` -> `v1.16.9` | [![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fexpr-lang%2fexpr/v1.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/go/github.com%2fexpr-lang%2fexpr/v1.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/go/github.com%2fexpr-lang%2fexpr/v1.16.7/v1.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fexpr-lang%2fexpr/v1.16.7/v1.16.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>expr-lang/expr (github.com/expr-lang/expr)</summary> ### [`v1.16.9`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.9) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.8...v1.16.9) **Expr** is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed. **In this release**: - Fixed function calls with int64 params. [https://github.com/expr-lang/expr/pull/663](https://togithub.com/expr-lang/expr/pull/663) ### [`v1.16.8`](https://togithub.com/expr-lang/expr/releases/tag/v1.16.8) [Compare Source](https://togithub.com/expr-lang/expr/compare/v1.16.7...v1.16.8) **Expr** is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed. ```go program, err := expr.Compile(`now() - created_at < duration("24h")`) ``` **In this release**: - Added checks for nil before string casts in VM ([#&#8203;654](https://togithub.com/expr-lang/expr/issues/654)) - Added int overflow checks. [`45c1ae7`](https://togithub.com/expr-lang/expr/commit/45c1ae7) - Improved lexer ([#&#8203;653](https://togithub.com/expr-lang/expr/issues/653)) - Improved error messages for index out of bounds errors. [`6cf0edb`](https://togithub.com/expr-lang/expr/commit/6cf0edb) - Fixed: invoke the Deref function as needed for the function arguments. ([#&#8203;651](https://togithub.com/expr-lang/expr/issues/651)) - Fixed build on 386 arch. [`cae6003`](https://togithub.com/expr-lang/expr/commit/cae6003) **Expr Editor** The [Expr Editor](https://expr-lang.org/editor) is an embeddable code editor written in JavaScript with full support of Expr language. **Expr Pro** [Expr Pro](https://expr-lang.org/expr-pro) is a set of extensions for Expr for advanced use cases. It includes expressions explanation, performance profiling, and more. </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zNzcuOCIsInVwZGF0ZWRJblZlciI6IjM3LjM3Ny44IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJyZW5vdmF0ZWJvdCJdfQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <[email protected]>
1 parent df93fdf commit 573fb70

File tree

50 files changed

+76
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+76
-76
lines changed

cmd/configschema/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ require (
376376
github.com/envoyproxy/go-control-plane v0.12.0 // indirect
377377
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
378378
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
379-
github.com/expr-lang/expr v1.16.7 // indirect
379+
github.com/expr-lang/expr v1.16.9 // indirect
380380
github.com/facebook/time v0.0.0-20240510113249-fa89cc575891 // indirect
381381
github.com/fatih/color v1.16.0 // indirect
382382
github.com/felixge/httpsnoop v1.0.4 // indirect

cmd/configschema/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/otelcontribcol/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ require (
447447
github.com/envoyproxy/go-control-plane v0.12.0 // indirect
448448
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
449449
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
450-
github.com/expr-lang/expr v1.16.7 // indirect
450+
github.com/expr-lang/expr v1.16.9 // indirect
451451
github.com/facebook/time v0.0.0-20240510113249-fa89cc575891 // indirect
452452
github.com/fatih/color v1.16.0 // indirect
453453
github.com/felixge/httpsnoop v1.0.4 // indirect

cmd/otelcontribcol/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/oteltestbedcol/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ require (
9191
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
9292
github.com/envoyproxy/go-control-plane v0.12.0 // indirect
9393
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
94-
github.com/expr-lang/expr v1.16.7 // indirect
94+
github.com/expr-lang/expr v1.16.9 // indirect
9595
github.com/fatih/color v1.15.0 // indirect
9696
github.com/felixge/httpsnoop v1.0.4 // indirect
9797
github.com/fsnotify/fsnotify v1.7.0 // indirect

cmd/oteltestbedcol/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

connector/datadogconnector/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/datadogexporter/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ require (
156156
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
157157
github.com/envoyproxy/go-control-plane v0.12.0 // indirect
158158
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
159-
github.com/expr-lang/expr v1.16.7 // indirect
159+
github.com/expr-lang/expr v1.16.9 // indirect
160160
github.com/fatih/color v1.16.0 // indirect
161161
github.com/felixge/httpsnoop v1.0.4 // indirect
162162
github.com/fsnotify/fsnotify v1.7.0 // indirect

exporter/datadogexporter/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/datadogexporter/integrationtest/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

exporter/elasticsearchexporter/integrationtest/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ require (
4444
github.com/elastic/go-structform v0.0.10 // indirect
4545
github.com/elastic/go-sysinfo v1.14.0 // indirect
4646
github.com/elastic/go-windows v1.0.1 // indirect
47-
github.com/expr-lang/expr v1.16.7 // indirect
47+
github.com/expr-lang/expr v1.16.9 // indirect
4848
github.com/felixge/httpsnoop v1.0.4 // indirect
4949
github.com/fsnotify/fsnotify v1.7.0 // indirect
5050
github.com/go-logr/logr v1.4.1 // indirect

exporter/elasticsearchexporter/integrationtest/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ require (
395395
github.com/envoyproxy/go-control-plane v0.12.0 // indirect
396396
github.com/envoyproxy/protoc-gen-validate v1.0.4 // indirect
397397
github.com/euank/go-kmsg-parser v2.0.0+incompatible // indirect
398-
github.com/expr-lang/expr v1.16.7 // indirect
398+
github.com/expr-lang/expr v1.16.9 // indirect
399399
github.com/facebook/time v0.0.0-20240510113249-fa89cc575891 // indirect
400400
github.com/fatih/color v1.16.0 // indirect
401401
github.com/felixge/httpsnoop v1.0.4 // indirect

go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/filter/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ module github.com/open-telemetry/opentelemetry-collector-contrib/internal/filter
33
go 1.21.0
44

55
require (
6-
github.com/expr-lang/expr v1.16.7
6+
github.com/expr-lang/expr v1.16.9
77
github.com/hashicorp/golang-lru/v2 v2.0.7
88
github.com/open-telemetry/opentelemetry-collector-contrib/internal/coreinternal v0.101.0
99
github.com/open-telemetry/opentelemetry-collector-contrib/pkg/ottl v0.101.0

internal/filter/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/stanza/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21.0
55
require (
66
github.com/bmatcuk/doublestar/v4 v4.6.1
77
github.com/cespare/xxhash/v2 v2.3.0
8-
github.com/expr-lang/expr v1.16.7
8+
github.com/expr-lang/expr v1.16.9
99
github.com/fsnotify/fsnotify v1.7.0
1010
github.com/jpillora/backoff v1.0.0
1111
github.com/json-iterator/go v1.1.12

pkg/stanza/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

processor/attributesprocessor/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ require (
2525
github.com/beorn7/perks v1.0.1 // indirect
2626
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2727
github.com/davecgh/go-spew v1.1.1 // indirect
28-
github.com/expr-lang/expr v1.16.7 // indirect
28+
github.com/expr-lang/expr v1.16.9 // indirect
2929
github.com/go-logr/logr v1.4.1 // indirect
3030
github.com/go-logr/stdr v1.2.2 // indirect
3131
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect

processor/attributesprocessor/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

processor/filterprocessor/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ require (
2626
github.com/beorn7/perks v1.0.1 // indirect
2727
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2828
github.com/davecgh/go-spew v1.1.1 // indirect
29-
github.com/expr-lang/expr v1.16.7 // indirect
29+
github.com/expr-lang/expr v1.16.9 // indirect
3030
github.com/go-logr/logr v1.4.1 // indirect
3131
github.com/go-logr/stdr v1.2.2 // indirect
3232
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect

processor/filterprocessor/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

processor/logstransformprocessor/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ require (
2424
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2525
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2626
github.com/davecgh/go-spew v1.1.1 // indirect
27-
github.com/expr-lang/expr v1.16.7 // indirect
27+
github.com/expr-lang/expr v1.16.9 // indirect
2828
github.com/go-logr/logr v1.4.1 // indirect
2929
github.com/go-logr/stdr v1.2.2 // indirect
3030
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect

processor/logstransformprocessor/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/azureeventhubreceiver/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ require (
4141
github.com/cespare/xxhash/v2 v2.3.0 // indirect
4242
github.com/davecgh/go-spew v1.1.1 // indirect
4343
github.com/devigned/tab v0.1.1 // indirect
44-
github.com/expr-lang/expr v1.16.7 // indirect
44+
github.com/expr-lang/expr v1.16.9 // indirect
4545
github.com/go-logr/logr v1.4.1 // indirect
4646
github.com/go-logr/stdr v1.2.2 // indirect
4747
github.com/go-ole/go-ole v1.2.6 // indirect

receiver/azureeventhubreceiver/go.sum

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

receiver/filelogreceiver/go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ require (
2323
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
2424
github.com/cespare/xxhash/v2 v2.3.0 // indirect
2525
github.com/davecgh/go-spew v1.1.1 // indirect
26-
github.com/expr-lang/expr v1.16.7 // indirect
26+
github.com/expr-lang/expr v1.16.9 // indirect
2727
github.com/go-logr/logr v1.4.1 // indirect
2828
github.com/go-logr/stdr v1.2.2 // indirect
2929
github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect

0 commit comments

Comments
 (0)