Skip to content

Releases: autofac/Autofac.SignalR

v6.1.0

11 Apr 16:24
Compare
Choose a tag to compare

This is a compatibility release for Autofac v7.0.0.

  • Updated core Autofac to >= 6.5.0.
  • Updated SignalR to 2.4.3.

v6.0.0

04 Oct 09:20
Compare
Choose a tag to compare

This is a compatibility release for Autofac 6.0

Breaking change: Starting with Autofac 6.0, we now only target netstandard2.0 and netstandard2.1; we have removed the explicit target for net461.

This package therefore now targets net472, instead of net461.

v5.0.0

03 Feb 22:29
Compare
Choose a tag to compare

This release is an update for compatibility with Autofac 5.0.0 and requires that new version. Autofac 5.0.0 does have some breaking changes - see the Autofac release notes for more information.

Minimum .NET framework updated to .NET 4.6.1.

v4.0.0

03 Jan 23:44
Compare
Choose a tag to compare
  • Added RegisterPersistentConnections extension.
  • Verified support for Autofac 4.

v3.1.0

03 Jan 23:42
Compare
Choose a tag to compare

This release occurred prior to switching Autofac components to separate repositories.

  • Added a RegisterHubs extension method for scanning based registration of hubs.
  • Changed the Autofac.Integration.SignalR project to target .NET 4.0 instead of .NET 4.5.
  • The RegisterHubs extension method now registers hubs as ExternallyOwned. There is no way to create a lifetime scope around hub invocations and we don't want the Disposer on the root lifetime scope holding onto instances.
  • Removed the IRegistrationSource for the SignalR dependency resolver so that registrations are not automatically created for the default services. This is because of a bug in the SignalR message bus blocking indefinitely when Dispose is called twice (discovered in self-hosting scenario). It is still possible to manually add registrations to replace the default services.