Koka / odbc-rs

Rust ODBC FFI binding
MIT License
103 stars 31 forks source link

Update odbc-sys requirement from 0.8.2 to 0.12.0 #145

Closed dependabot-preview[bot] closed 4 years ago

dependabot-preview[bot] commented 4 years ago

Updates the requirements on odbc-sys to permit the latest version.

Changelog

Sourced from odbc-sys's changelog.

0.12.0

  • Breaking Change: SqlDataType has been converted from an enumeration into a newtype integer.

0.11.0

Breaking Changes:

  • SQLColAttributeW: field_identifier parameter type has been changed to the new Desc enumeration.
  • Desc has been renamed to Description.

0.10.0

Breaking Changes:

  • Enum variant names have been shortend and use now idiomatic CamelCasing.
  • Type Names now also use idiomatic CamelCasing.
  • The SQL prefix has been dropped from most type names.
  • InputOutput has been renamed to ParamType. As the names of the enumeration should be derived of the Prefix of the associated constants in the C Headers.
  • Enumerations which have been casted from integers are now newtypes in order to prevent undefined behaviour in case the enum is not complete or the driver/driver manager is not ODBC conform.
    • SqlReturn is now a newtype i16 with predifined constants and is now named Return.
    • Nullable is now a newtype i16 with predefined constants.
    • interval_type in IntervalStruct has been changed from Interval to c_int.

0.9.0

  • Adds attributes::SQL_ATTR_CONNECTION_POOLING and attributes::SQL_ATTR_CP_MATCH enums

  • Implements Default trait for attribute values

  • Breaking Change: SQL_ATTR_APPLICATION_KEY constant removed because it is not part of the ODBC standard. If there is any software that depends on this constant defined, users are encouraged to open an issue report

  • Breaking Change: SQL_OV_ODBC_2 constant removed because odbc-sys does not support OBDC versions < 3.0.

  • Breaking Change: Enum OdbcVersion renamed to SQL_ATTR_ODBC_VERSION to better reflect it's intended use as a value for environment attribute to be used with SQLSetEnvAttr and SQLGetEnvAttr functions

0.8.2

  • Adds support for static linking

0.8.1

  • Fix: Move SQL_ATTR_ASYNC_STMT_EVENT is now part of the SqlStatementAttribute enumeration.
Commits
  • 2cd7f07 sqldatatype is not a newtype integer
  • d468158 Add desc enumeration
  • 591b8c2 docstrings for some SqlType variants
  • 6af05a5 Merge pull request #27 from pacman82/Renaming-and-safe-usage
  • 9c6238c fix 32 bit definitiots
  • 424c8f9 Change naming conventions and types
  • d02fcc8 set version to 0.9.0
  • d0df9e9 Merge pull request #23 from mversic/env_attr_values
  • d07af2f Updated Changelog.md
  • 1e5e4dc Implement Default trait for enums with default value
  • 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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Pull request limits (per update run and/or open at any time) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired)
dependabot-preview[bot] commented 4 years ago

Superseded by #147.