Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Bump the core-dependencies group with 3 updates #1886

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 2 commits into from
Sep 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 27, 2024

Bumps the core-dependencies group with 3 updates: Microsoft.Extensions.Configuration.Binder, Autofac and Autofac.Extensions.DependencyInjection.

Updates Microsoft.Extensions.Configuration.Binder from 8.0.0 to 8.0.2

Release notes

Sourced from Microsoft.Extensions.Configuration.Binder's releases.

.NET 8.0.2

Release

.NET 8.0.1

Release

Commits
  • 1381d5e Merge in 'release/8.0' changes
  • c987e4f [release/8.0] Fix Options Source Gen RangeAttribute Thread Safety (#97110)
  • 441c91d Merge in 'release/8.0' changes
  • c93800e Merge pull request #97065 from carlossanlop/release/8.0-staging
  • c2d2bb3 Merge branch 'release/8.0' into release/8.0-staging
  • 6d35e39 [release/8.0-staging] UInt64.CreateSaturating<Int128> truncates instead of sa...
  • 96b0a55 [release/8.0-staging] macOS: Set certificate as a dependency of private key h...
  • 85c2772 [release/8.0] Fix server-side OCSP stapling on Linux (#96838)
  • 683da71 [release/8.0-staging] Gen0 segment should always be reported as Gen0 for DacH...
  • f9d0a7b [release/8.0-staging] Fix Crossgen2 PDB generation (again) (#96566)
  • Additional commits viewable in compare view

Updates Autofac from 7.1.0 to 8.1.0

Release notes

Sourced from Autofac's releases.

v8.1.0

What's Changed

  • Optimized required member caching (#1415 - thanks @​SergeiPavlov!)
  • Correctly handle polyfilled required infrastructure attributes by (#1421 - thanks @​DoctorVanGogh!)
  • Improve memory management in registered services tracking (#1423 - thanks @​snaumenko-st!)
  • Fix #1330: Generic decorators attached to generics that expose multiple service types should be handled properly (#1424)

Full Changelog: autofac/Autofac@v8.0.0...v8.1.0

v8.0.0

Breaking Changes

  • Removed netcoreapp3.1 support/testing (#1401).
  • Converted ResolveRequest into a readonly struct (#1397 - thanks @​SergeiPavlov!).

Additional Changes

  • Added net8.0 target (#1401).
  • Replaced use of Moq in tests with NSubstitute (#1390 - thanks @​aydjay!).

Full Changelog: autofac/Autofac@v7.1.0...v8.0.0

Commits
  • b222d0f Use latest SDKs for build.
  • 4106a2d Semver 8.0.1 => 8.1.0 for dependency update.
  • a8f398f Update dependencies to latest.
  • 5aeecc7 Semver 8.0.0 => 8.0.1 for bug fixes.
  • 4059546 Merge pull request #1424 from autofac/feature/generic-decorator
  • c12d527 Merge pull request #1423 from snaumenko-st/tracker-memory-leak
  • caa3e04 Add a resolved/compatible service parameter to decorator resolutions.
  • 488294e Merge pull request #1421 from DoctorVanGogh/fix-required
  • bb9e961 Replaced ConcurrentBag with ConcurrentQueue. It's causing memory leaks if lef...
  • e68c1b8 use polyfill copied from dotnet runtime
  • Additional commits viewable in compare view

Updates Autofac.Extensions.DependencyInjection from 8.0.0 to 10.0.0

Release notes

Sourced from Autofac.Extensions.DependencyInjection's releases.

v10.0.0

Breaking Changes

All instance dependencies are now considered ExternallyOwned which means if you register an object instance in the dependency injection container through this package, when you dispose of the container it will not dispose of the provided instance. This is different than default Autofac behavior. Autofac normally assumes control of registered instances, where the Microsoft DI container does not. This change only affects instances registered using the Microsoft syntax and then populated into Autofac; it does not change the underlying Autofac container.

public class Startup
{
  public void ConfigureServices(IServiceCollection services)
  {
      // The instance `item` here WILL NOT be disposed when the container is disposed
      // because it's registered using Microsoft syntax and will be imported into Autofac.
      var item = new MyDisposableItem();
      services.AddSingleton(item);
  }
public void ConfigureContainer(ContainerBuilder builder)
{
// The instance item here WILL be disposed when the container is disposed
// because it's registered using Autofac syntax directly with Autofac.
var item = new MyDisposableItem();
builder.RegisterInstance(item);
}
}

Additional Changes

  • Optimization for reflection-activated components to avoid adding a parameter in the resolve path if possible. (@​alistairjevans #119)
  • Updated Autofac dependency to 8.1.0.

Full Changelog: autofac/Autofac.Extensions.DependencyInjection@v9.0.0...v10.0.0

v9.0.0

Breaking Changes

Additional Changes

  • Added keyed service support (IKeyedServiceProvider, IServiceProviderIsKeyedService, support for AnyKey) to match Microsoft.Extensions.DependencyInjection feature updates for .NET 8. (#115)

Full Changelog: autofac/Autofac.Extensions.DependencyInjection@v8.0.0...v9.0.0

Commits
  • f2170d3 Dispose tracker in tests before it loses scope.
  • 344c14b Update all dependencies/build frameworks.
  • eb20702 Merge pull request #120 from autofac/external-dependency-switch
  • ecec468 Bump major version.
  • 4110c93 Switch singletons to be externally owned.
  • dc03f10 Merge pull request #119 from autofac/bug/keyed-middleware-performance
  • a690c3c Add additional test, and comments for the delegate perf choice.
  • 8e83d8c Consider additional activator types.
  • fa4b37e Reword a note.
  • ed2188e Simplify back to a single middleware, added at component registration level r...
  • Additional commits viewable in compare view

Updates Autofac from 7.1.0 to 8.1.0

Release notes

Sourced from Autofac's releases.

v8.1.0

What's Changed

  • Optimized required member caching (#1415 - thanks @​SergeiPavlov!)
  • Correctly handle polyfilled required infrastructure attributes by (#1421 - thanks @​DoctorVanGogh!)
  • Improve memory management in registered services tracking (#1423 - thanks @​snaumenko-st!)
  • Fix #1330: Generic decorators attached to generics that expose multiple service types should be handled properly (#1424)

Full Changelog: autofac/Autofac@v8.0.0...v8.1.0

v8.0.0

Breaking Changes

  • Removed netcoreapp3.1 support/testing (#1401).
  • Converted ResolveRequest into a readonly struct (#1397 - thanks @​SergeiPavlov!).

Additional Changes

  • Added net8.0 target (#1401).
  • Replaced use of Moq in tests with NSubstitute (#1390 - thanks @​aydjay!).

Full Changelog: autofac/Autofac@v7.1.0...v8.0.0

Commits
  • b222d0f Use latest SDKs for build.
  • 4106a2d Semver 8.0.1 => 8.1.0 for dependency update.
  • a8f398f Update dependencies to latest.
  • 5aeecc7 Semver 8.0.0 => 8.0.1 for bug fixes.
  • 4059546 Merge pull request #1424 from autofac/feature/generic-decorator
  • c12d527 Merge pull request #1423 from snaumenko-st/tracker-memory-leak
  • caa3e04 Add a resolved/compatible service parameter to decorator resolutions.
  • 488294e Merge pull request #1421 from DoctorVanGogh/fix-required
  • bb9e961 Replaced ConcurrentBag with ConcurrentQueue. It's causing memory leaks if lef...
  • e68c1b8 use polyfill copied from dotnet runtime
  • 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the core-dependencies group with 3 updates: [Microsoft.Extensions.Configuration.Binder](https://github.com/dotnet/runtime), [Autofac](https://github.com/autofac/Autofac) and [Autofac.Extensions.DependencyInjection](https://github.com/autofac/Autofac.Extensions.DependencyInjection).


Updates `Microsoft.Extensions.Configuration.Binder` from 8.0.0 to 8.0.2
- [Release notes](https://github.com/dotnet/runtime/releases)
- [Commits](dotnet/runtime@v8.0.0...v8.0.2)

Updates `Autofac` from 7.1.0 to 8.1.0
- [Release notes](https://github.com/autofac/Autofac/releases)
- [Commits](autofac/Autofac@v7.1.0...v8.1.0)

Updates `Autofac.Extensions.DependencyInjection` from 8.0.0 to 10.0.0
- [Release notes](https://github.com/autofac/Autofac.Extensions.DependencyInjection/releases)
- [Commits](autofac/Autofac.Extensions.DependencyInjection@v8.0.0...v10.0.0)

Updates `Autofac` from 7.1.0 to 8.1.0
- [Release notes](https://github.com/autofac/Autofac/releases)
- [Commits](autofac/Autofac@v7.1.0...v8.1.0)

---
updated-dependencies:
- dependency-name: Microsoft.Extensions.Configuration.Binder
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: core-dependencies
- dependency-name: Autofac
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-dependencies
- dependency-name: Autofac.Extensions.DependencyInjection
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-dependencies
- dependency-name: Autofac
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: core-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 27, 2024
@dependabot dependabot bot requested a review from jzabroski September 27, 2024 13:54
@jzabroski jzabroski merged commit a16df12 into main Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/nuget/core-dependencies-d454333b5e branch September 30, 2024 12:50
@jzabroski jzabroski added this to the 6.1.0 milestone Oct 1, 2024
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.

1 participant
Morty Proxy This is a proxified and sanitized view of the page, visit original site.