Skip to content
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

[Security] Update dependency System.Linq.Dynamic.Core to v1.3.3 #3099

Merged
merged 1 commit into from
Jul 17, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 2, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
System.Linq.Dynamic.Core (source) nuget minor 1.2.12 -> 1.3.3

Release Notes

zzzprojects/System.Linq.Dynamic.Core (System.Linq.Dynamic.Core)

v1.3.3

  • #​686 - Add support for casting a string to another type (e.g. int) for Linq2Objects [feature] contributed by StefH
  • #​703 - Update logic for AbstractDynamicLinqCustomTypeProvider.GetAssemblyTypesWithDynamicLinqTypeAttribute [feature] contributed by StefH
  • #​704 - Fix Average to support nullable types [bug] contributed by StefH
  • #​714 - Add support for methods on Enum [feature] contributed by StefH
  • #​717 - Extend ParseException with InnerException and StackTrace [feature] contributed by StefH
  • #​719 - SupportDotInPropertyNames [feature] contributed by StefH
  • #​720 - Fixed result value for bitwise operators when using enums [bug] contributed by StefH
  • #​695 - Flags enum with bitwise operator returns as int; should be the enum type [bug]
  • #​696 - Methods on type 'Enum' are not accessible. [bug]
  • #​700 - Dynamic Average does not support nullable types [bug]
  • #​716 - ParseException ToString() does not contain stack trace [feature]

v1.3.2

  • #​679 - Add some tests for DynamicClass with System.Text.Json [test] contributed by StefH
  • #​685 - Add test for DynamicExpressionParser string with a dot [test] contributed by StefH
  • #​687 - Fix parsing a string literal with a dot [bug] contributed by StefH
  • #​691 - Add internal Clear method to DynamicClassFactory for unit-testing. [test] contributed by StefH
  • #​693 - UnitTests: add and use SkipIfGitHubActionsAttribute [test] contributed by StefH
  • #​694 - Add extra unit test for OfType [test] contributed by StefH
  • #​683 - DynamicExpression parser can't parse when there is a dot in a string [bug]
  • #​692 - OfType(string) fails with "'.' or '(' or string literal expected" when AllowNewToEvaluateAnyType is true on version 1.2.24 and above

v1.3.1

  • #​680 - Bump MongoDB.Driver from 2.4.4 to 2.19.0 in /test/EntityFramework.DynamicLinq.Tests [dependencies] contributed by dependabot[bot]
  • #​681 - Bump MongoDB.Driver from 2.4.4 to 2.19.0 in /test/EntityFramework.DynamicLinq.Tests.net452 [dependencies] contributed by dependabot[bot]
  • #​684 - Add more try-catch logic to DefaultAssemblyHelper and AbstractDynamicLinqCustomTypeProvider [feature] contributed by StefH

v1.3.0

  • #​669 - Methods should only be callable on predefined types [security] contributed by StefH
  • #​671 - Add support for DateOnly and TimeOnly [feature] contributed by StefH
  • #​672 - Fixed ExpressionParser when WrappedValue-string is used for equals-operator for Enum [bug] contributed by StefH
  • #​674 - Fixed ExpressionParser when WrappedValue-string is used for equals-operator for Enum [refactor] contributed by neilbgr
  • #​676 - Change default setting for PrioritizePropertyOrFieldOverTheType to 'true'. [bug] contributed by StefH
  • #​660 - Question about security [security]
  • #​667 - DateOnly support [feature]
  • #​668 - With UseParameterizedNamesInDynamicQuery, can't compare enum type with String [bug]
  • #​675 - Expression does not parse any more 1.2.25 (works in 1.2.24) [bug]

v1.2.25

  • #​664 - Add config setting for PrioritizePropertyOrFieldOverTheType [feature] contributed by StefH
  • #​665 - Update AbstractDynamicLinqCustomTypeProvider to exclude null types [bug] contributed by StefH
  • #​666 - Fixed ExpressionParser when WrappedValue-string is used for equals-operator contributed by StefH
  • #​645 - With UseParameterizedNamesInDynamicQuery, can't compare DateTimeOffset with String [bug]
  • #​662 - System.Linq.Dynamic.Core.Exceptions.ParseException : No applicable method 'DateTime' exists in type [feature]

v1.2.24

  • #​621 - Fix Join on inherited class [bug] contributed by StefH
  • #​646 - Add more unittests for issue 645 [feature] contributed by StefH
  • #​647 - Support nullable notation "xxx?" in As expression [feature] contributed by StefH
  • #​649 - Fix DynamicExpressionParser and ExpressionPromoter to support LambdExpression [bug] contributed by StefH
  • #​653 - Add support to cast to a fully qualified type [feature] contributed by StefH
  • #​614 - Join problem with inherited entities [bug]
  • #​652 - Implement casting to fully qualified type [feature]

v1.2.23

  • #​644 - Add support for .NET 7 and EF Core 7 [feature] contributed by StefH

v1.2.22

  • #​642 - Rename extension method "AsEnumerable" to "AsDynamicEnumerable". [feature] contributed by StefH
  • #​304 - System.Linq.Dynamic.Core.DynamicQueryableExtensions.AsEnumerable conflicts with System.Linq.Enumerable.AsEnumerable [bug]

v1.2.21

  • #​627 - Use PackageIcon + upgrade JetBrains.Annotations [feature] contributed by StefH
  • #​630 - Fix MethodFinder to return topmost implementation of the virtual method [feature] contributed by jogibear9988
  • #​631 - Init field only on first execution [bug] contributed by BBreiden
  • #​636 - Fix nullable issues [bug] contributed by StefH
  • #​637 - Fixed accessing dynamic properties by index [bug] contributed by StefH
  • #​641 - Add unit test for DynamicClass SerializeToJson [feature] contributed by StefH
  • #​580 - C# Expressions use Base Class Virtual Methodinfo [bug]
  • #​629 - Error accessing values in DynamicClass - fails on second attempt [bug]
  • #​634 - After Upgrade NuGet-Package to 1.2.20 accessing dynamic properties by index fails [bug]
  • #​635 - Compile errors due to missing nullable reference annotations on APIs that accept null [bug]
  • #​640 - NullReferenceException during json serialize of DynamicClass [bug]

v1.2.20

  • #​619 - Fix generic comparer type [bug] contributed by StefH
  • #​620 - ToDynamicListAsync uses IAsyncEnumerable (if applicable) [feature] contributed by StefH
  • #​622 - Add unit tests for "As acting on property" [feature, test] contributed by StefH
  • #​625 - Add unit test for Where with empty string [test] contributed by StefH
  • #​617 - "Failed to compare two elements in the array." System.InvalidOperationException (V1.2.19 compared to V1.2.18) [feature]

v1.2.19

  • #​579 - Support Struct for DynamicLinqTypeAttribute [feature] contributed by StefH
  • #​583 - Fix example 'ConsoleApp_netcore2.1_EF2.1.1' [bug] contributed by StefH
  • #​584 - Add more OrderBy unittests [feature] contributed by StefH
  • #​585 - Fix SelectMany when using JArray [bug] contributed by StefH
  • #​587 - Fixed: Parenthesis around an "In" expression raise an exception [bug] contributed by cambirch
  • #​590 - Bump jQuery from 2.2.2 to 3.0.0 in /web/DynamicLinqWebDocs [dependencies] contributed by dependabot[bot]
  • #​592 - Bump Microsoft.NETCore.UniversalWindowsPlatform from 6.0.1 to 6.0.6 in /test-xamarin/WindowsUniversalTestApp16299 [dependencies] contributed by dependabot[bot]
  • #​594 - Bump Newtonsoft.Json from 10.0.3 to 13.0.1 in /src-console/ConsoleAppEF2.1 [dependencies] contributed by dependabot[bot]
  • #​599 - Bump Newtonsoft.Json from 8.0.3 to 13.0.1 in /web/DynamicLinqWebDocs [dependencies] contributed by dependabot[bot]
  • #​609 - Bump Newtonsoft.Json from 10.0.3 to 13.0.1 in /src-console/ConsoleAppEF6_InMemory [dependencies] contributed by dependabot[bot]
  • #​612 - Update dependencies (Newtonsoft.Json and more) [dependencies] contributed by StefH
  • #​511 - Strange SelectMany behaviour using JSON [bug]
  • #​548 - IComparer<T> not supported for OrderBy? [feature]
  • #​581 - ConsoleApp_netcore2.1_EF2.1.1 fails to run with exception [bug]
  • #​586 - Parenthesis around an "In" expression raise an exception [bug]

v1.2.18

  • #​573 - Updated 'new' command (finding a constructor with exact argument-types and same order) [feature] contributed by StefH
  • #​574 - Bump bootstrap from 3.3.6 to 3.4.1 in /web/DynamicLinqWebDocs [dependencies] contributed by dependabot[bot]
  • #​576 - fix enums could not be cast to decimal [feature] contributed by jogibear9988
  • #​571 - ParseException: 'Type 'System.IO.DirectoryInfo' not found' [bug]

