rails--rails/railties/CHANGELOG.md

283 lines
9.9 KiB
Markdown
Raw Normal View History

2013-02-25 14:31:50 +00:00
## Rails 4.0.0.beta1 (February 25, 2013) ##
* Improve `rake stats` for JavaScript and CoffeeScript: ignore block comments
and calculates number of functions.
*Hendy Tanata*
* Ability to use a custom builder by passing `--builder` (or `-b`) has been removed. Consider
using application template instead. See this guide for more detail:
http://guides.rubyonrails.org/rails_application_templates.html
*Prem Sichanugrist*
2013-02-20 14:02:00 +00:00
* fix rake db:* tasks to work with DATABASE_URL and without config/database.yml
*Terence Lee*
2012-01-02 20:49:18 +00:00
* Add notice message for destroy action in scaffold generator.
*Rahul P. Chaudhari*
* Add two new test rake tasks to speed up full test runs.
* `test:all`: run tests quickly by merging all types and not resetting db.
* `test:all:db`: run tests quickly, but also reset db.
*Ryan Davis*
* Add `--rc` option to support the load of a custom rc file during the generation of a new app.
*Amparo Luna*
* Add `--no-rc` option to skip the loading of railsrc file during the generation of a new app.
*Amparo Luna*
* Fixes database.yml when creating a new rails application with '.'
Fix #8304
*Jeremy W. Rowe*
* Restore Rails::Engine::Railties#engines with deprecation to ensure
compatibility with gems such as Thinking Sphinx
Fix #8551
*Tim Raymond*
* Specify which logs to clear when using the `rake log:clear` task.
(e.g. rake log:clear LOGS=test,staging)
*Matt Bridges*
* Allow a `:dirs` key in the `SourceAnnotationExtractor.enumerate` options
to explicitly set the directories to be traversed so it's easier to define
custom rake tasks.
*Brian D. Burns*
* Deprecate `Rails::Generators::ActiveModel#update_attributes` in favor of `#update`.
ORMs that implement `Generators::ActiveModel#update_attributes` should change
to `#update`. Scaffold controller generators should change calls like:
@orm_instance.update_attributes(...)
to:
@orm_instance.update(...)
This goes along with the addition of `ActiveRecord::Base#update`.
*Carlos Antonio da Silva*
* Include `jbuilder` by default and rely on its scaffold generator to show json API.
Check https://github.com/rails/jbuilder for more info and examples.
*DHH*
* Scaffold now generates HTML-only controller by default.
*DHH + Pavel Pravosud*
2013-01-07 23:50:12 +00:00
* The generated `README.rdoc` for new applications invites the user to
document the necessary steps to get the application up and running.
*Xavier Noria*
* Generated applications no longer get `doc/README_FOR_APP`. In consequence,
the `doc` directory is created on demand by documentation tasks rather than
generated by default.
*Xavier Noria*
* App executables now live in the `bin/` directory: `bin/bundle`,
`bin/rails`, `bin/rake`. Run `rake rails:update:bin` to add these
executables to your own app. `script/rails` is gone from new apps.
Running executables within your app ensures they use your app's Ruby
version and its bundled gems, and it ensures your production deployment
tools only need to execute a single script. No more having to carefully
`cd` to the app dir and run `bundle exec ...`.
Rather than treating `bin/` as a junk drawer for generated "binstubs",
bundler 1.3 adds support for generating stubs for just the executables
you actually use: `bundle binstubs unicorn` generates `bin/unicorn`.
Add that executable to git and version it just like any other app code.
2013-01-07 04:53:30 +00:00
*Jeremy Kemper*
* `config.assets.enabled` is now true by default. If you're upgrading from a Rails 3.x app
that does not use the asset pipeline, you'll be required to add `config.assets.enabled = false`
to your application.rb. If you don't want the asset pipeline on a new app use `--skip-sprockets`
*DHH*
* Environment name can be a start substring of the default environment names
(production, development, test). For example: tes, pro, prod, dev, devel.
Fix #8628.
*Mykola Kyryk*
* Add `-B` alias for `--skip-bundle` option in the rails new generators.
*Jiri Pospisil*
* Quote column names in generates fixture files. This prevents
conflicts with reserved YAML keywords such as 'yes' and 'no'
Fix #8612.
*Yves Senn*
* Explicit options have precedence over `~/.railsrc` on the `rails new` command.
*Rafael Mendonça França*
* Generated migrations now always use the `change` method.
*Marc-André Lafortune*
2012-12-18 21:18:29 +00:00
* Add `app/models/concerns` and `app/controllers/concerns` to the default directory structure and load path.
See http://37signals.com/svn/posts/3372-put-chubby-models-on-a-diet-with-concerns for usage instructions.
2012-12-18 15:32:11 +00:00
2012-12-18 21:18:29 +00:00
*DHH*
* The `rails/info/routes` now correctly formats routing output as an html table.
*Richard Schneeman*
* The `public/index.html` is no longer generated for new projects.
Page is replaced by internal `welcome_controller` inside of railties.
2012-12-05 19:02:51 +00:00
*Richard Schneeman*
* Add `ENV['RACK_ENV']` support to `rails runner/console/server`.
*kennyj*
2012-12-05 19:02:51 +00:00
* Add `db` to list of folders included by `rake notes` and `rake notes:custom`. *Antonio Cangiano*
* Engines with a dummy app include the rake tasks of dependencies in the app namespace.
Fix #8229
*Yves Senn*
* Add `sqlserver.yml` template file to satisfy `-d sqlserver` being passed to `rails new`.
Fix #6882
*Robert Nesius*
2012-11-13 18:05:38 +00:00
* Rake test:uncommitted finds git directory in ancestors *Nicolas Despres*
* Add dummy app Rake tasks when `--skip-test-unit` and `--dummy-path` is passed to the plugin generator.
Fix #8121
*Yves Senn*
* Add `.rake` to list of file extensions included by `rake notes` and `rake notes:custom`. *Brent J. Nordquist*
* New test locations `test/models`, `test/helpers`, `test/controllers`, and
`test/mailers`. Corresponding rake tasks added as well. *Mike Moore*
* Set a different cache per environment for assets pipeline
through `config.assets.cache`.
*Guillermo Iguaran*
* `Rails.public_path` now returns a Pathname object. *Prem Sichanugrist*
* Remove highly uncommon `config.assets.manifest` option for moving the manifest path.
This option is now unsupported in sprockets-rails.
*Guillermo Iguaran & Dmitry Vorotilin*
* Add `config.action_controller.permit_all_parameters` to disable
StrongParameters protection, it's false by default.
*Guillermo Iguaran*
* Remove `config.active_record.whitelist_attributes` and
`config.active_record.mass_assignment_sanitizer` from new applications since
MassAssignmentSecurity has been extracted from Rails.
*Guillermo Iguaran*
* Change `rails new` and `rails plugin new` generators to name the `.gitkeep` files
as `.keep` in a more SCM-agnostic way.
Change `--skip-git` option to only skip the `.gitignore` file and still generate
the `.keep` files.
Add `--skip-keeps` option to skip the `.keep` files.
*Derek Prior & Francesco Rodriguez*
* Fixed support for DATABASE_URL environment variable for rake db tasks. *Grace Liu*
2012-09-10 19:36:49 +00:00
* rails dbconsole now can use SSL for MySQL. The database.yml options sslca, sslcert, sslcapath, sslcipher,
and sslkey now affect rails dbconsole. *Jim Kingdon and Lars Petrus*
Fix handling SCRIPT_NAME from within mounted engine's When you mount your application at a path, for example /myapp, server should set SCRIPT_NAME to /myapp. With such information, rails application knows that it's mounted at /myapp path and it should generate routes relative to that path. Before this patch, rails handled SCRIPT_NAME correctly only for regular apps, but it failed to do it for mounted engines. The solution was to hardcode default_url_options[:script_name], which is not the best answer - it will work only when application is mounted at a fixed path. This patch fixes the situation by respecting original value of SCRIPT_NAME when generating application's routes from engine and the other way round - when you generate engine's routes from application. This is done by using one of 2 pieces of information in env - current SCRIPT_NAME or SCRIPT_NAME for a corresponding router. This is because we have 2 cases to handle: - generating engine's route from application: in this situation SCRIPT_NAME is basically SCRIPT_NAME set by the server and it indicates the place where application is mounted, so we can just pass it as :original_script_name in url_options. :original_script_name is used because if we use :script_name, router will ignore generating prefix for engine - generating application's route from engine: in this situation we already lost information about the SCRIPT_NAME that server used. For example if application is mounted at /myapp and engine is mounted at /blog, at this point SCRIPT_NAME is equal /myapp/blog. Because of that we need to keep reference to /myapp SCRIPT_NAME by binding it to the current router. Later on we can extract it and use when generating url Please note that starting from now you *should not* use default_url_options[:script_name] explicitly if your server already passes correct SCRIPT_NAME to rack env. (closes #6933)
2012-08-10 21:27:51 +00:00
* Correctly handle SCRIPT_NAME when generating routes to engine in application
that's mounted at a sub-uri. With this behavior, you *should not* use
default_url_options[:script_name] to set proper application's mount point by
yourself. *Piotr Sarnacki*
2012-08-01 19:10:55 +00:00
* `config.threadsafe!` is deprecated in favor of `config.eager_load` which provides a more fine grained control on what is eager loaded *José Valim*
* The migration generator will now produce AddXXXToYYY/RemoveXXXFromYYY migrations with references statements, for instance
rails g migration AddReferencesToProducts user:references supplier:references{polymorphic}
will generate the migration with:
add_reference :products, :user, index: true
add_reference :products, :supplier, polymorphic: true, index: true
*Aleksey Magusev*
* Allow scaffold/model/migration generators to accept a `polymorphic` modifier
for `references`/`belongs_to`, for instance
rails g model Product supplier:references{polymorphic}
will generate the model with `belongs_to :supplier, polymorphic: true`
association and appropriate migration.
*Aleksey Magusev*
* Set `config.active_record.migration_error` to `:page_load` for development *Richard Schneeman*
* Add runner to Rails::Railtie as a hook called just after runner starts. *José Valim & kennyj*
* Add `/rails/info/routes` path, displays same information as `rake routes` *Richard Schneeman & Andrew White*
2012-05-19 13:18:37 +00:00
* Improved `rake routes` output for redirects *Łukasz Strzałkowski & Andrew White*
* Load all environments available in `config.paths["config/environments"]`. *Piotr Sarnacki*
2012-03-17 16:36:24 +00:00
* Remove Rack::SSL in favour of ActionDispatch::SSL. *Rafael Mendonça França*
* Remove Active Resource from Rails framework. *Prem Sichangrist*
* Allow to set class that will be used to run as a console, other than IRB, with `Rails.application.config.console=`. It's best to add it to `console` block. *Piotr Sarnacki*
Example:
# it can be added to config/application.rb
console do
# this block is called only when running console,
# so we can safely require pry here
require "pry"
config.console = Pry
end
* Add convenience `hide!` method to Rails generators to hide current generator
namespace from showing when running `rails generate`. *Carlos Antonio da Silva*
2012-01-02 20:49:18 +00:00
* Rails::Plugin has gone. Instead of adding plugins to vendor/plugins use gems or bundler with path or git dependencies. *Santiago Pastorino*
2012-06-23 19:21:33 +00:00
* Set config.action_mailer.async = true to turn on asynchronous
message delivery *Brian Cardarella*
Please check [3-2-stable](https://github.com/rails/rails/blob/3-2-stable/railties/CHANGELOG.md) for previous changes.