We got nominated! Help us out and vote for GitHub as Best Bootstrapped Startup of 2008. (You can vote once a day.) [ hide ]

public
Description: Sequel: The Database Toolkit for Ruby
Homepage: http://sequel.rubyforge.org
Clone URL: git://github.com/jeremyevans/sequel.git
jeremyevans (author)
Wed Jul 16 13:23:57 -0700 2008
commit  f71d0157d3791cabe8c9f61f1208348b74822410
tree    f54cddf7b9cc57b999e704353985621a7ec2329d
parent  c7759821e1ca6e48b7ad8addcda9fefb7f2dd453
sequel / CHANGELOG
100644 1833 lines (919 sloc) 66.329 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
=== HEAD
 
* Enable almost full support of PostgreSQL-JDBC using the JDBC adapter (jeremyevans)
 
* Remove Sequel::Worker (jeremyevans)
 
* Make PostgreSQL adapter not raise an error when inserting records into a table without a primary key (jeremyevans)
 
* Make Database.uri_to_options a private class method (jeremyevans)
 
* Make JDBC load drivers automatically for PostgreSQL, MySQL, SQLite, Oracle, and MSSQL (jeremyevans)
 
* Make Oracle adapter work with a nonstandard Oracle database port (pavel.lukin)
 
* Typecast '' to nil by default for non-string non-blob columns, add typecast_empty_string_to_nil= model class and instance methods (jeremyevans)
 
* Use a simpler select in Dataset#empty?, fixes use with MySQL (jeremyevans)
 
* Add integration test suite, testing sequel against a real database, with nothing mocked (jeremyevans)
 
* Make validates_length_of default tag depend on presence of options passed to it (jeremyevans)
 
* Combine the directory structure for sequel_model and sequel_core, now there is going to be only one gem named sequel (jeremyevans)
 
=== 2.2.0 (2008-07-05)
 
* Add :extend association option, extending the dataset with module(s) (jeremyevans)
 
* Add :after_load association callback option, called after associated objects have been loaded from the database (jeremyevans)
 
* Make validation methods support a :tag option, to work correctly with source reloading (jeremyevans)
 
* Add :before_add, :after_add, :before_remove, :after_remove association callback options (jeremyevans)
 
* Break many_to_one association setter method in two parts, for easier overriding (jeremyevans)
 
* Model.validates_presence_of now considers false as present instead of absent (jeremyevans)
 
* Add Model.raise_on_save_failure, raising errors on save failure instead of return false (now nil), default to true (jeremyevans)
 
* Add :eager_loader association option, to specify code to be run when eager loading (jeremyevans)
 
* Make :many_to_one associations support :dataset, :order, :limit association options, as well as block arguments (jeremyevans)
 
* Add :dataset association option, which overrides the default base dataset to use (jeremyevans)
 
* Add :eager_graph association option, works just like :eager except it uses #eager_graph (jeremyevans)
 
* Add :graph_join_table_join_type association option (jeremyevans)
 
* Add :graph_only_conditions and :graph_join_table_only_conditions association options (jeremyevans)
 
* Add :graph_block and :graph_join_table_block association options (jeremyevans)
 
* Set the model's dataset's columns in addition to the model's columns when loading the schema for a model (jeremyevans)
 
* Make caching work correctly with subclasses (jeremyevans)
 
* Add the Model.to_hash dataset method (jeremyevans)
 
* Filter blocks now yield a SQL::VirtualRow argument, which is useful if another library defines operator methods on Symbol (jeremyevans)
 
* Add Symbol#identifier method, to make x__a be treated as "x__a" instead of "x"."a" (jeremyevans)
 
* Dataset#update no longer takes a block, please use a hash argument with the expression syntax instead (jeremyevans)
 
* ParseTree support has been removed from Sequel (jeremyevans)
 
* Database#drop_column is now supported in the SQLite adapter (abhay)
 
* Tinyint columns can now be considered integers instead of booleans by setting Sequel.convert_tinyint_to_bool = false (samsouder)
 
* Allow the use of URL parameters in connection strings (jeremyevans)
 
