Skip to content

Releases: catfan/Medoo

Medoo v2.1.12

03 Feb 11:31
Compare
Choose a tag to compare

[fix] Conflict LIKE clause key #1111.

Medoo v2.1.11

29 Jan 06:54
Compare
Choose a tag to compare
  • [update] workflows configuration files
  • [fix] incorrect LIKE clause with double-digit indexes #1109
  • [fix] generate() quote error with non-string value #1108
  • [fix] where IN clause with Raw object #1079
  • [fix] buildRaw() with duplicate placeholder name #1069

Medoo v2.1.10

10 Jun 08:04
Compare
Choose a tag to compare
  • [update] Update php-cs-fixer configuration file.
  • [fix] Fix unset data type conversion error #1089.

Medoo v2.1.9

23 May 02:50
Compare
Choose a tag to compare
  • [fix] Fix doc return value type for the aggregate method. #1083
  • [fix] String type declaration for dataMap(). #1085

Medoo v2.1.8

20 Jan 09:35
Compare
Choose a tag to compare

What's Changed

  • [fix] using ${var} in strings is deprecated by @etrappg in #1072

New Contributors

Full Changelog: v2.1.7...v2.1.8

Medoo v2.1.7

02 Jul 04:41
Compare
Choose a tag to compare
  • [update] the default commands can be overridden by the connection command option. #1048

You can now override Medoo predefined commands.

new Medoo([
	'command' => [
		'SET SQL_MODE="ANSI_QUOTES,ONLY_FULL_GROUP_BY"'
	]
]);
  • [fix] output unsupported PDO attr on info(). #1049

Medoo v2.1.6

10 May 02:49
Compare
Choose a tag to compare
  • Fix drop() added database prefix two times #1033

Medoo v2.1.5

04 May 10:39
Compare
Choose a tag to compare
  • Fixed query() table quotation for TABLE IS EXISTS keyword. #1036
  • Updated and improved documentation.

Medoo v2.1.4

13 Dec 07:25
Compare
Choose a tag to compare
  • Improve operator matching and will throw an error for the invalid operator.
  • Fixed using Raw with join for select().
  • Fixed isJoin doc return type.

Medoo v2.1.3

09 Oct 08:35
Compare
Choose a tag to compare
  • delete() supports raw object.
  • Fix equal operator for columns relationship #1014.
  • Fix LIKE escape dash sign #1001.