sequel 5.22.0 → 5.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG +78 -0
- data/README.rdoc +1 -1
- data/doc/dataset_filtering.rdoc +15 -0
- data/doc/opening_databases.rdoc +3 -0
- data/doc/postgresql.rdoc +2 -2
- data/doc/release_notes/5.23.0.txt +56 -0
- data/doc/release_notes/5.24.0.txt +56 -0
- data/doc/release_notes/5.25.0.txt +32 -0
- data/doc/release_notes/5.26.0.txt +35 -0
- data/doc/release_notes/5.27.0.txt +21 -0
- data/doc/testing.rdoc +1 -0
- data/lib/sequel/adapters/jdbc.rb +7 -1
- data/lib/sequel/adapters/jdbc/postgresql.rb +1 -13
- data/lib/sequel/adapters/jdbc/sqlite.rb +29 -0
- data/lib/sequel/adapters/mysql2.rb +0 -1
- data/lib/sequel/adapters/shared/mssql.rb +9 -8
- data/lib/sequel/adapters/shared/postgres.rb +30 -7
- data/lib/sequel/adapters/shared/sqlite.rb +23 -4
- data/lib/sequel/adapters/tinytds.rb +12 -0
- data/lib/sequel/adapters/utils/mysql_mysql2.rb +1 -1
- data/lib/sequel/database/logging.rb +7 -1
- data/lib/sequel/database/schema_generator.rb +11 -2
- data/lib/sequel/database/schema_methods.rb +2 -0
- data/lib/sequel/dataset/actions.rb +3 -2
- data/lib/sequel/dataset/features.rb +6 -0
- data/lib/sequel/dataset/sql.rb +17 -4
- data/lib/sequel/extensions/named_timezones.rb +51 -9
- data/lib/sequel/extensions/pg_array.rb +4 -0
- data/lib/sequel/extensions/pg_array_ops.rb +10 -6
- data/lib/sequel/extensions/pg_enum.rb +4 -1
- data/lib/sequel/extensions/pg_json.rb +88 -17
- data/lib/sequel/extensions/pg_json_ops.rb +124 -0
- data/lib/sequel/extensions/pg_range.rb +9 -0
- data/lib/sequel/extensions/pg_row.rb +3 -1
- data/lib/sequel/extensions/sql_comments.rb +2 -2
- data/lib/sequel/model/base.rb +12 -5
- data/lib/sequel/plugins/association_multi_add_remove.rb +83 -0
- data/lib/sequel/plugins/association_proxies.rb +3 -2
- data/lib/sequel/plugins/caching.rb +3 -0
- data/lib/sequel/plugins/class_table_inheritance.rb +10 -0
- data/lib/sequel/plugins/csv_serializer.rb +26 -9
- data/lib/sequel/plugins/dirty.rb +3 -9
- data/lib/sequel/plugins/insert_conflict.rb +72 -0
- data/lib/sequel/plugins/nested_attributes.rb +7 -0
- data/lib/sequel/plugins/pg_auto_constraint_validations.rb +89 -30
- data/lib/sequel/plugins/sharding.rb +11 -5
- data/lib/sequel/plugins/static_cache.rb +8 -3
- data/lib/sequel/plugins/static_cache_cache.rb +53 -0
- data/lib/sequel/plugins/typecast_on_load.rb +3 -2
- data/lib/sequel/sql.rb +4 -1
- data/lib/sequel/timezones.rb +50 -11
- data/lib/sequel/version.rb +1 -1
- data/spec/adapters/postgres_spec.rb +135 -7
- data/spec/adapters/sqlite_spec.rb +1 -1
- data/spec/bin_spec.rb +2 -2
- data/spec/core/database_spec.rb +50 -0
- data/spec/core/dataset_spec.rb +23 -1
- data/spec/core/expression_filters_spec.rb +22 -3
- data/spec/core/schema_spec.rb +18 -0
- data/spec/core/spec_helper.rb +1 -1
- data/spec/core_extensions_spec.rb +1 -1
- data/spec/extensions/association_multi_add_remove_spec.rb +1041 -0
- data/spec/extensions/dirty_spec.rb +33 -0
- data/spec/extensions/insert_conflict_spec.rb +103 -0
- data/spec/extensions/named_timezones_spec.rb +109 -2
- data/spec/extensions/nested_attributes_spec.rb +48 -0
- data/spec/extensions/pg_array_ops_spec.rb +3 -3
- data/spec/extensions/pg_auto_constraint_validations_spec.rb +37 -0
- data/spec/extensions/pg_json_ops_spec.rb +67 -0
- data/spec/extensions/pg_json_spec.rb +12 -0
- data/spec/extensions/pg_range_spec.rb +19 -2
- data/spec/extensions/sharding_spec.rb +8 -0
- data/spec/extensions/spec_helper.rb +9 -2
- data/spec/extensions/static_cache_cache_spec.rb +35 -0
- data/spec/guards_helper.rb +1 -1
- data/spec/integration/dataset_test.rb +25 -0
- data/spec/integration/plugin_test.rb +28 -1
- data/spec/integration/schema_test.rb +16 -2
- data/spec/integration/spec_helper.rb +7 -1
- data/spec/model/spec_helper.rb +1 -1
- metadata +32 -2
@@ -241,6 +241,18 @@ describe "pg_json extension" do
|
|
241
241
|
Sequel.pg_json_wrap(false).must_equal false
|
242
242
|
Sequel.pg_json_wrap(nil).class.must_equal Sequel::Postgres::JSONNull
|
243
243
|
Sequel.pg_json_wrap(nil).must_be_nil
|
244
|
+
|
245
|
+
c = Class.new(Hash).new
|
246
|
+
Sequel.pg_json_wrap(c).class.must_equal Sequel::Postgres::JSONHash
|
247
|
+
Sequel.pg_json_wrap(c).must_equal(c)
|
248
|
+
|
249
|
+
c = Class.new(Array).new
|
250
|
+
Sequel.pg_json_wrap(c).class.must_equal Sequel::Postgres::JSONArray
|
251
|
+
Sequel.pg_json_wrap(c).must_equal c
|
252
|
+
|
253
|
+
c = Class.new(String).new('a')
|
254
|
+
Sequel.pg_json_wrap(c).class.must_equal Sequel::Postgres::JSONString
|
255
|
+
Sequel.pg_json_wrap(c).must_equal c
|
244
256
|
end
|
245
257
|
|
246
258
|
it "Sequel.pg_json_wrap should fail when passed an unsupported object" do
|
@@ -136,6 +136,20 @@ describe "pg_range extension" do
|
|
136
136
|
s[1][1][:ruby_default].must_equal Sequel::Postgres::PGRange.new(1, 5, :exclude_end=>true, :db_type=>'int4range')
|
137
137
|
end
|
138
138
|
|
139
|
+
it "should work correctly in hashes" do
|
140
|
+
h = Hash.new(1)
|
141
|
+
h[@R.new(1, 2)] = 2
|
142
|
+
h[@R.new(nil, nil, :empty => true)] = 3
|
143
|
+
h[@R.new(1, 2)].must_equal 2
|
144
|
+
h[@R.new(1, 3)].must_equal 1
|
145
|
+
h[@R.new(2, 2)].must_equal 1
|
146
|
+
h[@R.new(1, 2, :exclude_begin => true)].must_equal 1
|
147
|
+
h[@R.new(1, 2, :exclude_end => true)].must_equal 1
|
148
|
+
h[@R.new(1, 2, :db_type => :int)].must_equal 1
|
149
|
+
h[@R.new(nil, nil, :empty => true)].must_equal 3
|
150
|
+
h[@R.new(nil, nil, :empty => true, :db_type => :int)].must_equal 1
|
151
|
+
end
|
152
|
+
|
139
153
|
describe "database typecasting" do
|
140
154
|
before do
|
141
155
|
@o = @R.new(1, 2, :db_type=>'int4range')
|
@@ -429,12 +443,12 @@ describe "pg_range extension" do
|
|
429
443
|
@R.new(nil, nil).wont_equal @R.new(nil, nil, :empty=>true)
|
430
444
|
end
|
431
445
|
|
432
|
-
it "should only consider
|
446
|
+
it "should only consider PGRanges equal if they have the same bounds" do
|
433
447
|
@R.new(1, 2).must_equal @R.new(1, 2)
|
434
448
|
@R.new(1, 2).wont_equal @R.new(1, 3)
|
435
449
|
end
|
436
450
|
|
437
|
-
it "should only consider
|
451
|
+
it "should only consider PGRanges equal if they have the same bound exclusions" do
|
438
452
|
@R.new(1, 2, :exclude_begin=>true).must_equal @R.new(1, 2, :exclude_begin=>true)
|
439
453
|
@R.new(1, 2, :exclude_end=>true).must_equal @R.new(1, 2, :exclude_end=>true)
|
440
454
|
@R.new(1, 2, :exclude_begin=>true).wont_equal @R.new(1, 2, :exclude_end=>true)
|
@@ -450,6 +464,9 @@ describe "pg_range extension" do
|
|
450
464
|
|
451
465
|
it "should not consider a PGRange equal with a Range if it can't be expressed as a range" do
|
452
466
|
@R.new(nil, nil).wont_be :==, (1..2)
|
467
|
+
if startless_range_support
|
468
|
+
@R.new(nil, nil, :exclude_begin=>true).wont_be :==, eval('nil..nil')
|
469
|
+
end
|
453
470
|
end
|
454
471
|
|
455
472
|
it "should consider PGRanges equal with a endless Range they represent" do
|
@@ -186,4 +186,12 @@ describe "sharding plugin" do
|
|
186
186
|
["UPDATE albums SET artist_id = 2, name = 'RF' WHERE (id = 1) -- s1", "UPDATE albums SET name = 'RF', artist_id = 2 WHERE (id = 1) -- s1"].must_include(sqls.slice!(2))
|
187
187
|
sqls.must_equal ["SELECT * FROM albums LIMIT 1 -- s2", "BEGIN -- s1", "COMMIT -- s1"]
|
188
188
|
end
|
189
|
+
|
190
|
+
it "should have objects retrieved from a specific shard using with_server from server_block extension" do
|
191
|
+
album = @db.extension(:server_block).with_server(:s1) do
|
192
|
+
@Album.first
|
193
|
+
end
|
194
|
+
album.update(:name=>'MO')
|
195
|
+
@db.sqls.must_equal ["SELECT * FROM albums LIMIT 1 -- s1", "UPDATE albums SET name = 'MO' WHERE (id = 1) -- s1"]
|
196
|
+
end
|
189
197
|
end
|
@@ -7,7 +7,7 @@ end
|
|
7
7
|
|
8
8
|
ENV['MT_NO_PLUGINS'] = '1' # Work around stupid autoloading of plugins
|
9
9
|
gem 'minitest'
|
10
|
-
require 'minitest/autorun'
|
10
|
+
require 'minitest/global_expectations/autorun'
|
11
11
|
require 'minitest/hooks/default'
|
12
12
|
require 'minitest/shared_description'
|
13
13
|
|
@@ -16,6 +16,11 @@ require_relative "../../lib/sequel"
|
|
16
16
|
|
17
17
|
require_relative '../deprecation_helper'
|
18
18
|
|
19
|
+
if ENV['SEQUEL_TZINFO_VERSION']
|
20
|
+
# Allow forcing specific TZInfo versions, useful when testing
|
21
|
+
gem 'tzinfo', ENV['SEQUEL_TZINFO_VERSION']
|
22
|
+
end
|
23
|
+
|
19
24
|
begin
|
20
25
|
# Attempt to load ActiveSupport blank extension and inflector first, so Sequel
|
21
26
|
# can override them.
|
@@ -26,7 +31,9 @@ rescue LoadError
|
|
26
31
|
nil
|
27
32
|
end
|
28
33
|
|
29
|
-
|
34
|
+
if (RUBY_VERSION >= '2.0.0' && RUBY_ENGINE == 'ruby') || (RUBY_ENGINE == 'jruby' && (JRUBY_VERSION >= '9.3' || (JRUBY_VERSION.match(/\A9\.2\.(\d+)/) && $1.to_i >= 7)))
|
35
|
+
Sequel.extension :core_refinements
|
36
|
+
end
|
30
37
|
|
31
38
|
class << Sequel::Model
|
32
39
|
attr_writer :db_schema
|
@@ -0,0 +1,35 @@
|
|
1
|
+
require_relative "spec_helper"
|
2
|
+
|
3
|
+
describe "static_cache_cache plugin" do
|
4
|
+
before do
|
5
|
+
@db = Sequel.mock
|
6
|
+
@db.fetch = [{:id=>1, :name=>'A'}, {:id=>2, :name=>'B'}]
|
7
|
+
@c = Class.new(Sequel::Model(@db[:t]))
|
8
|
+
def @c.name; 'Foo' end
|
9
|
+
@c.columns :id, :name
|
10
|
+
@file = "spec/files/static_cache_cache-spec-#{$$}.cache"
|
11
|
+
end
|
12
|
+
after do
|
13
|
+
File.delete(@file) if File.file?(@file)
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should allow dumping and loading static cache rows from a cache file" do
|
17
|
+
@c.plugin :static_cache_cache, @file
|
18
|
+
@db.sqls
|
19
|
+
@c.plugin :static_cache
|
20
|
+
@db.sqls.must_equal ['SELECT * FROM t']
|
21
|
+
@c.all.must_equal [@c.load(:id=>1, :name=>'A'), @c.load(:id=>2, :name=>'B')]
|
22
|
+
|
23
|
+
@c.dump_static_cache_cache
|
24
|
+
|
25
|
+
@db.fetch = []
|
26
|
+
c = Class.new(Sequel::Model(@db[:t]))
|
27
|
+
def c.name; 'Foo' end
|
28
|
+
c.columns :id, :name
|
29
|
+
@c.plugin :static_cache_cache, @file
|
30
|
+
@db.sqls
|
31
|
+
@c.plugin :static_cache
|
32
|
+
@db.sqls.must_be_empty
|
33
|
+
@c.all.must_equal [@c.load(:id=>1, :name=>'A'), @c.load(:id=>2, :name=>'B')]
|
34
|
+
end
|
35
|
+
end
|
data/spec/guards_helper.rb
CHANGED
@@ -92,6 +92,17 @@ describe "Simple Dataset operations" do
|
|
92
92
|
@ds.from_self(:alias=>:items).graph(@ds.from_self, {:id=>:id}, :table_alias=>:b).extension(:graph_each).all.must_equal [{:items=>{:id=>1, :number=>10}, :b=>{:id=>1, :number=>10}}]
|
93
93
|
end
|
94
94
|
|
95
|
+
cspecify "should have insert and update work with Sequel::DEFAULT", :sqlite do
|
96
|
+
@db.create_table!(:items) do
|
97
|
+
Integer :number, :default=>10
|
98
|
+
end
|
99
|
+
@ds.insert(:number=>Sequel::DEFAULT)
|
100
|
+
@ds.select_map(:number).must_equal [10]
|
101
|
+
@ds.insert(:number=>20)
|
102
|
+
@ds.update(:number=>Sequel::DEFAULT)
|
103
|
+
@ds.select_map(:number).must_equal [10, 10]
|
104
|
+
end
|
105
|
+
|
95
106
|
cspecify "should have insert work correctly when inserting a row with all NULL values", :hsqldb do
|
96
107
|
@db.create_table!(:items) do
|
97
108
|
String :name
|
@@ -443,6 +454,20 @@ describe Sequel::Dataset do
|
|
443
454
|
@d.extension(:sequel_4_dataset_methods).interval(:value).to_i.must_equal 6
|
444
455
|
end
|
445
456
|
|
457
|
+
it "should support or emulate filtered aggregate functions" do
|
458
|
+
@d.insert(:name => 'abc', :value => 123)
|
459
|
+
@d.insert(:name => 'abc', :value => 456)
|
460
|
+
@d.insert(:name => 'def', :value => 324)
|
461
|
+
@d.get{count.function.*.filter{value > 100}}.must_equal 3
|
462
|
+
@d.get{count.function.*.filter{value > 200}}.must_equal 2
|
463
|
+
@d.get{count.function.*.filter{value > 400}}.must_equal 1
|
464
|
+
@d.get{count.function.*.filter{value > 500}}.must_equal 0
|
465
|
+
@d.get{count(:value).filter{value > 100}}.must_equal 3
|
466
|
+
@d.get{count(:value).filter{value > 200}}.must_equal 2
|
467
|
+
@d.get{count(:value).filter{value > 400}}.must_equal 1
|
468
|
+
@d.get{count(:value).filter{value > 500}}.must_equal 0
|
469
|
+
end
|
470
|
+
|
446
471
|
it "should return the correct records" do
|
447
472
|
@d.to_a.must_equal []
|
448
473
|
@d.insert(:name => 'abc', :value => 123)
|
@@ -2393,4 +2393,31 @@ describe "string_agg extension" do
|
|
2393
2393
|
cspecify "should have string_agg return aggregated concatenation for distinct values", :mssql, :sqlite, :oracle, :db2, :derby do
|
2394
2394
|
@ds.select_group(:id).select_append(Sequel.string_agg(:s).order(:s).distinct.as(:v)).map([:id, :v]).must_equal [[1, 'a,b,c'], [2, 'aa,bb']]
|
2395
2395
|
end
|
2396
|
-
end
|
2396
|
+
end if (DB.database_type != :postgres || DB.server_version >= 90000)
|
2397
|
+
|
2398
|
+
describe "insert_conflict plugin" do
|
2399
|
+
before(:all) do
|
2400
|
+
@db = DB
|
2401
|
+
@db.create_table!(:ic_test) do
|
2402
|
+
primary_key :id
|
2403
|
+
String :s, :unique=>true
|
2404
|
+
Integer :o
|
2405
|
+
end
|
2406
|
+
@model = Class.new(Sequel::Model)
|
2407
|
+
@model.set_dataset @db[:ic_test]
|
2408
|
+
@model.plugin :insert_conflict
|
2409
|
+
end
|
2410
|
+
after(:all) do
|
2411
|
+
@db.drop_table?(:ic_test)
|
2412
|
+
end
|
2413
|
+
|
2414
|
+
it "should allow Model#insert_conflict to work" do
|
2415
|
+
ic_opts = {:target=>:s, :update => {:o => Sequel[:excluded][:o]}}
|
2416
|
+
@model.new(:s=>'A', :o=>1).insert_conflict(ic_opts).save
|
2417
|
+
@model.select_order_map([:s, :o]).must_equal [['A', 1]]
|
2418
|
+
@model.new(:s=>'A', :o=>2).insert_conflict(ic_opts).save
|
2419
|
+
@model.select_order_map([:s, :o]).must_equal [['A', 2]]
|
2420
|
+
@model.new(:s=>'B', :o=>3).insert_conflict(ic_opts).save
|
2421
|
+
@model.select_order_map([:s, :o]).must_equal [['A', 2], ['B', 3]]
|
2422
|
+
end
|
2423
|
+
end if (DB.database_type == :postgres && DB.server_version >= 90500) || (DB.database_type == :sqlite && DB.sqlite_version >= 32400)
|
@@ -634,6 +634,15 @@ describe "Database schema modifiers" do
|
|
634
634
|
@ds.all.must_equal [{:id=>10}, {:id=>20}]
|
635
635
|
end
|
636
636
|
|
637
|
+
it "should set column defaults correctly if column has existing default" do
|
638
|
+
@db.create_table!(:items){Integer :id, :default=>10}
|
639
|
+
@ds.insert
|
640
|
+
@ds.all.must_equal [{:id=>10}]
|
641
|
+
@db.alter_table(:items){set_column_default :id, 20}
|
642
|
+
@ds.insert
|
643
|
+
@ds.all.must_equal [{:id=>10}, {:id=>20}]
|
644
|
+
end
|
645
|
+
|
637
646
|
it "should set column defaults to nil correctly" do
|
638
647
|
@db.create_table!(:items){Integer :id}
|
639
648
|
@ds.insert(:id=>10)
|
@@ -750,10 +759,15 @@ describe "Database schema modifiers" do
|
|
750
759
|
@db.create_table!(:items) do
|
751
760
|
primary_key :id
|
752
761
|
Integer :i, :default=>20
|
762
|
+
Integer :j, :default=>10
|
763
|
+
String :s, :default=>'a'
|
753
764
|
end
|
754
|
-
@ds.insert(:i=>10)
|
765
|
+
@ds.insert(:i=>10, :j=>20, :s=>'b')
|
755
766
|
@db.drop_column(:items, :i)
|
756
|
-
@db.schema(:items, :reload=>true).map{|x| x.first}.must_equal [:id]
|
767
|
+
@db.schema(:items, :reload=>true).map{|x| x.first}.must_equal [:id, :j, :s]
|
768
|
+
@ds.first.must_equal(:id=>1, :j=>20, :s=>'b')
|
769
|
+
@ds.insert
|
770
|
+
@ds.first(:id=>2).must_equal(:id=>2, :j=>10, :s=>'a')
|
757
771
|
end
|
758
772
|
|
759
773
|
it "should remove foreign key columns from tables correctly" do
|
@@ -62,4 +62,10 @@ if ENV['SEQUEL_FREEZE_DATABASE']
|
|
62
62
|
DB.freeze
|
63
63
|
end
|
64
64
|
|
65
|
-
|
65
|
+
version = if DB.respond_to?(:server_version)
|
66
|
+
DB.server_version
|
67
|
+
elsif DB.respond_to?(:sqlite_version)
|
68
|
+
DB.sqlite_version
|
69
|
+
end
|
70
|
+
|
71
|
+
puts "running #{defined?(SEQUEL_ADAPTER_TEST) ? SEQUEL_ADAPTER_TEST : "integration (database type: #{DB.database_type})"} specs on #{RUBY_ENGINE} #{defined?(JRUBY_VERSION) ? JRUBY_VERSION : RUBY_VERSION} with #{DB.adapter_scheme} adapter#{" (database version: #{version})" if version}"
|
data/spec/model/spec_helper.rb
CHANGED
@@ -7,7 +7,7 @@ Sequel::Deprecation.backtrace_filter = lambda{|line, lineno| lineno < 4 || line
|
|
7
7
|
|
8
8
|
ENV['MT_NO_PLUGINS'] = '1' # Work around stupid autoloading of plugins
|
9
9
|
gem 'minitest'
|
10
|
-
require 'minitest/autorun'
|
10
|
+
require 'minitest/global_expectations/autorun'
|
11
11
|
require 'minitest/hooks/default'
|
12
12
|
|
13
13
|
require_relative '../deprecation_helper'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sequel
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.
|
4
|
+
version: 5.27.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jeremy Evans
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2019-
|
11
|
+
date: 2019-12-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: minitest
|
@@ -38,6 +38,20 @@ dependencies:
|
|
38
38
|
- - ">="
|
39
39
|
- !ruby/object:Gem::Version
|
40
40
|
version: '0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: minitest-global_expectations
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ">="
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ">="
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '0'
|
41
55
|
- !ruby/object:Gem::Dependency
|
42
56
|
name: minitest-shared_description
|
43
57
|
requirement: !ruby/object:Gem::Requirement
|
@@ -206,6 +220,11 @@ extra_rdoc_files:
|
|
206
220
|
- doc/release_notes/5.20.0.txt
|
207
221
|
- doc/release_notes/5.21.0.txt
|
208
222
|
- doc/release_notes/5.22.0.txt
|
223
|
+
- doc/release_notes/5.23.0.txt
|
224
|
+
- doc/release_notes/5.24.0.txt
|
225
|
+
- doc/release_notes/5.25.0.txt
|
226
|
+
- doc/release_notes/5.26.0.txt
|
227
|
+
- doc/release_notes/5.27.0.txt
|
209
228
|
files:
|
210
229
|
- CHANGELOG
|
211
230
|
- MIT-LICENSE
|
@@ -299,6 +318,11 @@ files:
|
|
299
318
|
- doc/release_notes/5.20.0.txt
|
300
319
|
- doc/release_notes/5.21.0.txt
|
301
320
|
- doc/release_notes/5.22.0.txt
|
321
|
+
- doc/release_notes/5.23.0.txt
|
322
|
+
- doc/release_notes/5.24.0.txt
|
323
|
+
- doc/release_notes/5.25.0.txt
|
324
|
+
- doc/release_notes/5.26.0.txt
|
325
|
+
- doc/release_notes/5.27.0.txt
|
302
326
|
- doc/release_notes/5.3.0.txt
|
303
327
|
- doc/release_notes/5.4.0.txt
|
304
328
|
- doc/release_notes/5.5.0.txt
|
@@ -486,6 +510,7 @@ files:
|
|
486
510
|
- lib/sequel/plugins/active_model.rb
|
487
511
|
- lib/sequel/plugins/after_initialize.rb
|
488
512
|
- lib/sequel/plugins/association_dependencies.rb
|
513
|
+
- lib/sequel/plugins/association_multi_add_remove.rb
|
489
514
|
- lib/sequel/plugins/association_pks.rb
|
490
515
|
- lib/sequel/plugins/association_proxies.rb
|
491
516
|
- lib/sequel/plugins/auto_validations.rb
|
@@ -513,6 +538,7 @@ files:
|
|
513
538
|
- lib/sequel/plugins/force_encoding.rb
|
514
539
|
- lib/sequel/plugins/hook_class_methods.rb
|
515
540
|
- lib/sequel/plugins/input_transformer.rb
|
541
|
+
- lib/sequel/plugins/insert_conflict.rb
|
516
542
|
- lib/sequel/plugins/insert_returning_select.rb
|
517
543
|
- lib/sequel/plugins/instance_filters.rb
|
518
544
|
- lib/sequel/plugins/instance_hooks.rb
|
@@ -539,6 +565,7 @@ files:
|
|
539
565
|
- lib/sequel/plugins/skip_create_refresh.rb
|
540
566
|
- lib/sequel/plugins/split_values.rb
|
541
567
|
- lib/sequel/plugins/static_cache.rb
|
568
|
+
- lib/sequel/plugins/static_cache_cache.rb
|
542
569
|
- lib/sequel/plugins/string_stripper.rb
|
543
570
|
- lib/sequel/plugins/subclasses.rb
|
544
571
|
- lib/sequel/plugins/subset_conditions.rb
|
@@ -594,6 +621,7 @@ files:
|
|
594
621
|
- spec/extensions/after_initialize_spec.rb
|
595
622
|
- spec/extensions/arbitrary_servers_spec.rb
|
596
623
|
- spec/extensions/association_dependencies_spec.rb
|
624
|
+
- spec/extensions/association_multi_add_remove_spec.rb
|
597
625
|
- spec/extensions/association_pks_spec.rb
|
598
626
|
- spec/extensions/association_proxies_spec.rb
|
599
627
|
- spec/extensions/auto_literal_strings_spec.rb
|
@@ -644,6 +672,7 @@ files:
|
|
644
672
|
- spec/extensions/index_caching_spec.rb
|
645
673
|
- spec/extensions/inflector_spec.rb
|
646
674
|
- spec/extensions/input_transformer_spec.rb
|
675
|
+
- spec/extensions/insert_conflict_spec.rb
|
647
676
|
- spec/extensions/insert_returning_select_spec.rb
|
648
677
|
- spec/extensions/instance_filters_spec.rb
|
649
678
|
- spec/extensions/instance_hooks_spec.rb
|
@@ -708,6 +737,7 @@ files:
|
|
708
737
|
- spec/extensions/split_values_spec.rb
|
709
738
|
- spec/extensions/sql_comments_spec.rb
|
710
739
|
- spec/extensions/sql_expr_spec.rb
|
740
|
+
- spec/extensions/static_cache_cache_spec.rb
|
711
741
|
- spec/extensions/static_cache_spec.rb
|
712
742
|
- spec/extensions/string_agg_spec.rb
|
713
743
|
- spec/extensions/string_date_time_spec.rb
|