* Ignore any previously selected columns when using Dataset#graph for the first time (jeremyevans)
 
* Dataset#graph now accepts a block which is passed to join_table (jeremyevans)
 
* Make Dataset#columns ignore any filtering, ordering, and distinct clauses (jeremyevans)
 
* Use the safer connection-specific string escaping methods for PostgreSQL (jeremyevans)
 
* Database#transaction now yields a connection when using the Postgres adapter, just like it does for other adapters (jeremyevans)
 
* Dataset#count now works for a limited dataset (divoxx)
 
* Database#add_index is now supported in the SQLite adapter (abhay)
 
* Sequel's MySQL adapter should no longer conflict with ActiveRecord's use of MySQL (careo)
 
* Treat Hash as expression instead of column alias when used in DISTINCT, ORDER BY, and GROUP BY clauses (jeremyevans)
 
* PostgreSQL bytea fields are now fully supported (dlee)
 
* For PostgreSQL, don't raise an error when assigning a value to a SERIAL PRIMARY KEY field when inserting records (jeremyevans)
 
=== 2.1.0 (2008-06-17)
 
* Break association add_/remove_/remove_all_ methods into two parts, for easier overriding (jeremyevans)
 
* Add Model.strict_param_setting, on by default, which raises errors if a missing/restricted method is called via new/set/update/etc. (jeremyevans)
 
* Raise errors when using association methods on objects without valid primary keys (jeremyevans)
 
* The model's primary key is a restricted column by default, Add model.unrestrict_primary_key to get the old behavior (jeremyevans)
 
* Add Model.set_(allowed|restricted)_columns, which affect which columns create/new/set/update/etc. modify (jeremyevans)
 
* Calls to Model.def_dataset_method with a block are cached and reapplied to the new dataset if set_dataset is called, even in a subclass (jeremyevans)
 
* The :reciprocal option to associations should now be the symbol name of the reciprocal association, not an instance variable symbol (jeremyevans)
 
* Add Model#associations, which is a hash holding a cache of associated objects, with each association being a separate key (jeremyevans)
  
* Make all associations support a :graph_select option, specifying a column or array of columns to select when using eager_graph (jeremyevans)
 
* Bring back Model#set and Model#update, now the same as Model#set_with_params and Model#update_with_params (jeremyevans)
 
* Allow model datasets to call to_hash without any arguments, which allows easy creation of identity maps (jeremyevans)
 
* Add Model.set_sti_key, for easily setting up single table inheritance (jeremyevans)
 
* Make all associations support a :read_only option, which doesn't add methods that modify the database (jeremyevans)
 
* Make *_to_many associations support a :limit option, for specifying a limit to the resulting records (and possibly an offset) (jeremyevans)
 
* Make association block argument and :eager option affect the _dataset method (jeremyevans)
 
* Add a :one_to_one option to one_to_many associations, which creates a getter and setter similar to many_to_one (a.k.a. has_one) (jeremyevans)
 
* add_ and remove_ one_to_many association methods now raise an error if the passed object cannot be saved, instead of saving without validation (jeremyevans)
 
* Add support for :if option on validations, using a symbol (specifying an instance method) or a proc (dtsato)
 
* Support bitwise operators for NumericExpressions: &, |, ^, ~, <<, >> (jeremyevans)
 
* No longer raise an error for Dataset#filter(true) or Dataset#filter(false) (jeremyevans)
 
* Allow Dataset #filter, #or, #exclude and other methods that call them to use both the block and regular arguments (jeremyevans)
 
* ParseTree support is now officially deprecated, use Sequel.use_parse_tree = false to use the expression (blockless) filters inside blocks (jeremyevans)
 
* Remove :pool_reuse_connections ConnectionPool/Database option, MySQL users need to be careful with nested queries (jeremyevans)
 
* Allow Dataset#graph :select option to take an array of columns to select (jeremyevans)
 
* Allow Dataset#to_hash to be called with only one argument, allowing for easy creation of lookup tables for a single key (jeremyevans)
 
* Allow join_table to accept a block providing the aliases and previous joins, that allows you to specify arbitrary conditions properly qualified (jeremyevans)
 