v1.2.17

  • #​569 - Fix logic for indexer when parameter-type differs [bug] contributed by StefH

v1.2.16

  • #​562 - Make TextParser public [feature] contributed by StefH
  • #​563 - GitHub Actions: use actions/checkout@v2 [security] contributed by StefH
  • #​567 - Add support for property for Is,As and Cast [feature] contributed by StefH

v1.2.15

  • #​554 - Support for parsing Binary Integer [feature] contributed by StefH
  • #​557 - bind expressions to correct constructor parameter [feature] contributed by jonasdaniels
  • #​558 - Allow assembly to be collected [bug] contributed by hemirunner426
  • #​561 - Fix NET35 build + add unit test for OrderBy with IComparer [bug] contributed by StefH
  • #​552 - Missing parse from binary literal to integer [bug]

v1.2.14

  • #​551 - Use Microsoft.EntityFrameworkCore 6.0.0 [feature] contributed by StefH

v1.2.13

  • #​517 - support for generic (static) methods, thus also support for extension… [feature] contributed by dogguts
  • #​546 - Fix StringParser to handle (escaped) newline correctly [bug] contributed by StefH
  • #​547 - Set DebugType to portable for 'Release' builds [feature] contributed by StefH
  • #​544 - 'System.Linq.Dynamic.Core.pdb' is using a deprecated debug information level [feature]
  • #​545 - Unable to escape backslashes correctly [bug]

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Never, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Sorry, something went wrong.

@renovate renovate bot added dependencies Pull requests that update a dependency file p: Lowest t: Task labels Aug 2, 2022
@renovate renovate bot enabled auto-merge (rebase) August 2, 2022 19:13
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch 3 times, most recently from e2ffd20 to 13a8067 Compare August 11, 2022 17:51
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from 13a8067 to ca9d5b8 Compare August 29, 2022 21:49
@hazzik hazzik disabled auto-merge August 29, 2022 22:41
@hazzik hazzik enabled auto-merge (squash) August 29, 2022 22:41
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from ca9d5b8 to be4d6e8 Compare September 1, 2022 23:30
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from be4d6e8 to 5169eaf Compare November 7, 2022 23:34
@renovate renovate bot changed the title Update dependency System.Linq.Dynamic.Core to v1.2.19 Update dependency System.Linq.Dynamic.Core to v1.2.22 Nov 7, 2022
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from 5169eaf to a2902bd Compare November 21, 2022 23:09
@renovate renovate bot changed the title Update dependency System.Linq.Dynamic.Core to v1.2.22 Update dependency System.Linq.Dynamic.Core to v1.2.23 Nov 21, 2022
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from a2902bd to ba6dcf2 Compare February 7, 2023 10:49
@renovate renovate bot changed the title Update dependency System.Linq.Dynamic.Core to v1.2.23 Update dependency System.Linq.Dynamic.Core to v1.2.25 Feb 7, 2023
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from ba6dcf2 to 30a9465 Compare May 15, 2023 12:43
@renovate renovate bot changed the title Update dependency System.Linq.Dynamic.Core to v1.2.25 Update dependency System.Linq.Dynamic.Core to v1.3.2 May 15, 2023
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from 30a9465 to 8de3572 Compare July 14, 2023 06:52
@renovate renovate bot changed the title Update dependency System.Linq.Dynamic.Core to v1.3.2 Update dependency System.Linq.Dynamic.Core to v1.3.3 Jul 14, 2023
@hazzik
Copy link
Member

hazzik commented Jul 17, 2023

Verified

This commit was signed with the committer’s verified signature.
szokeasaurusrex Daniel Szoke
@renovate renovate bot force-pushed the renovate/system.linq.dynamic.core-1.x branch from 8de3572 to 5857c5d Compare July 17, 2023 10:44
@hazzik hazzik added this to the 5.5 milestone Jul 17, 2023
@hazzik hazzik merged commit 1b13f03 into master Jul 17, 2023
@hazzik hazzik deleted the renovate/system.linq.dynamic.core-1.x branch July 17, 2023 21:01
@hazzik hazzik changed the title Update dependency System.Linq.Dynamic.Core to v1.3.3 [Security] Update dependency System.Linq.Dynamic.Core to v1.3.3 Jul 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file p: Lowest r: Fixed t: Task
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant