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

build(deps): bump Abp.Castle.Log4Net and Castle.Core in /src/Web/aspnet-core #293

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 30, 2024

Bumps Abp.Castle.Log4Net and Castle.Core. These dependencies needed to be updated together.
Updates Abp.Castle.Log4Net from 6.0.0 to 9.1.3

Release notes

Sourced from Abp.Castle.Log4Net's releases.

v9.1.3

  • #6915: Fixed OnlineClientManager and Redis usage problem
  • #6901: Fixed Feature Management Not Working When Redis Cache Enabled

v9.1

Features

  • ISSUE #5634: way to switch between Newtonsoft, and Utf8Json in abp 5.9.0

Enhancements

  • PR #6874: Update screenshots and sample codes (by oguzhanagir)
  • ISSUE #6840: Update questions answers project to ABP 9.0
  • ISSUE #6838: Update Event Cloud project to ABP 9.0

Bug Fixes & Enhancements

  • PR #6876: Update Aspect Oriented Programming using Interceptors document. (by oguzhanagir)
  • ISSUE #6873: Event cloud project unit and integration tests
  • PR #6871: Upgrade all NuGet packages to latest version (by ismcagdas)
  • ISSUE #6870: Upgrade NuGet packages
  • PR #6867: GetCacheItemFromDataSourceAsync method called fixed. (by oguzhanagir)
  • ISSUE #6865: Event cloud project enhancements
  • PR #6863: Honour column max length during UserLoginAttempt insertion (by akpratap)
  • ISSUE #6862: SaveLoginAttempt fails due to exceeded max length of Client IP Address in UserLoginAttempt table
  • PR #6854: DisposeAction should revert to initial state of the filters if the parameter does not have old value. (by ymg2006)
  • PR #6853: remove [Obsolete("ISystemClock is obsolete, use TimeProvider on SecurityStampValidatorOptions instead.")] from AbpSecurityStampValidator and service_override (by ymg2006)
  • ISSUE #6850: Sometimes MultiTenancyEntityCache.GetAsync throws ObjectDisposedException
  • PR #6846: fixes Updating DynamicProperty validation issue #6845 (by ymg2006)
  • ISSUE #6845: Updating DynamicProperty validation issue
  • ISSUE #6798: Update Aspect Oriented Programming using Interceptors tutorial
  • PR #6679: Using System.Text.Json to replace Newtonsoft. (by maliming)

v9.0

Features

  • ISSUE #6797: Upgrade to .NET 8 Final
  • ISSUE #6781: Upgrade to .NET 8
  • PR #6708: Blob storing feature (by totpero)

Enhancements

Bug Fixes & Others

  • PR #6824: Upgraded to .NET 8 final and other NuGet packages (by ismcagdas)
  • ISSUE #6823: Support for angular 17

... (truncated)

Commits
  • 7df05af increased version number
  • 8588af4 Remove generic IOnlineClientManager and its implementation
  • 76cd027 increased version number
  • a33208c related #6901: Make FeatureValues setter public in TenantFeatureCacheItem
  • 839a214 Merge pull request #6899 from msanlisavas/patch-1
  • 241fb3d Update EF-Core-MySql-Integration.md
  • b106ed7 changed version number
  • 65ae7e7 Merge branch 'dev'
  • b82d343 Merge pull request #6887 from aspnetboilerplate/fix/remove-newtonsoft-usages
  • ccd7a1d Merge pull request #6892 from aspnetboilerplate/fix/6884
  • Additional commits viewable in compare view

Updates Castle.Core from 4.4.1 to 5.1.1

Release notes

Sourced from Castle.Core's releases.

5.1.1

