All Versions
14
Latest Version
Avg Release Cycle
104 days
Latest Release
1390 days ago

Changelog History
Page 1

  • v0.8.9

    June 30, 2020
  • v0.8.8

    December 25, 2019
  • v0.8.7

    November 25, 2019
  • v0.8.6

    October 19, 2019
  • v0.8.5 Changes

    June 07, 2019
    • โฌ†๏ธ Upgraded parking_lot.
  • v0.8.4 Changes

    April 02, 2019

    โž• Added

    • โž• Added a HandleEvent trait used to listen for various events from the pool for monitoring purposes.

    ๐Ÿ”„ Changed

    • ๐Ÿ”€ Switched from standard library synchronization primitives to parking_lot.
  • v0.8.3 Changes

    November 03, 2018

    ๐Ÿ›  Fixed

    • The set of idle connections is now treated as a stack rather than a queue. The old behavior interacted poorly with configurations that allowed the pool size to shrink when mostly idle.
  • v0.8.2 Changes

    December 24, 2017

    ๐Ÿ”„ Changed

    • โฌ†๏ธ Upgraded from log 0.3 to 0.4.
  • v0.8.1 Changes

    November 28, 2017

    ๐Ÿ›  Fixed

    • ๐Ÿ›  Fixed the example in the README.
  • v0.8.0 Changes

    November 26, 2017

    ๐Ÿ”„ Changed

    • ๐Ÿ”ง Pool configuration has changed. Rather than constructing a Config and passing it to the Pool constructor, you now configure a Builder which then directly constructs the pool:

      // In 0.7.x
      let config = Config::builder()
          .min_idle(3)
          .build();
      let pool = Pool::new(config, manager)?;
      
      // In 0.8.x
      let pool = Pool::builder()
          .min_idle(3)
          .build(manager)?;
      
    • 0๏ธโƒฃ The Pool::new method can be used to construct a Pool with default settings:

      // In 0.7.x
      let config = Config::default();
      let pool = Pool::new(config, manager)?;
      
      // In 0.8.x
      let pool = Pool::new(manager)?;
      
    • The initialization_fail_fast configuration option has been replaced with separate Builder::build and Builder::build_unchecked methods. The second returns a Pool directly without wrapping it in a Result, and does not check that connections are being successfully opened:

      // In 0.7.x
      let config = Config::builder()
          .initialization_fail_fast(false)
          .build();
      let pool = Pool::new(config, manager).unwrap();
      
      // In 0.8.x
      let pool = Pool::builder().build_unchecked(manager);
      
    • ๐Ÿ”€ The InitializationError and GetTimeout error types have been merged into a unified Error type.

    • The Pool::config method has been replaced with accessor methods on Pool to directly access configuration, such as Pool::min_idle.

    • The scheduled_thread_pool crate has been upgraded from 0.1 to 0.2.

    โœ‚ Removed

    • โฑ The deprecated Builder::num_threads method has been removed. Construct a ScheduledThreadPool and set it via Builder::thread_pool instead.