Skip to content

v6.0.0

Choose a tag to compare

@arthurschreiber arthurschreiber released this 09 Feb 14:24
· 865 commits to master since this release

6.0.0 (2019-02-09)

Bug Fixes

  • remove support for deprecated authentication options (e8fe4ff)

Features

  • enable connection encryption by default (70ffe4a)
  • remove deprecated parameter types (b67b66f)

BREAKING CHANGES

  • This removes support for the deprecated userName, password and
    domain authentication options. Please switch to the new
    authentication property instead.

  • This removes the following, long deprecated parameter types:

    • Null
    • IntN
    • BitN
    • FloatN
    • MoneyN
    • DecimalN
    • NumericN
    • DateN
    • DateTimeOffsetN
    • DateTime2N
    • TimeN
    • UniqueIdentifierN
  • If no encrypt setting was specified before, tedious would fall back
    to not using any encryption by default. This changes the default to
    encrypt connections unless encrypt is explicitly set to false.

    This should work without issues with most SQL Server setups, but might
    cause connections to fail if encryption between tedious and SQL Server
    can not be established.