Bugfixes

  • Proxies using records derived from a base generic record broken using .NET 6 compiler (@​CesarD, #632)
  • Failure proxying type that has a non-inheritable custom attribute type applied where null argument is given for array parameter (@​stakx, #637)
  • Nested custom attribute types do not get replicated (@​stakx, #638)

5.1.0

Enhancements

  • Support for covariant method returns (@​stakx, #619)
  • Performance improvement with proxy type generation for class proxies (without target). Abstract class methods now reuse a predefined invocation type (like methods of interface proxies without target; see explanation below at version 5.0.0 enhancements) (@​stakx, #626)

Bugfixes

  • DynamicProxy emits invalid metadata for redeclared event (@​stakx, #590)
  • Proxies using records with a base class broken using .NET 6 compiler (@​ajcvickers, #601)
  • MissingMethodException when proxying interfaces containing sealed methods (@​stakx, #621)

5.0.0

Enhancements

  • .NET 6.0 support (@​Jevonius, #616)
  • .NET Standard 2.0 and 2.1 support (@​lg2de, #485)
  • Non-intercepted methods on a class proxy with target are now forwarded to the target (@​stakx, #571)
  • Significant performance improvements with proxy type generation for interface proxies without target. Up until now, DynamicProxy generated a separate IInvocation implementation type for every single proxied method – it is now able to reuse a single predefined type in many cases, thereby reducing the total amount of dynamic type generation. (@​stakx, #573)

Bugfixes

  • Generic method with differently named generic arguments to parent throws KeyNotFoundException (@​stakx, #106)
  • Proxying certain [Serializable] classes produces proxy types that fail PEVerify test (@​stakx, #367)
  • private protected methods are not intercepted (@​CrispyDrone, #535)
  • System.UIntPtr unsupported (@​stakx, #546)
  • DynamicProxy generates two modules when proceeding from a class proxy's protected method to the target, causing an InvalidOperationException when saving the generated assembly to disk (@​stakx, #569)
  • Upgrade log4net to v2.0.13 (@​jonorossi, @​stakx, @​dschwartzni, #574, #605)

Deprecations

  • Removed support for the .NET Framework < 4.6.2 and .NET Standard 1.x. (@​stakx, #495, #496; @​Jevonius, #614)
  • Removed support for Code Access Security (CAS). (@​stakx, #502)
  • Removed support for Remoting. This library no longer defines any types deriving from MarshalByRefObject, and ProxyUtil.IsProxy (which used to recognize remoting/"transparent" proxies) now tests only for DynamicProxy proxies. (@​stakx, #507)
  • The following public members have been removed:
    • Castle.Core.Internal.CollectionExtensions (class)
    • Castle.Core.Internal.Lock (class) along with all related types and methods
    • Castle.Core.Internal.PermissionUtil.IsGranted (method)
    • Castle.Core.Pair<,> (type). Use System.ValueTuple<,> or System.Tuple<,> instead.
    • all type members in Castle.DynamicProxy.ModuleScope that gave direct access to DynamicProxy's type cache and ModuleBuilders. Only SaveAssembly, LoadAssemblyIntoCache, and members supporting these two facilities are left public.
    • almost all types and type members in the Castle.DynamicProxy.* sub-namespaces, as most of them are intended for internal use only.
    • DynamicProxy's custom exception types have been replaced by standard BCL exceptions (where appropriate), and by a single DynamicProxyException type for internal DynamicProxy errors.

5.0.0-beta001

Full release notes will be available in the future.

Changelog

Sourced from Castle.Core's changelog.

5.1.1 (2022-12-30)

Bugfixes:

  • Proxies using records derived from a base generic record broken using .NET 6 compiler (@​CesarD, #632)
  • Failure proxying type that has a non-inheritable custom attribute type applied where null argument is given for array parameter (@​stakx, #637)
  • Nested custom attribute types do not get replicated (@​stakx, #638)

5.1.0 (2022-08-02)

Enhancements:

  • Support for covariant method returns (@​stakx, #619)
  • Performance improvement with proxy type generation for class proxies (without target). Abstract class methods now reuse a predefined invocation type (like methods of interface proxies without target; see explanation below at version 5.0.0 enhancements) (@​stakx, #626)

Bugfixes:

  • DynamicProxy emits invalid metadata for redeclared event (@​stakx, #590)
  • Proxies using records with a base class broken using .NET 6 compiler (@​ajcvickers, #601)
  • MissingMethodException when proxying interfaces containing sealed methods (@​stakx, #621)

5.0.0 (2022-05-11)

Enhancements:

  • .NET 6.0 support (@​Jevonius, #616)
  • .NET Standard 2.0 and 2.1 support (@​lg2de, #485)
  • Non-intercepted methods on a class proxy with target are now forwarded to the target (@​stakx, #571)
  • Significant performance improvements with proxy type generation for interface proxies without target. Up until now, DynamicProxy generated a separate IInvocation implementation type for every single proxied method – it is now able to reuse a single predefined type in many cases, thereby reducing the total amount of dynamic type generation. (@​stakx, #573)

Bugfixes:

  • Generic method with differently named generic arguments to parent throws KeyNotFoundException (@​stakx, #106)
  • Proxying certain [Serializable] classes produces proxy types that fail PEVerify test (@​stakx, #367)
  • private protected methods are not intercepted (@​CrispyDrone, #535)
  • System.UIntPtr unsupported (@​stakx, #546)
  • DynamicProxy generates two modules when proceeding from a class proxy's protected method to the target, causing an InvalidOperationException when saving the generated assembly to disk (@​stakx, #569)
  • Upgrade log4net to v2.0.13 (@​jonorossi, @​stakx, @​dschwartzni, #574, #605)

Deprecations:

  • Removed support for the .NET Framework < 4.6.2 and .NET Standard 1.x. (@​stakx, #495, #496; @​Jevonius, #614)
  • Removed support for Code Access Security (CAS). (@​stakx, #502)
  • Removed support for Remoting. This library no longer defines any types deriving from MarshalByRefObject, and ProxyUtil.IsProxy (which used to recognize remoting/"transparent" proxies) now tests only for DynamicProxy proxies. (@​stakx, #507)
  • The following public members have been removed:
    • Castle.Core.Internal.CollectionExtensions (class)
    • Castle.Core.Internal.Lock (class) along with all related types and methods
    • Castle.Core.Internal.PermissionUtil.IsGranted (method)
    • Castle.Core.Pair<,> (type). Use System.ValueTuple<,> or System.Tuple<,> instead.
    • all type members in Castle.DynamicProxy.ModuleScope that gave direct access to DynamicProxy's type cache and ModuleBuilders. Only SaveAssembly, LoadAssemblyIntoCache, and members supporting these two facilities are left public.
    • almost all types and type members in the Castle.DynamicProxy.* sub-namespaces, as most of them are intended for internal use only.
    • DynamicProxy's custom exception types have been replaced by standard BCL exceptions (where appropriate), and by a single DynamicProxyException type for internal DynamicProxy errors.
Commits
  • e60c9e2 Update changelog for 5.1.1 release
  • 18ddd62 Merge pull request #643 from stakx/bug/covariant-returns
  • 6b16135 Update changelog
  • eda2c80 Move check for covariant return types
  • a1b44d7 Also check for covariant return types if both of them are generic
  • be22332 Add failing tests for covariant return types involving a variant generic inte...
  • ee08309 Detail: assert that IsCovariantReturnTypes only gets called for return types
  • 6238c15 Also check for covariant return types if one of them is generic
  • 06884f4 Detail: adjust names of derived record types
  • 2d944e4 Add failing test for proxying type derived from generic record type
  • Additional commits viewable in compare view

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)

Bumps [Abp.Castle.Log4Net](https://github.com/aspnetboilerplate/aspnetboilerplate) and [Castle.Core](https://github.com/castleproject/Core). These dependencies needed to be updated together.

Updates `Abp.Castle.Log4Net` from 6.0.0 to 9.1.3
- [Release notes](https://github.com/aspnetboilerplate/aspnetboilerplate/releases)
- [Commits](aspnetboilerplate/aspnetboilerplate@v6.0...v9.1.3)

Updates `Castle.Core` from 4.4.1 to 5.1.1
- [Release notes](https://github.com/castleproject/Core/releases)
- [Changelog](https://github.com/castleproject/Core/blob/master/CHANGELOG.md)
- [Commits](castleproject/Core@v4.4.1...v5.1.1)

---
updated-dependencies:
- dependency-name: Abp.Castle.Log4Net
  dependency-type: direct:production
  update-type: version-update:semver-major
- dependency-name: Castle.Core
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Mar 30, 2024
Copy link

sonarcloud bot commented Mar 30, 2024

Quality Gate Passed Quality Gate passed

Issues
0 New issues
0 Accepted issues

Measures
0 Security Hotspots
No data about Coverage
No data about Duplication

See analysis details on SonarCloud

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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants