Skip to content

Releases: vapor/mysql-kit

MySQL 3.1.0

05 Dec 23:19
355fdc8
Compare
Choose a tag to compare
Merge pull request #214 from vapor/sql-2-1

sql 2.1 updates

MySQL 3.0.2

26 Jul 00:03
448f1ca
Compare
Choose a tag to compare

Fixed:

  • Performance improvements for MySQLRowDecoder and firstValue(forColumn:inTable) (#207).

MySQL 3.0.1

25 Jul 22:57
8a2cbdd
Compare
Choose a tag to compare

Fixed:

  • Use a thread-specific DateComponents struct to improve performance (#205).

MySQL 3.0.0

19 Jul 22:02
8717e4a
Compare
Choose a tag to compare

MySQL 3.0 is here 🎉
🐬 Pure Swift MySQL client built on non-blocking, event-driven sockets.

Docs:
docs.vapor.codes/3.0/mysql/getting-started/

API Docs:
api.vapor.codes/mysql/latest/MySQL


Changes since last RC:

New:

  • Added missing doc blocks.
  • Hid some unnecessarily public types and methods.
  • Fixed an issue where 0 length result sets could cause the connection to close when using TEXT protocol.

MySQL 3.0.0 RC 4.4

17 Jul 00:06
592c52a
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4.4 Pre-release
Pre-release

New:

  • Updated to vapor/sql 2.0.0 release (#200).

MySQL 3.0.0 RC 4.3

22 Jun 22:08
b726a2d
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4.3 Pre-release
Pre-release

New:

  • Foundation.Decimal is now stored as VARCHAR(200) instead of DECIMAL(10,0) to ensure lossless encoding (#190).
  • New methods for creating and dropping indexes (#192).
conn.create(index: "test_idx", on: \Planet.name).unique.run()
conn.drop(index: "test_idx", on: Planet.self).run()

MySQL 3.0.0 RC 4.2.1

22 Jun 22:10
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4.2.1 Pre-release
Pre-release
3.0.0-rc.4.2.1

remove debug print

MySQL 3.0.0 RC 4.2

22 Jun 22:10
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4.2 Pre-release
Pre-release
3.0.0-rc.4.2

fix fk action

MySQL 3.0.0 RC 4.1

21 Jun 21:09
faedd71
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4.1 Pre-release
Pre-release

New:

  • Convenience methods for creating MySQLDataType have been added (#188).
  • Support for adding columns AFTER another column or FIRST has been added (#184).

Fixed:

  • CHARACTER SET and COLLATE are now properly added when serializing column definitions (#186, #188).
  • More information about fullAuthRequired error has been added (#187, #188).

MySQL 3.0.0 RC 4

19 Jun 23:02
ac1a767
Compare
Choose a tag to compare
MySQL 3.0.0 RC 4 Pre-release
Pre-release

New:

  • Upgraded to vapor/sql 2.0.