jruby-rack 1.1.13.3 → 1.1.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,126 +1,142 @@
1
- == 1.1.13.3 (13/11/13)
2
-
3
- - restore compatibility with JRuby < 1.6.7
4
-
5
- == 1.1.13.2 (02/04/13)
6
-
7
- - fix warning in Rack::Utils::Response#write_headers
8
- - bundle latest Rack 1.4 (1.4.5)
9
-
10
- == 1.1.13.1 (14/01/13)
11
-
12
- - fix missing explicit require 'jruby/rack/version' in 1.1.13
13
-
14
- == 1.1.13 (13/01/13)
15
-
16
- - make sure (body) Java channel is always closed on Response#write_body
17
- - deal with capture backtrace incompatibility on JRuby 1.7 (#139)
18
- - bundle (latest) rack 1.4.2
19
- - make sure out custom (env) Hash sub-classes behave more Hash-y (#134)
20
- - support for setting a custom JRuby-Rack Response class (e.g. due #send_file)
21
- - explicit support for sending file bodies with the possibility to re-define
22
- #send_file per app-server
23
- - make sure we still maintain 2.3 compatibility (fix for #138)
24
- - fix send_file not being able to handle large > 2GB files (#133)
25
- - review chunked support - changed default behavior into patching Rack::Chunked
26
- the old behavior still works by setting jruby.rack.response.chunked = true
27
- - handle empty (null) strings when parsing (Ruby) magic comments e.g. config.ru
28
- - versioning review - make sure versions are always "valid" even for SNAPSHOTs
29
-
30
- == 1.1.12 (28/11/12)
31
-
32
- - make (Default)Env to be the environment Hash instance itself since we need
33
- to handle custom lazy-bound keys but can not use a default proc (#132)
34
- - support the renew (and skip) session option with servlet store (#131)
35
- - improve ENV isolation with booted Ruby runtimes
36
- - jruby.rack.env replaces jruby.rack.ignore.env (now deprecated)
37
- - make sure RUBYOPT is ignored (with backwards compat)
38
- - jruby.rack.env.rubyopt for finer RUBYOPT behavior control
39
- - allow env value to be specified from config
40
- - solve the rackup "chicken - egg" problem with a plain Rack app
41
- - with a magic comment in config.ru # rack.version: ~>1.3.6
42
- - for bundle exec "emulation" use # rack.version: bundler
43
- - (temporarily) introduce RackEnvironment.ToIO to avoid instance vars
44
- on non-persistent Java types (JRuby 1.7 warning)
45
- - add a JRuby::Rack::Helpers module for helper functions
46
- - decorating factories (e.g. pooling factory) can now be distinguished
47
- - refactored / updated error handling :
48
- - move the decision about throwing the init error into the listener
49
- - unify exception handling across decorating app factories with support
50
- for configuring exception handling with the *jruby.rack.error* option
51
- - make sure init errors are thrown from pooling factory's init
52
- - added an ErrorApplication marker interface
53
- - dispatcher might now decide what status to return (or throw)
54
- - let the servlet container deal with null response header values
55
- - expose the rack context using JRuby::Rack.context= in embed scenario
56
- - rely less on booter and $servlet_context whenever possible
57
- - moved Booter#logger into JRuby::Rack.logger
58
- - boot! now 'exports' JRuby::Rack.app_path and public_path
59
- - changed $servlet_context refs to JRuby::Rack.context
60
- - maven + rake (joint) build review
61
- run mvn compile on rake compile instead of custom javac
62
- (+ updated jruby.version to 1.6.8)
63
- - removed LoggerConfigurationException used with Commons-Logging
64
- - fix invalid /tmp detected jruby home LOAD_PATH on 1.7.0
65
- - support setting compat version 2.0 (on JRuby 1.7.x)
66
- - application layout (JRuby::Rack::AppLayout) improvements :
67
- - introduce app.root context param (similar to rails.root)
68
- - RailsWebInfLayout is now the same as WebInfLayout
69
- - added (generic) FileSystemLayout (handles rails apps as well)
70
- - RailsFilesystemLayout is FileSystemLayout for compatibility
71
- - make sure paths are expanded when using a FS layout
72
- - moved change_working_directory code to happen within Booter
73
- - fix Booter failing to boot! when layout.gem_path nil (or empty)
74
- - Rails booter's RAILS_ENV should default to RACK_ENV if set
75
- - make sure original rack body gets always closed with optimized send_file
76
- might lead to side-effects such as not releasing database connections (#123)
77
- - some more useful Servlet API Ruby extensions ('attribute' managing objects
78
- such as ServletContext behave similar to Hash)
79
-
80
- == 1.1.10 (04/09/12)
81
-
82
- - correctly dechunk data from response and handle flushing,
83
- finally Rails 3.1+ `render stream: true` support (#117)
84
- - initial compatibility with Rails master (getting torwards 4.0.0.beta)
85
- known issues: ActionController::Live seems to end up with a dead-lock
86
- - ServletEnv now parses cookies using HttpServletRequest.getCookies instead of
87
- leaving it off for Rack::Request
88
-
89
- == 1.1.9 (19/08/12)
90
-
91
- - rack env regression fix when used with rack-cache, introduced in 1.1.8 (#116)
92
- request.env should work correctly when (duped and) frozen
93
-
94
- == 1.1.8 (17/08/12)
95
-
96
- - introduced ServletEnv for cases when it's desirable to fully use the servlet
97
- environment to create the rack env (and not let Rack::Request parse params
98
- but rely on the parameters already parsed and available from the servlet
99
- request #110). this is an experimental feature that might change in the
100
- future and requires setting 'jruby.rack.handler.env' param to 'servlet' !
101
- - separated out Env (LazyEnv) into a separate file :
102
- - Env got refactored into DefaultEnv (with lazyness built-in)
103
- - LazyEnv got removed as it is not longer necessary
104
- - Rack::Handler::Servlet.env sets the used env conversion class
105
- - introduce a generic getNumberProperty on RackConfig
106
- - introduce a base RackException and add a custom AcquireTimeoutException for
107
- pool timeouts (related to jruby.runtime.acquire.timeout parameter)
108
- - RackInitializationException changed to unchecked as it inherits from
109
- RackException now
110
- - PoolingRackApplication (and related) polishing :
111
- - avoid creating a new application from getApplication when a permit is
112
- granted but pool is empty
113
- - support to wait till pool becomes ready by default otherwise wait until
114
- initial application objects are present in the pool before returning
115
- (controlled with the jruby.runtime.init.wait accepting true/false/integer)
116
- - edge case handling where (in case were set to not wait for initialization)
117
- we should wait for an initializer thread to put an application into the pool
118
- - allow acquire timeout (jruby.runtime.acquire.timeout param) to be specified
119
- as a decimal number for finer control and decreased the timeout default
120
- from 30s to 10s (although seems still too high for a default)
121
- - jruby runtime pooling for plain Rack applications (not just Rails)
122
-
123
- == 1.1.7 (21/06/12)
1
+ ## 1.1.14 (24/02/14)
2
+
3
+ - re-invent the ErrorApp without Rack::File and with support for 503(.html)
4
+ - when jruby.rack.error.app is set - make sure it's actually used (fixes #166)
5
+ - review Railtie for setting relative_url_root - do not override if already set
6
+ - support setting a "relative url root" even with plain rack applications for
7
+ now needs to be explicitly configured with rack.relative_url_root_variable
8
+ - honor the set `config.log_formatter` when setting up logger in Rails
9
+ - when a header is added response should be considered handled (#153)
10
+ - support for returning managed applications from rack factory decorators
11
+ using `RackApplicationFactoryDecorator.getManagedApplications`
12
+ - use .equals() rather than == since the level string is not always the same
13
+ object instance as defined by the RackLogger interface
14
+ - support (building) `rake gem` on RubyGems 2.0 (removed Gem::Builder)
15
+ - rack 1.5.x support for 'our' servlet session store (with backwards-compat)
16
+
17
+ ## 1.1.13.3 (13/11/13)
18
+
19
+ - restore compatibility with JRuby < 1.6.7
20
+
21
+ ## 1.1.13.2 (02/04/13)
22
+
23
+ - fix warning in Rack::Utils::Response#write_headers
24
+ - bundle latest Rack 1.4 (1.4.5)
25
+
26
+ ## 1.1.13.1 (14/01/13)
27
+
28
+ - fix missing explicit require 'jruby/rack/version' in 1.1.13
29
+
30
+ ## 1.1.13 (13/01/13)
31
+
32
+ - make sure (body) Java channel is always closed on Response#write_body
33
+ - deal with capture backtrace incompatibility on JRuby 1.7 (#139)
34
+ - bundle (latest) rack 1.4.2
35
+ - make sure out custom (env) Hash sub-classes behave more Hash-y (#134)
36
+ - support for setting a custom JRuby-Rack Response class (e.g. due `send_file`)
37
+ - explicit support for sending file bodies with the possibility to re-define
38
+ `send_file` per app-server
39
+ - make sure we still maintain 2.3 compatibility (fix for #138)
40
+ - fix send_file not being able to handle large > 2GB files (#133)
41
+ - review chunked support - changed default behavior into patching Rack::Chunked
42
+ the old behavior still works by setting jruby.rack.response.chunked = true
43
+ - handle empty (null) strings when parsing (Ruby) magic comments e.g. config.ru
44
+ - versioning review - make sure versions are always "valid" even for SNAPSHOTs
45
+
46
+ ## 1.1.12 (28/11/12)
47
+
48
+ - make (Default)Env to be the environment Hash instance itself since we need
49
+ to handle custom lazy-bound keys but can not use a default proc (#132)
50
+ - support the renew (and skip) session option with servlet store (#131)
51
+ - improve ENV isolation with booted Ruby runtimes
52
+ * jruby.rack.env replaces jruby.rack.ignore.env (now deprecated)
53
+ * make sure RUBYOPT is ignored (with backwards compat)
54
+ * jruby.rack.env.rubyopt for finer RUBYOPT behavior control
55
+ * allow env value to be specified from config
56
+ - solve the rackup "chicken - egg" problem with a plain Rack app
57
+ * with a magic comment in config.ru # rack.version: ~>1.3.6
58
+ * for bundle exec "emulation" use # rack.version: bundler
59
+ - (temporarily) introduce RackEnvironment.ToIO to avoid instance vars
60
+ on non-persistent Java types (JRuby 1.7 warning)
61
+ - add a JRuby::Rack::Helpers module for helper functions
62
+ - decorating factories (e.g. pooling factory) can now be distinguished
63
+ - refactored / updated error handling :
64
+ * move the decision about throwing the init error into the listener
65
+ * unify exception handling across decorating app factories with support
66
+ for configuring exception handling with the *jruby.rack.error* option
67
+ * make sure init errors are thrown from pooling factory's init
68
+ * added an ErrorApplication marker interface
69
+ * dispatcher might now decide what status to return (or throw)
70
+ - let the servlet container deal with null response header values
71
+ - expose the rack context using JRuby::Rack.context= in embed scenario
72
+ - rely less on booter and $servlet_context whenever possible
73
+ * moved Booter#logger into JRuby::Rack.logger
74
+ * boot! now 'exports' JRuby::Rack.app_path and public_path
75
+ * changed $servlet_context refs to JRuby::Rack.context
76
+ - maven + rake (joint) build review
77
+ run mvn compile on rake compile instead of custom javac
78
+ (+ updated jruby.version to 1.6.8)
79
+ - removed LoggerConfigurationException used with Commons-Logging
80
+ - fix invalid /tmp detected jruby home LOAD_PATH on 1.7.0
81
+ - support setting compat version 2.0 (on JRuby 1.7.x)
82
+ - application layout (JRuby::Rack::AppLayout) improvements :
83
+ * introduce app.root context param (similar to rails.root)
84
+ * RailsWebInfLayout is now the same as WebInfLayout
85
+ * added (generic) FileSystemLayout (handles rails apps as well)
86
+ * RailsFilesystemLayout is FileSystemLayout for compatibility
87
+ * make sure paths are expanded when using a FS layout
88
+ * moved change_working_directory code to happen within Booter
89
+ * fix Booter failing to boot! when layout.gem_path nil (or empty)
90
+ - Rails booter's RAILS_ENV should default to RACK_ENV if set
91
+ - make sure original rack body gets always closed with optimized send_file
92
+ might lead to side-effects such as not releasing database connections (#123)
93
+ - some more useful Servlet API Ruby extensions ('attribute' managing objects
94
+ such as ServletContext behave similar to Hash)
95
+
96
+ ## 1.1.10 (04/09/12)
97
+
98
+ - correctly dechunk data from response and handle flushing,
99
+ finally Rails 3.1+ `render stream: true` support (#117)
100
+ - initial compatibility with Rails master (getting torwards 4.0.0.beta)
101
+ known issues: ActionController::Live seems to end up with a dead-lock
102
+ - ServletEnv now parses cookies using HttpServletRequest.getCookies instead of
103
+ leaving it off for Rack::Request
104
+
105
+ ## 1.1.9 (19/08/12)
106
+
107
+ - rack env regression fix when used with rack-cache, introduced in 1.1.8 (#116)
108
+ request.env should work correctly when (duped and) frozen
109
+
110
+ ## 1.1.8 (17/08/12)
111
+
112
+ - introduced ServletEnv for cases when it's desirable to fully use the servlet
113
+ environment to create the rack env (and not let Rack::Request parse params
114
+ but rely on the parameters already parsed and available from the servlet
115
+ request #110). this is an experimental feature that might change in the
116
+ future and requires setting 'jruby.rack.handler.env' param to 'servlet' !
117
+ - separated out Env (LazyEnv) into a separate file :
118
+ * Env got refactored into DefaultEnv (with lazyness built-in)
119
+ * LazyEnv got removed as it is not longer necessary
120
+ * Rack::Handler::Servlet.env sets the used env conversion class
121
+ - introduce a generic getNumberProperty on RackConfig
122
+ - introduce a base RackException and add a custom AcquireTimeoutException for
123
+ pool timeouts (related to jruby.runtime.acquire.timeout parameter)
124
+ - RackInitializationException changed to unchecked as it inherits from
125
+ RackException now
126
+ - PoolingRackApplication (and related) polishing :
127
+ * avoid creating a new application from getApplication when a permit is
128
+ granted but pool is empty
129
+ * support to wait till pool becomes ready by default otherwise wait until
130
+ initial application objects are present in the pool before returning
131
+ (controlled with the jruby.runtime.init.wait accepting true/false/integer)
132
+ * edge case handling where (in case were set to not wait for initialization)
133
+ we should wait for an initializer thread to put an application into the pool
134
+ * allow acquire timeout (jruby.runtime.acquire.timeout param) to be specified
135
+ as a decimal number for finer control and decreased the timeout default
136
+ from 30s to 10s (although seems still too high for a default)
137
+ - jruby runtime pooling for plain Rack applications (not just Rails)
138
+
139
+ ## 1.1.7 (21/06/12)
124
140
 
125
141
  - support for delegating logs to java.util.logging (jruby.rack.logging: JUL)
126
142
  - extend RackLogger with levels for better logging with underlying log impl
@@ -128,12 +144,12 @@
128
144
  - make sure optimized file streaming gets used with rails send_file, this serves
129
145
  as a work-around for a --1.9 bug in jruby-1.6.7 with string encoding (#107)
130
146
 
131
- == 1.1.6 (16/05/12)
147
+ ## 1.1.6 (16/05/12)
132
148
 
133
149
  - consider 403 as an unhandled response from filter chain (along with 404) and
134
150
  allow configuring responseNotHandledStatuses via filter init parameter (#105)
135
151
 
136
- == 1.1.5 (04/03/12)
152
+ ## 1.1.5 (04/03/12)
137
153
 
138
154
  - bundler 1.1 workaround when ENV is cleared - set ENV['PATH'] = ''
139
155
  - resolve servlet context from request.getServletContext if posssible
@@ -149,7 +165,7 @@
149
165
  - allow configuring request buffer initial/maximum size using parameters
150
166
  - initialization exception behavior in listener might be overriden (#16)
151
167
 
152
- == 1.1.4 (02/21/12)
168
+ ## 1.1.4 (02/21/12)
153
169
 
154
170
  - incorrectly interpreted byte in RewindableInputStream causing EOFs (#92)
155
171
  - fix JRuby::Rack::Response 1.9 incompatibility due String#each
@@ -160,12 +176,12 @@
160
176
  - config.logger fixes and support for ActiveSupport::TaggedLogging (#93)
161
177
  - revert regression in 1.1.3 with incorrect filter behavior (#84)
162
178
 
163
- == 1.1.3 (01/10/12)
179
+ ## 1.1.3 (01/10/12)
164
180
 
165
181
  - Additional fix for #73, #76 (Fix relative_url_root issue for good)
166
182
  - Stop using BufferedLogger (#80)
167
183
 
168
- == 1.1.2 (12/30/11)
184
+ ## 1.1.2 (12/30/11)
169
185
 
170
186
  - GH#18: Undefined method `call' for nil:NilClass
171
187
  - GH#44: JRuby-rack POST form-urlencoded doesn't work with Jetty
@@ -173,7 +189,7 @@
173
189
  - GH#73, GH#76: relative_url_root= called for rails > 3
174
190
  - GH#79: FileNotFoundException on WAS 8.0
175
191
 
176
- == 1.1.1 (11/11/11)
192
+ ## 1.1.1 (11/11/11)
177
193
 
178
194
  - Support for embedding a web server using a Rack::Handler
179
195
  Servlet/Filter
@@ -185,12 +201,12 @@
185
201
  - JavaServletStore rewrite based upon Rack::Session::Abstract::ID
186
202
  - Upgrade to Rack 1.3.5
187
203
 
188
- == 1.0.10 (08/24/11)
204
+ ## 1.0.10 (08/24/11)
189
205
 
190
206
  - Bugfix release for Rails 3.1
191
207
  - Upgrade to Rack 1.3.2
192
208
 
193
- == 1.0.9 (05/24/11)
209
+ ## 1.0.9 (05/24/11)
194
210
 
195
211
  - Bugfix release for Trinidad 1.2.x
196
212
  - GH#27: Deal with incompatible signature change between JRuby 1.5.6
@@ -198,7 +214,7 @@
198
214
  - Properly convert URLs to files for __FILE__ binding when evaluating
199
215
  init.rb (Ketan Padegaonkar)
200
216
 
201
- == 1.0.8 (03/21/11)
217
+ ## 1.0.8 (03/21/11)
202
218
 
203
219
  - Add a check for /config.ru if not found in /WEB-INF (for appengine gem)
204
220
  - Modify LocalContext to support minimal LocalConfig for JMS (Garret Conaty)
@@ -209,7 +225,7 @@
209
225
  - Upgrade to Rack 1.2.2
210
226
  - GH#21: Implement RackInput#size
211
227
 
212
- == 1.0.7 (03/04/11)
228
+ ## 1.0.7 (03/04/11)
213
229
 
214
230
  - JRUBY_RACK-36: Always set env['HTTPS'] according to request.getScheme
215
231
  - GH#10: Add `jruby.rack.ignore.env` property which clears out the ENV
@@ -219,7 +235,7 @@
219
235
  - GH#15: Fix infinite redirect issue with Winstone
220
236
  - GH#17: __FILE__ constant inside config.ru is not absolute
221
237
 
222
- == 1.0.6 (01/20/11)
238
+ ## 1.0.6 (01/20/11)
223
239
 
224
240
  - GH#4: Related to JRUBY-5281 and spaces in the path. Copy jruby.home
225
241
  fix here also. Fixes "no such file to load" LoadErrors for lots of
@@ -231,12 +247,12 @@
231
247
  - GH#9: Support chunked Transfer-Encoding, allowing for early flush of
232
248
  the output (Alejandro Crosa)
233
249
  - Add some new options for handling the Rack body.
234
- - If the body object responds to `#call`, then the servlet output
250
+ * If the body object responds to `#call`, then the servlet output
235
251
  stream will be yielded to it.
236
- - If the body object responds to `#to_channel`, then JRuby-Rack will
252
+ * If the body object responds to `#to_channel`, then JRuby-Rack will
237
253
  copy the channel to the output stream for you. The same happens if
238
254
  the body responds to `#to_inputstream`.
239
- - Otherwise, JRuby-Rack follows the standard Rack behavior of
255
+ * Otherwise, JRuby-Rack follows the standard Rack behavior of
240
256
  calling `#each` on the body and copying the contents to the output
241
257
  stream.
242
258
  - GH#7: JavaServletStore: Add missing #exists? and #destroy
@@ -255,7 +271,7 @@
255
271
  - Add env['SERVER_SOFTWARE'] to Rack environment.
256
272
  - Hack around Bundler bug #1033
257
273
 
258
- == 1.0.5 (01/11/11)
274
+ ## 1.0.5 (01/11/11)
259
275
 
260
276
  - GH#6: Add context-init parameter `jruby.compat.version` which can be
261
277
  set to either `1.8` or `1.9` to start JRuby in the corresponding
@@ -264,7 +280,7 @@
264
280
  when executing config.ru, use a ; instead of \n when evaluating
265
281
  rackup code
266
282
 
267
- == 1.0.4
283
+ ## 1.0.4
268
284
 
269
285
  - Make sane defaults for app/gem/public paths when using
270
286
  RailsFilesystemLayout (Kristian Meier)
@@ -280,13 +296,13 @@
280
296
  of your application. (Ben Rosenblum)
281
297
  - Don't use toURI, following changes in JRuby 1.5.6.
282
298
 
283
- == 1.0.3
299
+ ## 1.0.3
284
300
 
285
301
  - JRUBY-4892: Fix IO collapsing \r\n to \n on Windows
286
302
  - Fix setting of relative_url_root in Rails 3
287
303
  - Recognize META-INF/init.rb and WEB-INF/init.rb as init scripts.
288
304
 
289
- == 1.0.2
305
+ ## 1.0.2
290
306
 
291
307
  - Upgrade to Rack 1.2.1 (required for Rails 3 RC)
292
308
  - Retain any GEM_PATH that's set in the environment
@@ -295,22 +311,22 @@
295
311
  - JRUBY_RACK-33: Fix RackFilter to only append .html to path info if
296
312
  the resource exists (thanks Patrick Cheng)
297
313
 
298
- == 1.0.1
314
+ ## 1.0.1
299
315
 
300
316
  - 1.0.0 release had a packaging snafu. Too many releases in too short a timespan
301
317
 
302
- == 1.0.0
318
+ ## 1.0.0
303
319
 
304
320
  - Might as well go to 1.0. We've been used in production code for a
305
321
  while now.
306
322
  - Turns out the LoadError path dumping is pretty annoying. Rearrange
307
323
  the code and have it only activated by 'jruby.rack.debug.load'.
308
324
 
309
- == 0.9.9
325
+ ## 0.9.9
310
326
 
311
327
  - 0.9.8 broke Rubygem's custom require
312
328
 
313
- == 0.9.8
329
+ ## 0.9.8
314
330
 
315
331
  - Look for config.ru in either WEB-INF/config.ru or
316
332
  WEB-INF/*/config.ru and use it for racking up the application.
@@ -325,7 +341,7 @@
325
341
  - Fix Rails 3 logger configuration
326
342
  - Only load vendor/rack if Rack is not already loaded
327
343
 
328
- == 0.9.7
344
+ ## 0.9.7
329
345
 
330
346
  - Rails 3 support
331
347
  - Fix "overrides final method getRuntime" error due to 1.5 Java class
@@ -342,7 +358,7 @@
342
358
  - JRUBY_RACK-19: Add a jruby-rack gem for finding the jar file
343
359
  - JRUBY_RACK-24: Support non-war deployment of Rails apps
344
360
 
345
- == 0.9.6
361
+ ## 0.9.6
346
362
 
347
363
  - JRUBY_RACK-22: Ensure we call #close on the body per the Rack spec.
348
364
  - Set jruby.management.enabled true when creating a runtime. JRuby 1.5
@@ -350,7 +366,7 @@
350
366
  capability inside an appserver.
351
367
  - Miscellaneous spec cleanup due to changes in JRuby 1.5
352
368
 
353
- == 0.9.5
369
+ ## 0.9.5
354
370
 
355
371
  - Upgrade to Rack 1.0.0. However, if you supply Rack in your
356
372
  application (either via rubygems or by vendoring it), it will take
@@ -381,7 +397,7 @@
381
397
  - JRUBY_RACK-14: Override both Servlet service methods (Michael
382
398
  Pitman)
383
399
 
384
- == 0.9.4
400
+ ## 0.9.4
385
401
 
386
402
  - PLEASE NOTE: Prior to 0.9.4, jruby-rack would try to use the java
387
403
  servlet session store by default. This caused more confusion than
@@ -410,7 +426,7 @@
410
426
  should upgrade your application to use a web.xml similar to what
411
427
  comes with Warbler.
412
428
 
413
- == 0.9.3
429
+ ## 0.9.3
414
430
 
415
431
  - Merb updates for 1.0 compatibility
416
432
  - Patch race condition in runtime pooling that allowed more than max
@@ -423,16 +439,16 @@
423
439
  - Switched to dual rake/maven build process
424
440
  - Switched main code repository to github (for now)
425
441
 
426
- == 0.9.2
442
+ ## 0.9.2
427
443
 
428
444
  - Upgrade to Rack 0.4.0
429
445
  - Only chdir at startup when the /WEB-INF directory exists (fix for jetty-rails)
430
446
  - Fix typos in rails tag tld
431
447
  - Add getRuntime to RackApplication for use by non-web embedded applications
432
- - Use a shared application factory for Rails if max runtimes == 1 (to support multi-threaded Rails)
448
+ - Use a shared application factory for Rails if max runtimes ## 1 (to support multi-threaded Rails)
433
449
  - Change from jruby.initial.runtimes to jruby.min.runtimes to be consistent w/ Warbler
434
450
 
435
- == 0.9.1
451
+ ## 0.9.1
436
452
 
437
453
  - Change each runtime's notion of current directory to /WEB-INF, so you can do
438
454
  loads and requires relative to WEB-INF
@@ -448,6 +464,6 @@
448
464
  - Support integer and date headers directly
449
465
  - Examples: Rails updated to 2.1, Camping and Sinatra examples added/working
450
466
 
451
- == 0.9
467
+ ## 0.9
452
468
 
453
469
  - First public release.
data/LICENSE.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  #--
2
2
  # The MIT License
3
3
  #
4
- # Copyright (c) 2012 Karol Bucek
4
+ # Copyright (c) 2012-2014 Karol Bucek, LTD
5
5
  # Copyright (c) 2010-2012 Engine Yard, Inc.
6
6
  # Copyright (c) 2007-2009 Sun Microsystems, Inc.
7
7
  #
data/lib/jruby-rack.rb CHANGED
@@ -1,7 +1,7 @@
1
1
 
2
2
  module JRubyJars
3
3
  def self.jruby_rack_jar_path
4
- File.expand_path("../jruby-rack-1.1.13.3.jar", __FILE__)
4
+ File.expand_path("../jruby-rack-1.1.14.jar", __FILE__)
5
5
  end
6
6
  require jruby_rack_jar_path if defined?(JRUBY_VERSION)
7
7
  end
@@ -7,6 +7,6 @@
7
7
 
8
8
  module JRuby
9
9
  module Rack
10
- VERSION = '1.1.13.3'
10
+ VERSION = '1.1.14'
11
11
  end
12
12
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: jruby-rack
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.1.13.3
5
+ version: 1.1.14
6
6
  platform: ruby
7
7
  authors:
8
8
  - Nick Sieger
@@ -10,7 +10,7 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2013-11-13 00:00:00 Z
13
+ date: 2014-02-24 00:00:00 Z
14
14
  dependencies: []
15
15
 
16
16
  description: JRuby-Rack is a combined Java and Ruby library that adapts the Java Servlet API to Rack. For JRuby only.
@@ -23,15 +23,15 @@ extensions: []
23
23
  extra_rdoc_files: []
24
24
 
25
25
  files:
26
- - History.txt
26
+ - History.md
27
27
  - LICENSE.txt
28
28
  - README.md
29
- - lib/jruby-rack-1.1.13.3.jar
29
+ - lib/jruby-rack-1.1.14.jar
30
30
  - lib/jruby-rack.rb
31
31
  - lib/jruby/rack/version.rb
32
32
  homepage: http://jruby.org
33
- licenses: []
34
-
33
+ licenses:
34
+ - MIT
35
35
  post_install_message:
36
36
  rdoc_options: []
37
37
 
@@ -54,7 +54,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
54
54
  version: "0"
55
55
  requirements: []
56
56
 
57
- rubyforge_project: jruby-extras
57
+ rubyforge_project:
58
58
  rubygems_version: 1.8.24
59
59
  signing_key:
60
60
  specification_version: 3