Skip to content

Releases: TalentBox/sequel-rails

v0.9.4

14 Aug 09:56
Compare
Choose a tag to compare
  • Put a note in README about plugins which could not be added to Sequel::Model
    (Thanks to Dave Myron) #68
  • Implements rake db:rollback and fix rake db:migrate:redo
    #67

v0.9.3

18 May 09:16
Compare
Choose a tag to compare
  • Use ENV['DATABASE_URL'] for connection if set #66

v0.9.2

18 May 09:16
Compare
Choose a tag to compare
  • Update SequelRails::Railties::ControllerRuntime to be up-to-date with how
    ActiveRecord 4.0.x do the DB time calculation. It should fix some
    inconsistencies with the reported time in logs where View + DB time was
    sometimes less than Total time.

v0.9.1

18 May 09:15
Compare
Choose a tag to compare
  • Map ActiveRecord's pool key to Sequel's max_connections in YAML
    configuration #59
  • Run tests on Ruby 2.1.0

v0.9.0

16 Nov 16:52
Compare
Choose a tag to compare
  • Add require 'english' to ensure we have access to english equivalents of
    Ruby's special variable #57

  • Rename SequelRails::SessionStore as ActionDispatch::Session::SequelStore
    and fix methods to be compatible with Rails >= 3.2.

    Previous sequel session store did not work and should be enabled using:

    MyApplication::Application.config.session_store SequelRails::SessionStore

    now you can enable it using:

    MyApplication::Application.config.session_store :sequel_store

    A basic integration spec was added to ensure it works as expected. #56

v0.8.0

16 Nov 16:52
Compare
Choose a tag to compare
  • Simplify and improve TravisCI config (Tamir Duberstein) #51
  • Add Rubocop and fix syntax violations (Tamir Duberstein) #51
  • Update RSpec and use the new 'expect' syntax (Tamir Duberstein) #51
  • Add session_migration generator and cleanup old code #56

v0.7.0

11 Oct 16:25
Compare
Choose a tag to compare
  • Add more information in the README, related to features of SequelRails #54
  • Refactor storage shell command construction/execution/escaping #55
  • Handle more options from database.yml for PostgreSQL when creating/dropping/loading/dumping database #55
  • Allow dumping the schema even if there aren't any migrations to run. (Kevin Menard) #53
  • Fix Postgres rake tasks under JRuby (Kevin Menard, Chris Heisterkamp) #52 #38
  • Fix SQL schema dumps using timestamp migration (Joshua Hansen) #50
  • Apply all migrations in the schema.rb file when loading it (Robert Payne) #49
  • Make dump_schema_information compatible with integer based migration (Robert Payne) #48 #47
  • Add an after_connect hook (Jan Berdajs) #46
  • Update license dates and add license to gemspec #45

v0.6.1

17 Sep 12:28
Compare
Choose a tag to compare
  • Use a SequelRails::Configuration from the start in app.config.sequel #44

v0.6.0

12 Sep 16:04
Compare
Choose a tag to compare
  • Do not try to construct url from config if data config already contains one url #35
  • Add setting to allow disabling database's rake tasks to be loaded #41
  • Loosen the Sequel dependencies to < 5.0 (Joshua Hansen) #39
  • Fix regexp to extract root url when using JDBC (Eric Strathmeyer) #40

v0.5.1

05 Aug 14:10
Compare
Choose a tag to compare
  • Allow setting if schema should be dumped (Rafał Rzepecki) #37
  • Allow rake db:dump and rake db:load to work on sqlite3 #31
  • Append migrations schema information to schema.rb and structure.sql #31
  • Allow setting the search path in app config (Rafał Rzepecki) #36