public
Fork of wycats/merb-core
Description: ivey's experimental merb-core
Homepage: http://gweezlebur.com
Clone URL: git://github.com/ivey/merb-core.git
Search Repo:
0.9.3 changelog
ivey (author)
Sun May 04 17:49:15 -0700 2008
commit  febd7a4bd871801cc1bcd3c8bed4cbf8c2ae96d9
tree    3b1a08d00d348f10cdfdbeb38b50ea7e08c34022
parent  2657c8034974f5d6cda0938139e1f3664ce25ba2
...
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
...
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
0
@@ -1,3 +1,78 @@
0
+== 0.9.3 "We Sold Our Soul for Rock 'n' Roll" 2008-05-03
0
+* Added render(template_path) feature to view specs.
0
+* add mutex around compiled statement generation in the router so reloading doesn't step
0
+* BootLoader::LoadClasses now logs the actual exceptions
0
+* Added String#unescape_regexp for usage in Router::Route#generate
0
+* Added Time#to_json to Core Extensions so JSON formatted output for Time is ISO 8601 compatible
0
+* redo stream_file to (hopefully) work
0
+* _dispatch returns @body
0
+* Refactored Merb::AbstractController.layout class method
0
+* Fixed lurking infinite loop with not so common formats and ExceptionController
0
+* HTTP Basic authentication based on Rack
0
+* added dispatch helper for http basic authentication
0
+* added support and specs for http basic authorization
0
+* modified specs to test a route restriction based on the request method
0
+* Added ability to specify :format in url() for named routes
0
+* Added thrown_content? predicate method for use in templates.
0
+* pass arguments to filters
0
+* Fix cookie sessions bug where you could not properly delete a cookie
0
+* Standardises the call to set_cookie to use the set_cookie method in cookies.rb by default
0
+* added HasContent matcher
0
+* Added \- to String.unescape_regexp
0
+* Changed the display method to handle options properly, so that passing :layout => :false works.
0
+* Added error message for when a content_type is requested but not provided
0
+* added delete action to docs
0
+* deferred?(env) now works with thin and ebb.
0
+* If deferred_actions are empty? we want a regex that will never match.
0
+* Fix example in Merb::Test::RequestHelper#request documentation.
0
+* Unify &block documentation across Merb::Test::RequestHelper
0
+* Add spec command run options to run_specs. Add tasks for profiled spec run.
0
+* Report total spec suite run time.
0
+* Use RSPEC_OPTS environment variable to override default spec run options.
0
+* Better formatting of spec suite run benchmark with good old sprintf.
0
+* Fix a nasty String#camel_case bug revealed but new shiny spec for String extensions.
0
+* Remove helper that duplicated String#camel_case functionality, update the rest of spec suite.
0
+* Split 'misc' examples group in Kernel extensions spec: each method should have a separate group
0
+* Split Kernel#use_orm guts into a bunch of smaller methods. Document those.
0
+* Kernel#already_registred_orm? is a sucky name. Make it Kernel#registred_orm?. Yay.
0
+* Split Kernel#use_test into smaller methos. Document them. Add specs for them beforehand.
0
+* Use a constant for sleep time in reloading specs
0
+* Use @ in publicity markers in RDoc.
0
+* Remove InvalidPathConversion exception: it is used nowhere in the core.
0
+* A bit clearer --init-file option description.
0
+* Be clear about what is the default init file Merb uses in RDoc.
0
+* hopefully the last fix for session fixation, woot woot
0
+* Provide hook for param filtering
0
+* Give useful information when no template is found for a partial
0
+* Adds a question method to determine environment. eg Merb.env?(:production)
0
+* Make #display method pass all 'unknown' options to serialization method.
0
+* Add Object#in? for checking array inclusion
0
+* Update Kernel#__profile__ documentation.
0
+* Adding support for pidfile setting with cluster nodes setting.
0
+* Updating pidfile cluster fix to handle any extension.
0
+* Fix for kill so that cli options are read and handled before kill is actually called.
0
+* Refactored Exception status handling/inheritance (it actually works now!)
0
+* Replaced remaining ::STATUS constant references to .status method calls
0
+* Append the content_type to the given :template option for render()
0
+* Fix bug in --very-flat (allow direct inheritance from Merb::Controller)
0
+* Show merb usage if first argument is not a switch
0
+* Adding missing info about ebb adapter.
0
+* completed spec to Merb::Logger#new
0
+* Added Provide matcher class, so you can do "controller.should provide( :xml )" in your specs.
0
+* Added support for multiple keys to designate a resource. For use with Datamapper composite keys
0
+* Ensure that Merb::Logger doesn't try to close terminal streams.
0
+* Remove redundant unescape for cookie string
0
+* Added handling of INT signal for Merb server in foreground mode
0
+* params array serialization
0
+* Fixing pidfiles glob on cluster and pidfile argument
0
+* test request helpers support namespaced routes
0
+* Testing Merb::Test::RequestHelper#request method to properly handle namespaced routes
0
+* Provide opts for alternate rackup config path.
0
+* Add new -R/--rackup option to the full(-ish) list of options.
0
+* Make change_priveledge actually work
0
+* Allow http status to be a symbol - refactored String snake_case method
0
+* removing __app_file_trace__ since it doesn't work.
0
+
0
 == 0.9.2 "appropriate response to reality" 2008-03-24
0
 * removed Merb.logger calls due to the fact the bootloader did not ran by now and it is not initialized.
0
 * use __send__ rather than send

Comments

    No one has commented yet.