Skip to content

chore: Bump github.com/expr-lang/expr from 1.16.9 to 1.17.0#221

Merged
jahvon merged 3 commits intomainfrom
dependabot/go_modules/github.com/expr-lang/expr-1.17.0
Mar 30, 2025
Merged

chore: Bump github.com/expr-lang/expr from 1.16.9 to 1.17.0#221
jahvon merged 3 commits intomainfrom
dependabot/go_modules/github.com/expr-lang/expr-1.17.0

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Mar 18, 2025

Bumps github.com/expr-lang/expr from 1.16.9 to 1.17.0.

Release notes

Sourced from github.com/expr-lang/expr's releases.

v1.17.0

Expr is a Go-centric expression language designed to deliver dynamic configurations with unparalleled accuracy, safety, and speed.

program, err := expr.Compile(`let foo = bar(); baz(foo, foo)`)

In this release:

This release added the biggest change to the Expr language: if-else expressions and sequential expressions. #736 e750878

if foo > 42 {
    assert(foo);
    calc(foo, foo / 2)
} else {
    calc(0, 0)
}

A sequence of expression may be separated by ; char. The last semicolon must be omitted. Expr returns the value of the last expression in the sequence.

If-else is also expressions. Each if must have an else part. Result of if-else can be used as an expression:

let foo = if bar > 0 {
    process(bar)
} else {
    fallback()
};
foo + 42

Added:

  • Added ast.Find helper for easy AST searching. 579de74
  • Added compile node budget and memory limits (#762)
  • Added uniq() builtin (#705)
  • Added flatten() builtin (#684)
  • Added types pkg (#665 #667 #668)

Improvements:

  • Allow tailing comma in arguments (#623)
  • Improved type checker for named types 6fa83ad
  • Now len() return runes count for string e8bd7f8

... (truncated)

Commits
  • 3be6386 Code style: remove repeated helper functions
  • 25690fe chore: Added SOLO to the companies list (#769)
  • a9cda30 Test for issue 756
  • 2bc0eed Remove duplicated dereferences
  • f4bbea5 Add support deref in all builtins
  • 7d564c0 Remove print
  • 80f0ea6 Correctly add OpDeref if needed
  • 2d9f616 Add more tailing comma tests
  • 8f83203 Allow tailing comma in arguments (#623)
  • 435b79d Make sure get() returns nil for map[string]string on missing keys
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/expr-lang/expr](https://github.com/expr-lang/expr) from 1.16.9 to 1.17.0.
- [Release notes](https://github.com/expr-lang/expr/releases)
- [Commits](expr-lang/expr@v1.16.9...v1.17.0)

---
updated-dependencies:
- dependency-name: github.com/expr-lang/expr
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added the dependencies Automated dependency updates label Mar 18, 2025
@dependabot dependabot Bot requested a review from jahvon as a code owner March 18, 2025 00:18
@jahvon jahvon merged commit dc20a3f into main Mar 30, 2025
9 of 10 checks passed
@jahvon jahvon deleted the dependabot/go_modules/github.com/expr-lang/expr-1.17.0 branch March 30, 2025 22:35
@codecov
Copy link
Copy Markdown

codecov Bot commented Mar 30, 2025

Codecov Report

Attention: Patch coverage is 78.57143% with 3 lines in your changes missing coverage. Please review.

Project coverage is 22.75%. Comparing base (a24704d) to head (a21aef6).
Report is 2 commits behind head on main.

Files with missing lines Patch % Lines
internal/services/expr/template.go 57.14% 1 Missing and 2 partials ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #221      +/-   ##
==========================================
+ Coverage   22.65%   22.75%   +0.09%     
==========================================
  Files          79       79              
  Lines        6739     6751      +12     
==========================================
+ Hits         1527     1536       +9     
- Misses       4937     4938       +1     
- Partials      275      277       +2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Automated dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant