Commit graph

11 commits

Author SHA1 Message Date
taca
97714a4d94 www/ruby-rack-contrib: update to 2.1.0
* pkgsrc change: add "USE_LANGAUGES= # none" line.

2.1.0 (2018-10-04)

Spring has sprung so let's make a new release

New features:

* Rack::PostBodyContentTypeParser -- you can now pass a block to the
  middleware to override the default "parse me some JSON" behaviour.
  Thanks to Kris Dekeyser (@Kris-LEBIS) for the patch.

* Ruby 2.5 support -- we're now running the test suite through Ruby 2.5.1, as
  well as the latest patch releases of all other Ruby releases supported by
  rack-contrib (back to 2.2, the same as Rack itself). The only "interesting"
  change here is that some Rack::Profiler printers no longer work, which is
  not our fault, but rather a problem with ruby-prof.

Bug fixes:

* Remove a deprecation warning about has_rdoc. Thanks to Luciano Sousa
  (@lucianosousa) for the patch.
2019-02-03 15:57:27 +00:00
taca
55afea911e www/ruby-rack-contrib: fix dependency
Fix dependency: depends on www/ruby-rack.
2018-03-21 12:20:58 +00:00
taca
2c65722d3f www/ruby-rack-contrib: update to 2.0.1
2.0.1						2017/12/08

Multibytes bytes again!

This is a bugfix release, which fixes a Rack 2 incompatibility in
Rack::NotFound, where the wrong value for the Content-Length response
header was calculated (#143).

Thanks to Kazuhiro NISHIYAMA (@znz) for the bug report, and Joe Francis
(@lostapathy) for the fix.

2.0.0						2017/11/30
 2f3840e

Rack 2.x Support Is HERE!

Thanks to the hard work of Skye Shaw, amongst others, this release of
rack-contrib supports Rack 2.x. Unfortunately, it only supports Rack
2.x; if your application is using Rack 1.x, you should continue to use
rack-contrib 1.x.

The non-backwards-compatible, user-visible changes are:

* Drop support for Ruby versions less than 2.2. Rack 2 does not support these
  older releases, so there's no benefit in our doing so.

* Rack::NestedParams: switch to using Rack::Utils.parse_nested_query to parse
  request bodies, which handles repeated element keys differently.  See #92.

* Rack::Sendfile: removed completely. Rack core provides a middleware of the
  same name that is much better, and more actively maintained, and you should
  use that instead.

* Rack::AcceptFormat: removed completely, because it is terribad.
2018-03-21 12:19:33 +00:00
taca
ec28c80372 cleanup: remove unnecessary RUBY_VERSIONS_ACCEPTED
Remove unnecessary RUBY_VERSIONS_ACCEPTED since ruby21 removed.
2017-09-19 16:36:07 +00:00
taca
d48f9eb8b1 Update ruby-rack-contrib to 1.6.0.
1.6.0 (2017/09/01)

* Rack::PostBodyContentTypeParser: if the middleware is told a POST body is
  JSON, but it doesn't parse as JSON, then... it's not really JSON, and the
  request is now rejected with a 400 response. Thanks to Yukihiko SAWANOBORI
  (@sawanoboly) for the fix.

1.5.0 (2017/07/19)

After an extended hiatus, rack-contrib maintenance is back on track. This
is a tidy-up release, merging things that have sat around for far too long.

* git-version-bump has now been moved to being a development dependency,
  thanks to Tobias Haagen Michaelsen.

* Rack::AcceptLocale can be restricted to a set of enforced locales, thanks to
  Paco Guzman.

* Rack::NotFound's path argument is now optional, thanks to Ed Morley.

* Rack::BounceFavicon now has a description and tests, thanks to Steven
  Wilkin.

* The automated Travis CI suite now tests all supported Ruby versions up to
  2.4, which necessitated a few small changes.
2017-09-11 15:43:46 +00:00
taca
c136fff011 Add 24 to RUBY_VERSIONS_ACCEPTED. 2017-06-18 13:48:53 +00:00
jperkin
be57c29506 Set RUBY_VERSIONS_ACCEPTED correctly to fix scan failures. 2017-06-06 11:12:05 +00:00
agc
b9b754e081 Add SHA512 digests for distfiles for www category
Problems found locating distfiles:
	Package haskell-cgi: missing distfile haskell-cgi-20001206.tar.gz
	Package nginx: missing distfile array-var-nginx-module-0.04.tar.gz
	Package nginx: missing distfile encrypted-session-nginx-module-0.04.tar.gz
	Package nginx: missing distfile headers-more-nginx-module-0.261.tar.gz
	Package nginx: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package nginx-devel: missing distfile echo-nginx-module-0.58.tar.gz
	Package nginx-devel: missing distfile form-input-nginx-module-0.11.tar.gz
	Package nginx-devel: missing distfile lua-nginx-module-0.9.16.tar.gz
	Package nginx-devel: missing distfile nginx_http_push_module-0.692.tar.gz
	Package nginx-devel: missing distfile set-misc-nginx-module-0.29.tar.gz
	Package php-owncloud: missing distfile owncloud-8.2.0.tar.bz2

Otherwise, existing SHA1 digests verified and found to be the same on
the machine holding the existing distfiles (morden).  All existing
SHA1 digests retained for now as an audit trail.
2015-11-04 02:46:46 +00:00
taca
e24294df22 Update ruby-rack-contrib to 1.4.0.
v1.4.0: Features, Features Everywhere, and not a bug to fix

There's a bumper crop of new features this month. Share and enjoy!

Deprecations

* Rack::AcceptFormat is slated for removal in rack-contrib 2.0.0 (due on or
  after 1 January, 2016. Using this middleware will now result in a
  deprecation warning being printed to stderr. If you use this middleware, now
  would be a good time to start doing things properly.

Features

* Rack::LazyConditionalGet: new middleware, by Mig. This middleware tracks
  when the last POST/PUT/DELETE request was made, and returns 304 responses to
  requests which include a Last-Modified entity request header which is
  greater than or equal to that time.

* Rack::StaticCache: You can now specify a custom "version" regex for your
  cache invalidation, if the default doesn't do it for you. Initial patch
  provided by Eric Boehs.

* Rack::Profiler: You can now run a single request through the profiler
  multiple times, by adding the profiler_runs query parameter to the
  URL. Patch provided by Bryce McDonnell.
2015-09-13 15:39:37 +00:00
taca
52e340951a Update ruby-rack-contrib to 1.2.0.
No exact changes are available.
2015-03-13 17:23:04 +00:00
taca
a5433540bf Add ruby-rack-contrib package version 1.1.0.
Contributed Rack Middleware and Utilities

This package includes a variety of add-on components for Rack, a Ruby
web server interfaces.
2013-02-11 13:30:07 +00:00