Skip to content

Commit

Permalink
Bump version to 5.69.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Jun 1, 2023
1 parent 748c989 commit 3bfa0f0
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
=== master
=== 5.69.0 (2023-06-01)

* Avoid unsupported flag warning when using the mysql adapter with ruby-mysql 3+ (jeremyevans)

Expand Down
26 changes: 26 additions & 0 deletions doc/release_notes/5.69.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
= New Features

* An adapter has been added for the trilogy MySQL driver. One large
advantage over mysql2 is that trilogy does not require any MySQL
client libraries installed on the machine. The trilogy adapter
has basically the same issues/skipped specs as the mysql2 adapter,
but it also does not support an application_timezone different
than the database_timezone.

* Model dataset modules now have a model accessor, allowing for
code such as:

class Foo < Sequel::Model
dataset_module do
where :kept, Sequel[model.table_name][:discarded_at] => nil
end
end

= Improvements

* The mysql adapter now works with ruby-mysql 4 (the pure-ruby
MySQL driver). Note that multi-results support does not work
with ruby-mysql 4 (it doesn't work with mysql2, trilogy, or
other Sequel adapters in general).

* Warnings for unsupported flags are now avoided on ruby-mysql 3.
2 changes: 1 addition & 1 deletion lib/sequel/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ module Sequel

# The minor version of Sequel. Bumped for every non-patch level
# release, generally around once a month.
MINOR = 68
MINOR = 69

# The tiny version of Sequel. Usually 0, only bumped for bugfix
# releases that fix regressions from previous versions.
Expand Down

0 comments on commit 3bfa0f0

Please sign in to comment.