forked from prepor/subdomain_routes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
history.txt
23 lines (19 loc) · 1.09 KB
/
history.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
SubdomainRoutes Revision History
Master
* Require Rails 2.3.9 or older [Yaroslav Markin]
* Deprecate Kernel#returning, use Object#tap (Deprecated as of Rails 2.3.9) [Yaroslav Markin]
* Subdomains validator now accepts subdomains that start with a number [Yaroslav Markin]
Version 0.3.1
* Fixed bug whereby port number was not preserved when a subdomain route changed
the subdomain in the host (Matsumara Akihiro, Matthew Hollingworth).
* Similarly, added fixes to preserve https protocol when host is changed.
Version 0.3.0
* Added this revision history.
* Added #assert_recognizes_with_host and #assert_generates_with_host methods to
ActionController::Assertions::RoutingAssertions, allowing testing of subdomain routes
if you're into that sort of thing.
* Modified ActionController::Routing::Route#significant_keys to include the subdomain
option in the case of model-based subdomain routes.
* Added ability to override default namespace and name prefix for model-based subdomain
routes by passing :name option to the map.subdomain call.
* Updated README to describe how to test with subdomain routes.