* Support NATURAL, CROSS, and USING joins in join_table (jeremyevans)
 
* Make sure HAVING comes before ORDER BY, per the SQL standard and at least MySQL, PostgreSQL, and SQLite (juco)
 
* Add cast_numeric and cast_string methods for use in the Sequel DSL, that have default types and wrap the object in the correct class (jeremyevans)
 
* Add Symbol#qualify, for adding a table/schema qualifier to a column/table name (jeremyevans)
 
* Remove Module#metaprivate, since it duplicates the standard Module#private_class_method (jeremyevans)
 
* Support the SQL CASE expression via Array#case and Hash#case (jeremyevans)
 
* Support the SQL EXTRACT function: :date.extract(:year) (jeremyevans)
 
* Convert numeric fields to BigDecimal in PostgreSQL adapter (jeremyevans)
 
* Add :decimal fields to the schema parser (jeremyevans)
 
* The expr argument in join table now allows the same argument as filter, so it can take a string or a blockless filter expression (brushbox, jeremyevans)
 
* No longer assume the expr argument to join_table references the primary key column (jeremyevans)
 
* Rename the Sequel.time_class setting to Sequel.datetime_class (jeremyevans)
 
* Add savepoint/nesting support to postgresql transactions (elven)
 
* Use the specified table alias when joining a dataset, instead of the automatically generated alias (brushbox)
 
=== 2.0.1 (2008-06-04)
 
* Make the choice of Time or DateTime optional for typecasting :datetime types, default to Time (jeremyevans)
 
* Reload database schema for table when calling Model.create_table (jeremyevans)
 
* Have PostgreSQL money type use BigDecimal instead of Float (jeremyevans)
 
* Have the PostgreSQL and MySQL adapters use the Sequel.time_class setting for datetime/timestamp types (jeremyevans)
 
* Add Sequel.time_class and String#to_sequel_time, used for converting time values from the database to either Time (default) or DateTime (jeremyevans)
 
* Make identifier quoting uppercase by default, to work better with the SQL standard, override in PostgreSQL (jeremyevans) (#232)
 
* Add StringExpression#+, for simple SQL string concatenation (:x.sql_string + :y) (jeremyevans)
 
* Make StringMethods.like to a case sensensitive search on MySQL (use ilike for the old behavior) (jeremyevans)
 
* Add StringMethods.ilike, for case insensitive pattern matching (jeremyevans)
 
* Refactor ComplexExpression into three subclasses and a few modules, so operators that don't make sense are not defined for the class (jeremyevans)
 
=== 2.0.0 (2008-06-01)
 
* Comprehensive update of all documentation (jeremyevans)
 
* Remove methods deprecated in 1.5.0 (jeremyevans)
 
* Add typecasting on attribute assignment to Sequel::Model objects, optional but enabled by default (jeremyevans)
 
* Returning false in one of the before_ hooks now causes the appropriate method(s) to immediately return false (jeremyevans)
 
* Add remove_all_* association method for *_to_many associations, which removes the association with all currently associated objects (jeremyevans)
 
* Add Model.lazy_load_schema=, when set to true, it loads the schema on first instantiation (jeremyevans)
 
* Add before_validation and after_validation hooks, called whenever the model is validated (jeremyevans)
 
* Add Model.default_foreign_key, a private class method that allows changing the default foreign key that Sequel will use in associations (jeremyevans)
 
* Cache negative lookup when eagerly loading many_to_one associations (jeremyevans)
 
* Make all associations support the :select option, not just many_to_many (jeremyevans)
 
* Allow the use of blocks when eager loading, and add the :eager_block and :allow_eager association options for configuration (jeremyevans)
  
* Add the :graph_join_type, :graph_conditions, and :graph_join_table_conditions association options, used when eager graphing (jeremyevans)
 
* Add AssociationReflection class (subclass of Hash), to make calling a couple of private Model methods unnecessary (jeremyevans)
 
* Change hook methods so that if a tag/method is specified it overwrites an existing hook block with the same tag/method (jeremyevans)
 
* Refactor String inflection support, you must use String.inflections instead of Inflector.inflections now (jeremyevans)
 
* Allow connection to ODBC-MSSQL via a URL (petersumskas) (#230)
 
* Comprehensive update of all documentation, except for the block filters and adapters (jeremyevans)
 
* Handle Date and DateTime value literalization correctly in adapters (jeremyevans)
 
* Literalize DateTime values the same as Time values (jeremyevans)
 
* MySQL tinyints are now returned as boolean values instead of integers (jeremyevans)
 
* Set additional MySQL charset options required for creating tables and databases (tmm1)
 
* Remove methods deprecated in 1.5.0 (jeremyevans)
 
* Add Module#metaattr_accessor for creating attr_accessors for the metaclass (jeremyevans)
 
* Add SQL string concatenation support to blockless filters, via Array#sql_string_join (jeremyevans)
 
* Add Pagination#last_page? and Pagination#first_page? (apeiros)
 
* Add limited column reflection support, tested on PostgreSQL, MySQL, and SQLite (jeremyevans)
 
* Allow the use of :schema__table___table_alias syntax for tables, similar to the column support (jeremyevans)
 
* Merge metaid gem into core_ext.rb and clean it up, so sequel now has no external dependencies (jeremyevans)
 
* Add Dataset#as, so using a dataset as a column with an alias is not deprecated (jeremyevans)
 
* Add Dataset#invert, which returns a dataset with inverted HAVING and WHERE clauses (jeremyevans)
 
* Add blockless filter syntax support (jeremyevans)
 
* Passing an array to Dataset#order and Dataset#select no longer works, you need to pass multiple arguments (jeremyevans)
 
* You should use '?' instead of '(?)' when using interpolated strings with array arguments (jeremyevans)
 
* Dataset.literal now surrounds the literalization of arrays with parentheses (jeremyevans)
 
* Add echo option (back?) to sequel command line tool, via -E or --echo (jeremyevans)
 
* Allow databases to have multiple loggers (jeremyevans)
 
* The sequel command line tool now also accepts a path to a database config YAML file in addition to a URI (mtodd)
 
* Major update of the postgresql adapter (jdavis, jeremyevans) (#225)
 
* Make returning inside of a database transaction commit the transaction (ahoward, jeremyevans)
 
* Dataset#to_table_reference is now protected, and it has a different API (jeremyevans)
 
* Dataset#join_table and related functions now take an explicit optional table_alias argument, you can no longer include the table alias in the table argument (jeremyevans)
 
* Aliased and/or qualified columns with embedded spaces can now be specified as symbols (jeremyevans)
 
* When identifier quoting is enabled, the SQL standard double quote is used by default (jeremyevans)
 
* When identifier quoting is enabled, quote tables as well as columns (jeremyevans)
 
* Make identifier quoting optional, enabled by default (jeremyevans)
 
* Allow Sequel::Database.connect and related methods to take a block that disconnects the database when the block finishes (jeremyevans)
 
* Add Dataset#unfiltered, for removing filters from dataset (jeremyevans)
 
* Add add_foreign_key and add_primary_key methods to the AlterTableGenerator (jeremyevans)
 
* Allow migration files to have more than 3 digits (jeremyevans)
 
* Add methods directly to Dataset instead of including modules (jeremyevans)
 
* Make some Dataset instance methods private: invert_order, insert_default_values_sql (jeremyevans)
 
* Don't add methods that depend on ParseTree unless you can load ParseTree (jeremyevans)
 
* Don't wipeout the cached columns every time a dataset is cloned, but only on changes to :select, :sql, :from, or :join (jeremyevans)
 
* Fix Oracle Adapter (yasushi.abe)
 
* Fixed sqlite uri so that sqlite:// works just like file:// (2 slashes for a relative path, 3 for an absolute) (dlee)
 
* Raise a Sequel::Error if an invalid limit or offset is used (jeremyevans)
 
* Refactor and beef up Dataset#first and Dataset#last, with some change in functionality (jeremyevans)
 
* Add String#to_datetime, for consistency (jeremyevans)
 
* Fix Range#interval so that it returns 1 less for an exclusive range
 
* Change SQLite adapter so it doesn't swallow exceptions other than SQLite3::Exception (such as Interrupt) (jeremyevans)
 
* Change PostgreSQL and MySQL adapters to raise Sequel::Error instead of database specific errors if a database error occurs (jeremyevans)
 
* Using a memory database with SQLite now defaults to a single connection, so all queries it uses run against the same database (jeremyevans)
 
* Fix attempting to query MySQL using the same connection being used to concurrently execute another query (jeremyevans)
 
* Add options to the connection pool to configure reusing connections and converting exceptions (jeremyevans)
 
* Use the database driver provided string quoting methods for MySQL and SQLite (jeremyevans) (#223)
 
* Add ColumnAll#==, for checking the equality of two ColumnAlls (jeremyevans)
 
* Allow an array of arrays instead of a hash when specifying conditions (jeremyevans)
 
* Add Sequel::DBI::Database#lowercase, for lowercasing column names (jamesearl)
 
* Remove Dataset#extend_with_destroy, which may break code that uses Dataset#set_model directly and expects the destroy method to be added (jeremyevans)
 
* Fix some issues when running on Ruby 1.9 (Zverok, jeremyevans)
 
* Make the DBI adapter work (partially) with PostgreSQL (Seb)
 
=== 1.5.1 (2008-04-30)
 
* Fix Dataset#eager_graph when not all objects have associated objects (jeremyevans)
 
* Have Dataset#graph give a nil value instead of a hash with all nil values if no matching rows exist in the graphed table (jeremyevans)
 
=== 1.5.0 (2008-04-29)
 
* Make the validation errors API compatible with Merb (Inviz)
 
* Add validates_uniqueness_of, for protecting against duplicate entries in the database (neaf, jeremyevans)
 
* Alias Model#dataset= to Model#set_dataset (tmm1)
 
* Make some Model class methods private: def_hook_method, hooks, add_hook, plugin_module, plugin_gem (jeremyevans)
 
* Add the eager! and eager_graph! mutation methods to model datasets (jeremyevans)
 
* Remove Model.database_opened (jeremyevans)
 
* Remove Model.super_dataset (jeremyevans)
 
* Deprecate .create_with_params, .create_with, #set, #update, #update_with, and #new_record from Sequel::Model (jeremyevans)
 
* Add Model.def_dataset_method, for defining methods on the model that reference methods on the dataset (jeremyevans)
 
* Deprecate Model.method_missing, add dataset methods to Model via metaprogramming (jeremyevans)
 
* Remove Model.join, so it is the same as Dataset#join (jeremyevans)
 
* Use reciprocal associations for all types of associations in the getter/setter/add_/remove_ methods (jeremyevans)
 
* Fix many_to_one associations to cache negative lookups (jeremyevans)
 
* Change Model#=== to always be false if the primary key is nil (jeremyevans)
 
* Add Model#hash, which should be unique for a given class and primary key (or values if primary key is nil) (jeremyevans)
 
* Add Model#eql? as a alias to Model#== (jeremyevans)
 
* Make Model#reload clear any cached associations (jeremyevans)
 
* No longer depend on the assistance gem, merge the Inflector and Validations code (jeremyevans)
 
* Add Model#set_with_params, which is Model#update_with_params without the save (jeremyevans)
  
* Fix Model#destroy so that it returns self, not the result of after_destroy (jeremyevans)
 
* Define Model column accessors in set_dataset, so they should always be avaiable, deprecate Model#method_missing (jeremyevans)
 
* Add eager loading of associations via new sequel_core object graphing feature (jeremyevans)
 
* Fix many_to_many associations with classes inside modules without an explicit join table (jeremyevans)
 
* Allow creation of new records that don't have primary keys when the cache is on (jeremyevans) (#213)
 
* Make Model#initialize, Model#set, and Model#update_with_params invulnerable to memory exhaustion (jeremyevans) (#210)
 
* Add Model.str_columns, which gives a list of columns as frozen strings (jeremyevans)
 
* Remove pretty_table.rb from sequel, since it is in sequel_core (jeremyevans)
 
* Set a timeout in the Sqlite adapter, default to 5 seconds (hrvoje.marjanovic) (#218)
 
* Document that calling Sequel::ODBC::Database#execute manually requires you to manually drop the returned object (jeremyevans) (#217)
 
* Paginating an already paginated/limited dataset now raises an error (jeremyevans)
 
* Add support for PostgreSQL partial indexes (dlee)
 
* Added support for arbitrary index types (including spatial indexes) (dlee)
 
* Quote column names in SQL generated for SQLite (tmm1)
 
* Deprecate Object#rollback! (jeremyevans)
 
* Make some Dataset methods private (qualified_column_name, column_list, table_ref, source_list) (jeremyevans)
 
* Deprecate Dataset methods #set_options, #set_row_proc, #remove_row_proc, and #clone_merge (jeremyevans)
 
* Add Symbol#*, a replacement for Symbol#all (jeremyevans)
 
* Deprecate including ColumnMethods in Object, include it in Symbol, String, and Sequel::SQL::Expression (jeremyevans)
 
* Deprecate Symbol#method_missing, and #AS, #DESC, #ASC, #ALL, and #all from ColumnMethods (jeremyevans)
 
* Fix table joining in MySQL (jeremyevans)
 
* Deprecate Sequel.method_missing and Object#Sequel, add real Sequel.adapter methods (jeremyevans)
 
* Move dataset methods applicable only to paginated datasets into Sequel::Dataset::Pagination (jeremyevans)
 
* Make Sequel::Dataset::Sequelizer methods private (jeremyevans)
 
* Deprecate Dataset#method_missing, add real mutation methods (e.g. filter!) (jeremyevans)
 
* Fix connecting to an MSSQL server via ODBC using domain user credentials (jeremyevans) (#216)
 
* No longer depend on the assistance gem, merge in the ConnectionPool and .blank methods (jeremyevans)
 
* No longer depend on ParseTree, RubyInline, or ruby2ruby, but you still need them if you want to use the block filters (jeremyevans)
 
* Fix JDBC adapter by issuing index things start at 1 (pdamer)
 
* Fix connecting to a database via the ADO adapter (now requires options instead of URI) (timuckun, jeremyevans) (#204)
 
* Support storing microseconds in postgres timestamp fields (schnarch...@rootimage.msu.edu) (#215)
 
* Allow joining of multiple datasets, by making the table alias different for each dataset joined (jeremyevans)
 
* SECURITY: Fix backslash escaping of strings (dlee)
 
* Add ability to create a graph of objects from a query, with the result split into corresponding tables (jeremyevans) (#113)
 
* Add attr_accessor for dataset row_proc (jeremyevans)
 
* Don't redefine Dataset#each when adding a transform or row_proc (jeremyevans)
 
* Remove array_keys.rb from sequel_core, it was partially broken (since the arrays came from hashes), and redefined Dataset#each (jeremyevans)
 
* Fix MySQL default values insert (matt.binary) (#196)
 
* Fix ODBC adapter improperly escaping date and timestamp values (leo.borisenko) (#165)
 
* Fix renaming columns on MySQL with type :varchar (jeremyevans) (#206)
 
* Add Sequel::SQL::Function#==, for comparing SQL Functions (jeremyevans) (#209)
 
* Update Informix adapter to work with Ruby/Informix 0.7.0 (gerardo.santana@gmail.com)
 
* Remove sequel_core's knowledge of Sequel::Model (jeremyevans)
 
* Use "\n" instead of $/ (since $/ can be redefined in ways we do not want) (jeremyevans)
 
=== 1.4.0 (2008-04-08)
 
* Don't mark a column as changed unless the new value is different from the current value (tamas.denes, jeremyevans) (#203).
 
* Switch gem name from "sequel_model" to just "sequel", which required large version bump (jeremyevans).
 
* Add :select option to many_to_many associations, default to selecting only the associated model table and not the join table (jeremyevans) (#208).
 
* Add :reciprocal one_to_many association option, for setting corresponding many_to_one instance variable (jeremyevans).
 
* Add eager loading implementation (jeremyevans).
 
* Change *_to_many associations so that the all associations are considered :cache=>true (jeremyevans).
 
* Fix associa