-
-
Notifications
You must be signed in to change notification settings - Fork 35
Update pkgs #1210
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
Merged
Merged
Update pkgs #1210
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
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
BenchmarkManyRunbooks-4
Metadata
BenchmarkOpenAPI3-4
Metadata
BenchmarkSingleRunbook-4
Metadata
Reported by octocov |
Code Metrics Report
Details | | main (0ad4940) | #1210 (f617e0d) | +/- |
|---------------------|----------------|-----------------|-------|
+ | Coverage | 63.3% | 63.3% | +0.0% |
| Files | 78 | 78 | 0 |
| Lines | 9021 | 9069 | +48 |
+ | Covered | 5714 | 5745 | +31 |
- | Code to Test Ratio | 1:0.7 | 1:0.7 | -0.1 |
| Code | 16580 | 16694 | +114 |
+ | Test | 12732 | 12816 | +84 |
+ | Test Execution Time | 6m31s | 4m25s | -2m6s | Code coverage of files in pull request scope (85.7% → 81.0%)
Reported by octocov |
Merged
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 pull request includes updates to dependencies and improvements to the tracing functionality in the
internal/exprtrace/tracer.go
file, as well as enhancements to the test suite.Dependency updates:
github.com/expr-lang/expr
to versionv1.17.2
andgit.1-hub.cn/goccy/go-json
to versionv0.10.5
ingo.mod
.Tracing improvements:
traceInteger
,traceFloat
,traceCall
,tracePredicate
,traceBuiltin
,traceBinary
,traceConditional
,traceIdentifier
,tracePointer
,traceVariableDeclarator
,traceMember
,traceArray
,traceSlice
,traceMap
, andtracePairValue
methods ininternal/exprtrace/tracer.go
to handle cases where trace entries do not exist, ensuring new entries are created and added to the trace store if necessary. [1] [2] [3] [4] [5] [6] [7] [8] [9] [10] [11] [12] [13] [14] [15]Test suite enhancements:
Test_ExprOfficialGeneratedExamplesV1_17_1
to verify the behavior of the tracer with examples from versionv1.17.1
ofexpr
.Test_ExprOfficialGeneratedExamples
by capturing and reporting compile, run, and equality errors separately. [1] [2] [3] [4]Additional changes:
expr.AllowUndefinedVariables
option inPatches
to handle undefined variables gracefully.ChainNode
in thesecondPhasePatcher
to avoid errors with certain identifier usages.