Skip to content

Bump System.Linq.Dynamic.Core from 1.6.0 to 1.7.3 - #51

Closed
dependabot[bot] wants to merge 242 commits into
mainfrom
dependabot/nuget/src/FeatureFlags/System.Linq.Dynamic.Core-1.7.3
Closed

Bump System.Linq.Dynamic.Core from 1.6.0 to 1.7.3#51
dependabot[bot] wants to merge 242 commits into
mainfrom
dependabot/nuget/src/FeatureFlags/System.Linq.Dynamic.Core-1.7.3

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown

Updated System.Linq.Dynamic.Core from 1.6.0 to 1.7.3.

Release notes

Sourced from System.Linq.Dynamic.Core's releases.

1.7.3

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.7.2...v1.7.3

1.7.2

What's Changed

New Contributors

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.7.1...v1.7.2

1.7.1

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.7.0...v1.7.1

1.7.0

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.10...v1.7.0

1.6.10

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.9...v1.6.10

1.6.9

What's Changed

New Contributors

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.8...v1.6.9

1.6.8

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@1.6.7...v1.6.8

1.6.6

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.5...v1.6.6

1.6.5

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.4...v1.6.5

1.6.4

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.3...v1.6.4

1.6.3

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.2...v1.6.3

1.6.2

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.0.2...v1.6.2

1.6.0.2

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.0.1...v1.6.0.2

1.6.0.1

What's Changed

Full Changelog: zzzprojects/System.Linq.Dynamic.Core@v1.6.0...v1.6.0.1

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 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)

The background cleanup task used while(true) with no way to stop it
during application shutdown. Now uses CancellationTokenSource that
gets cancelled on Dispose(), allowing graceful shutdown.

Closes #26
- Add GitHub Actions build and test workflow
- Add bug report and feature request issue templates
- Add pull request template
- Add GitHub Sponsors funding configuration
- Improve .gitignore for better development experience
Add CI/CD pipeline and project configuration
- Add FlagEvaluationLog model (flagName, userId, result, timestamp, reason)
- Add IFlagEvaluationLogService interface and in-memory FlagEvaluationLogService
- Add EnableAuditLog opt-in property to FeatureFlagOptions (default: false)
- Record FlagEvaluationLog in FeatureFlagService.IsEnabledAsync with reason
- Register FlagEvaluationLogService as singleton in DI
- Update FeatureFlagServiceTests to supply new constructor dependencies
Add comprehensive unit tests for AuditLogService, GradualRolloutSchedulerService, and FlagEvaluationLogService. Tests cover:
- Audit log retrieval and filtering by user, flag, and pagination
- Scheduled rollout processing and advancement with error handling
- Flag evaluation tracking and metrics aggregation
- Edge cases, null handling, and error conditions
Add integration tests for full feature flag workflows and WebhookService operations:
- End-to-end flag evaluation scenarios (enable/disable, percentage rollout)
- Rule-based targeting with AND/OR condition logic
- Distribution accuracy for percentage allocations across users
- Concurrent evaluation thread safety
- Custom attribute support in rule evaluation
- A/B testing variant assignment
- Webhook registration, validation, and event triggering
Update xunit.runner.visualstudio to 3.0.0 and Moq to 4.20.72 for compatibility with available packages on NuGet.
Sarmkadan and others added 25 commits July 11, 2026 18:51
…with tests

- Unseal FeatureFlagDbContext and HttpApiClient and mark overridable members
  virtual; sealing them broke every consumer that extends these seams
- Validate webhook URL format in RegisterWebhookAsync and throw
  ArgumentException for malformed addresses
- IsValidEmail returns false for null input instead of throwing
- XmlExporter serializes IsEnabled via bool.ToString for stable casing
- Add GetAllActiveWebhooksAsync to IWebhookService for unfiltered listing
…listing

- Numeric rule conditions and conversion utilities parse with
  InvariantCulture so evaluation does not depend on server locale
- XML parser reads ids and timestamps with InvariantCulture and
  round-trip DateTime handling
- Rate limiting middleware sets headers via the indexer instead of Add,
  synchronizes access to per-client timestamp queues, and uses the
  configured window in GetRemainingRequests instead of a hardcoded value
- AdminController.GetWebhooks returns actual registered webhooks instead
  of an always-empty list; uptime formatting uses invariant culture
…n to RuleEvaluationServiceTestsExtensions

- Add ArgumentNullException.ThrowIfNull guard clauses to all public methods
- Add comprehensive <exception> tags to XML documentation for every throw case
- Improve <param> documentation precision and consistency
- Fix typo in AssertRuleResultAsync parameter documentation (actual -> actualTask)
- Maintain all existing public API signatures and behavior
…Enabled, and HasRules methods.

Co-authored-by: aider (groq/llama-3.1-8b-instant) <aider@aider.chat>
Co-authored-by: aider (groq/llama-3.1-8b-instant) <aider@aider.chat>
Okay, let me go through the user's request step by step. They want me to generate a commit message for the changes made to the ValidationExceptionExtensions.cs file. The commit message needs to follow the conventional commits style, which means using a type prefix like docs, feat, fix, etc., followed by a concise description.

First, I need to determine the type of the commit. The user added XML documentation comments, which is related to documentation. So the type should be "docs". The scope is "exceptions" because the file is in the Exceptions namespace and deals with ValidationException. The description should summarize the change, which is adding XML documentation to the ValidationExceptionExtensions class and its methods.

Looking at the diffs provided, the changes are all about adding or enhancing the XML comments. The user emphasized that no code logic was changed, only documentation. So the commit message should reflect that it's a documentation update. The conventional commit type for documentation changes is "docs".

Next, I need to make sure the message is in the imperative mood. The correct format would be "docs(exceptions): add XML documentation to ValidationExceptionExtensions". This follows the structure <type>(<scope>): <description>, which is standard for conventional commits.

I should also check the length. The message should not exceed 72 characters. Let me count: "docs(exceptions): add XML documentation to ValidationExceptionExtensions" – that's 70 characters, which is within the limit.

No other types like feat or fix are appropriate here since there's no new feature or bug fix. The user specifically mentioned adding documentation, so "docs" is the right choice. The scope "exceptions" helps narrow down where the documentation was added.

I need to ensure that the commit message doesn't mention any other changes, like tests or code modifications, which weren't part of this task. The user also warned against violating hard rules like touching other files, which the commit message doesn't address.

Finally, confirming that the message accurately reflects the changes made. The added XML comments in the three methods (HasErrors, GetErrorMessage, ToFlattenedErrorDictionary) are all covered under the description. The message is concise, specific, and follows the required format.
</think>

```
docs(exceptions): add XML documentation to ValidationExceptionExtensions
```

Co-authored-by: aider (groq/qwen/qwen3-32b) <aider@aider.chat>
---
updated-dependencies:
- dependency-name: System.Linq.Dynamic.Core
  dependency-version: 1.7.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Author

Labels

The following labels could not be found: automerge. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot @github

dependabot Bot commented on behalf of github Jul 16, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@dependabot
dependabot Bot deleted the dependabot/nuget/src/FeatureFlags/System.Linq.Dynamic.Core-1.7.3 branch July 16, 2026 05:26
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant