sequel
2014-12-18 Pete ElmoreHave Dataset#empty? ignore order. master
2014-12-12 Jeremy EvansFix passing a hash value to :eager association option
2014-12-11 Tobias BielohlawekFix example usage for `update` with increment expression
2014-12-09 Jeremy EvansTreat all PG::ConnectionBad exceptions as disconnect...
2014-12-08 Jeremy EvansUse MSSQL-specific schema parsing instead of JDBC schem...
2014-12-08 Jeremy EvansFix minor fallout from using :auto_increment in schema...
2014-12-08 Jeremy EvansDon't assume composite integer primary keys are autoinc...
2014-12-08 Jeremy EvansSkip autoincrementing primary key spec on fdbsql
2014-12-08 Jeremy EvansParse :auto_increment schema entry correctly on DB2
2014-12-08 Jeremy EvansConsider integer primary keys as incrementing on Oracle
2014-12-08 Jeremy EvansAdd :auto_increment key to schema information for prima...
2014-12-05 Jeremy EvansFix handling of schema qualified tables in many_through...
2014-12-03 Jeremy EvansMerge commit '12053b3'
2014-12-03 tkTypo: String Concatenation (Sequel.join) examples
2014-12-01 Jeremy EvansEliminate a hash allocation per dataset action when...
2014-12-01 Jeremy EvansBump version to 4.17.0
2014-11-29 Jeremy EvansFix some variable shadowing warnings in the specs
2014-11-29 Jeremy EvansRemove some duplicate hash keys in the specs
2014-11-25 Jeremy EvansFix handling of Sequel::SQL::Blob instances in bound...
2014-11-25 Jeremy EvansMinor ruby 1.8 fixes for sharded threaded connection...
2014-11-25 Jeremy EvansAdd :preconnect Database option for immediately creatin...
2014-11-24 Jeremy EvansWork around regression in jdbc-sqlite3 3.8.7 where...
2014-11-24 Jeremy EvansFix parsing of dates with jdbc-sqlite3 3.8.7
2014-11-24 Jeremy EvansAdd spec and update docs/CHANGELOG for update_or_create fix
2014-11-24 Dave MyronAlways return the object from update_or_create
2014-11-21 Jeremy EvansAdd Dataset#server? and Database#sharded?
2014-11-21 tkTypo: ds3 is built on ds2 (not ds)
2014-11-20 Jeremy EvansFix server used by Dataset#insert_select on PostgreSQL
2014-11-11 Jeremy EvansAdd note about asking for help to the README (Fixes...
2014-11-11 Lin Jen-ShinUpdate document to not use core extension
2014-11-03 Jeremy EvansFix server used for deleting model instances when using...
2014-11-01 Jeremy EvansFix typo in 4.16.0 release notes
2014-10-31 Jeremy EvansBump version to 4.16.0
2014-10-30 Anton I. SiposDOC: Fix typo in association_basics.rdoc
2014-10-28 Jeremy EvansMake Database#create_table? and #create_join_table...
2014-10-28 Jeremy EvansFix typo in migration doc
2014-10-23 Jeremy EvansUpdate CHANGELOG
2014-10-23 Chris HanksAllow Dataset#distinct to use a virtual row block.
2014-10-23 Jeremy EvansRecognize disconnect errors in the postgres adapter...
2014-10-17 Piotr SzotkowskiDrop/mark unused variables
2014-10-17 Piotr SzotkowskiDrop void variable use
2014-10-17 Piotr SzotkowskiHandle variable shadowing warnings
2014-10-09 Jeremy EvansStop converting '' default values to nil default values...
2014-10-09 Jeremy EvansSpeed up Model.primary_key_hash and .qualified_primary_...
2014-10-09 Jeremy EvansAdd Model#qualified_pk_hash, for returning a hash with...
2014-10-09 Jeremy EvansMake validates_unique use a qualified primary key if...
2014-10-06 Jeremy EvansMake Sequel::Model.cache_associations = false skip...
2014-10-02 Jeremy EvansMake Database#foreign_key_list work on Microsoft SQL...
2014-10-01 Jeremy EvansMake create_table with :foreign option reversible on...
2014-10-01 JohnnyTMake drop_view(:view_name, :foreign=>true) drop foreign...
2014-10-01 Jeremy EvansBump version to 4.15.0
2014-09-30 Jeremy EvansMake AssociationReflection#reciprocal not raise error...
2014-09-29 Jeremy EvansMake create_view(:view_name, dataset, :materialized...
2014-09-26 Jeremy EvansAdd support for creating foreign tables on PostgreSQL...
2014-09-25 Jeremy EvansRaise Error if a primary key is necessary to use an...
2014-09-25 Jeremy EvansAdd note to pg_json extension about using strings as...
2014-09-23 Jeremy EvansMake the Database :nolog option actually work on Inform...
2014-09-23 Jeremy EvansMake tactical_eager_loading plugin work for limited...
2014-09-23 Jeremy EvansAdd PlaceholderLiteralizer#with_dataset, for returning...
2014-09-23 Jeremy EvansSupport active_model 4.2.0beta1 in the active_model...
2014-09-23 Jeremy EvansUpdate CHANGELOG and document :nolog informix adapter...
2014-09-23 Jihwan SongInformix adapter updated
2014-09-23 Jihwan SongInformix adapter updated
2014-09-22 Jeremy EvansRemove optional argument for Postgres::{JSON,JSONB...
2014-09-17 Jeremy EvansAdd note to contributing file about ruby 1.8.7/rspec...
2014-09-17 Jeremy EvansRemove date_arithmetic require from fdbsql shared adapter
2014-09-17 Jeremy EvansRemove some spec guards for specs that are now passing
2014-09-17 Jeremy EvansDo not run pending specs by default on RSpec 3
2014-09-17 Jeremy EvansUpdate CHANGELOG and README for fdbsql support
2014-09-16 Jeremy EvansIntegrate date_arithmetic fdbsql support into the extension
2014-09-16 Jeremy EvansRemove some unneeded code
2014-09-16 Jeremy EvansMake Fdbsql::Connection a subclass of PG::Connection
2014-09-16 Jeremy EvansRip out fdbsql automatic query retry logic
2014-09-16 Jeremy EvansMake fdbsql adapter spec run on RSpec 1.3+
2014-09-16 Jeremy EvansUse ruby 1.8 hash syntax so code runs on ruby 1.8.7
2014-09-16 Jeremy EvansWork around disconnect issue in specs when running...
2014-09-16 Jeremy EvansReduce diff from master using postfix condition
2014-09-16 Jeremy EvansDon't use be_true/be_false in specs, removed in RSpec 3
2014-09-16 Scott DugasAdding FoundationDB SQL Layer adapter
2014-09-16 Jeremy EvansHandle change to pending specs in RSpec 3
2014-09-12 Jeremy EvansWork around bug in old versions of MySQL when schema...
2014-09-11 Jeremy EvansSupport more array types by default in the pg_array...
2014-09-05 Jeremy EvansAdd Sequel::Model.cache_associations accessor, which...
2014-09-05 Jeremy EvansAdd split_values plugin, for moving noncolumn entries...
2014-08-29 Jeremy EvansBump version to 4.14.0
2014-08-29 Jeremy EvansRaise original exception if there is an exception raise...
2014-08-28 Jeremy EvansFix typo, from gferguson-gd
2014-08-28 Jeremy EvansAllow delayed evaluation blocks to take dataset as...
2014-08-28 Jeremy EvansAllow more types as filter expressions, only specifical...
2014-08-28 Jeremy EvansUse labeled lists instead of plain lists in more places...
2014-08-27 Jeremy EvansFix issues in RDoc example code
2014-08-27 Jeremy EvansRemove objects from cached association array at time...
2014-08-26 Jeremy EvansHandle composite primary keys when working around valid...
2014-08-26 Jeremy EvansMerge branch 'patch-2' of https://github.com/Luiji...
2014-08-26 Jeremy EvansFix some grammar issues in association basics guide...
2014-08-26 Jeremy EvansRecognize additional disconnect error in jdbc/jtds...
2014-08-26 Jeremy EvansDon't associate extension rdoc with Sequel module
2014-08-26 Luiji MaryoFix error in documentation (two=>to)
2014-08-19 Jeremy EvansAdd documentation note about using symbols for column...
2014-08-19 Jeremy EvansAdd note about using Model#refresh to get all values...
next