Skip to content

Commit

Permalink
Bump version to 5.79.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremyevans committed Apr 1, 2024
1 parent 00fbc7a commit 4314aeb
Show file tree
Hide file tree
Showing 3 changed files with 30 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.79.0 (2024-04-01)

* Support create_or_replace_view with :materialized option on PostgreSQL (nashby) (#2144)

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

* Dataset#select_prepend has been added for prepending to the
currently selected columns:

DB[:table].select_prepend(:column)
# SELECT column, table.*

As not all databases support "SELECT column, *", select_prepend
qualifies wildcard selections to all tables referenced in the
query.

The only reason to use select_prepend is if you want the hashes
returned by Sequel to be in a specific order. Otherwise, it is
better to use select_append.

* On PostgreSQL, Sequel now supports an :unlogged_tables_default
Database option, which will default created tables to be UNLOGGED.
This can be useful to speedup testing in some cases, but it should
never be used in cases where data integrity is important.

= Other Improvements

* On PostgreSQL, Database#create_or_replace_view now supports the
:materialized option. This allows for dropping an existing
materialized view and creating a new one with the same name
(PostgreSQL does not have native support for replacing materialized
views).
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 = 78
MINOR = 79

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

0 comments on commit 4314aeb

Please sign in to comment.