Skip to content

Releases: Finomnis/tokio-graceful-shutdown

v0.19.3

02 Apr 16:00
af5ba91

Choose a tag to compare

Changes

  • Fix missing semicolon in usage example (#136)

v0.19.2

20 Nov 20:14
21f915e

Choose a tag to compare

Changes

  • Convert over-ambitious panics to warnings in: (#132)
    • Toplevel::catch_signals
    • Subsystem panic handler
  • Improve documentation of SubsystemHandle::wait_for_children (#132)

v0.19.1

20 Nov 13:04
261bb5d

Choose a tag to compare

Changes

  • Cleanup dev-dependencies:
    • Bump console-subscriber to 0.5.0
    • Remove obsolete dependencies:
      • futures-util
      • tower
      • gcc

v0.19.0

28 Sep 16:25
7f68ca3

Choose a tag to compare

Breaking Changes

  • Subsystems now take the SubsystemHandle parameter as a mutable reference (&mut SubsystemHandle) (#125).
    • It was always meant to be like that, but technical limitations in older Rust versions prevented the combination of mutable references in generic async functions.
    • This change has some side effects, so I created a small migration guide.

v0.18.0

28 Sep 07:53
efa45eb

Choose a tag to compare

Breaking Changes

  • Remove async_trait dependency now that RPITIT was stabilized (#124)
    • Rework trait IntoSubsystem to use RPITIT instead of async_trait.

v0.17.1

20 Sep 07:43
2aa22fe

Choose a tag to compare

Changes

  • Fix typo in docs (#123)

v0.17.0

20 Sep 07:21
76e0c63

Choose a tag to compare

Breaking Changes

  • Minimum supported Rust version is now 1.85 (#111)

Changes

  • Change examples to use async closures now that they are stabilized (#112)
  • Add Toplevel::new_with_shutdown_token (#122)
  • Add example 23_shutdown_from_external (#122)

v0.16.0

09 Feb 09:20
8e20f0e

Choose a tag to compare

Breaking Changes

  • Minimum supported tokio version is now 1.39.0.

Changes

  • Add NestedSubsystem::abort() (#104)

v0.15.4

06 Feb 01:09

Choose a tag to compare

Changes

  • Add default value for ErrType of NestedSubsystem (#101)
  • Add NestedSubsystem::is_finished() and NestedSubsystem::is_finished_shallow() (#102)

v0.15.3

10 Jan 22:30
66b81d1

Choose a tag to compare

Changes

  • Add SubsystemHandle::name() (#98)