[ANN] mime-types 2.4.2 Released

mime-types version 2.4.2 has been released!

* home: <https://github.com/halostatue/mime-types/>
* code: <https://github.com/halostatue/mime-types/>
* bugs: <https://github.com/halostatue/mime-types/issues>
* rdoc: <http://rdoc.info/gems/mime-types/>
* continuous integration: <{img src="https://travis-ci.org/halostatue/mime-types.png" /}[https://travis-ci.org/halostatue/mime-types]>
* test coverage: <{img src="https://coveralls.io/repos/halostatue/mime-types/badge.png" alt="Coverage Status" /}[https://coveralls.io/r/halostatue/mime-types]>

The mime-types library provides a library and registry for information about
MIME content type definitions. It can be used to determine defined filename
extensions for MIME types, or to use filename extensions to look up the likely
MIME type definitions.

MIME content types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted. The
mime-types library provides the ability for detailed information about MIME
entities (provided as an enumerable collection of MIME::Type objects) to be
determined and used programmatically. There are many types defined by RFCs and
vendors, so the list is long but by definition incomplete; don't hesitate to to
add additional type definitions (see Contributing.rdoc). The primary sources
for MIME type definitions found in mime-types is the IANA collection of
registrations (see below for the link), RFCs, and W3C recommendations.

This is release 2.4.2, fixing bugs with unnecessary object duplication and
using JSON.parse instead of JSON.load. These fixes improve the JSON registry
loading time by about 55% over previous 2.x releases. Cached registry load
times are not changed. This release builds on the 2.4.1 release, which fixed a
bug in observed use of the mime-types library where extensions were not
previously sorted, such that

    MIME::Types.of('image.jpg').first.extensions.first

returned a value of +jpeg+ in mime-types 1, but +jpe+ in mime-types 2. This was
introduced because extensions were sorted during assignment
(MIME::Type#extensions=). This behaviour has been reverted to protect clients
that work as noted above. The preferred way to express this is the new method:

    MIME::Type.of('image.jpg').first.preferred_extension

Łukasz Śliwa created the
{friendly_mime}[https://github.com/lukaszsliwa/friendly_mime] gem, which offers
friendly descriptive names for MIME types. This functionality and
English-language data has been added to mime-types as MIME::Type#friendly. To
make it easy for internationalization, MIME::Type#i18n_key has been added,
which will return a key suitable for use with the
{I18n}[https://github.com/svenfuchs/i18n] library.

As a reminder, mime-types 2.x is no longer compatible with Ruby 1.8 and
mime-types 1.x is only being maintained for security issues. No new MIME types
or features will be added.

mime-types (previously called MIME::Types for Ruby) was originally based on
MIME::Types for Perl by Mark Overmeer, copyright 2001 - 2009. It is built to
conform to the MIME types of RFCs 2045 and 2231. It tracks the {IANA Media
Types registry}[https://www.iana.org/assignments/media-types/media-types.xhtml]
with some types added by the users of mime-types.

Changes:

## 2.4.2 / 2014-10-15

* Bugs:
  * Aaron Patterson (@tenderlove) found a loading bug and provided a fix that
    nearly doubled registry load performance
    ({#74}[https://github.com/halostatue/mime-types/pull/74]).
  * Godfrey Chan (@chancancode) provided a prophylactic security fix to use
    <tt>JSON.parse</tt> instead of <tt>JSON.load</tt> in
    {#75}[https://github.com/halostatue/mime-types/pull/75]. This provides a
    20% improvement over the already improved result, resulting in a total 55%
    performance boost.

I noticed memory usage is quite high for the mime types gem, is there
any work to cut down on the amount of memory and objects it adds
permanently.

···

On Thu, Oct 16, 2014 at 8:16 AM, Austin Ziegler <halostatue@gmail.com> wrote:

mime-types version 2.4.2 has been released!

* home: <https://github.com/halostatue/mime-types/&gt;
* code: <https://github.com/halostatue/mime-types/&gt;
* bugs: <https://github.com/halostatue/mime-types/issues&gt;
* rdoc: <http://rdoc.info/gems/mime-types/&gt;
* continuous integration: <{img src="Travis CI - Test and Deploy with Confidence; /}[Travis CI - Test and Deploy with Confidence]>
* test coverage: <{img src="https://coveralls.io/repos/halostatue/mime-types/badge.png&quot; alt="Coverage Status" /}[https://coveralls.io/r/halostatue/mime-types\]>

The mime-types library provides a library and registry for information about
MIME content type definitions. It can be used to determine defined filename
extensions for MIME types, or to use filename extensions to look up the likely
MIME type definitions.

MIME content types are used in MIME-compliant communications, as in e-mail or
HTTP traffic, to indicate the type of content which is transmitted. The
mime-types library provides the ability for detailed information about MIME
entities (provided as an enumerable collection of MIME::Type objects) to be
determined and used programmatically. There are many types defined by RFCs and
vendors, so the list is long but by definition incomplete; don't hesitate to to
add additional type definitions (see Contributing.rdoc). The primary sources
for MIME type definitions found in mime-types is the IANA collection of
registrations (see below for the link), RFCs, and W3C recommendations.

This is release 2.4.2, fixing bugs with unnecessary object duplication and
using JSON.parse instead of JSON.load. These fixes improve the JSON registry
loading time by about 55% over previous 2.x releases. Cached registry load
times are not changed. This release builds on the 2.4.1 release, which fixed a
bug in observed use of the mime-types library where extensions were not
previously sorted, such that

    MIME::Types.of('image.jpg').first.extensions.first

returned a value of +jpeg+ in mime-types 1, but +jpe+ in mime-types 2. This was
introduced because extensions were sorted during assignment
(MIME::Type#extensions=). This behaviour has been reverted to protect clients
that work as noted above. The preferred way to express this is the new method:

    MIME::Type.of('image.jpg').first.preferred_extension

Łukasz Śliwa created the
{friendly_mime}[https://github.com/lukaszsliwa/friendly_mime\] gem, which offers
friendly descriptive names for MIME types. This functionality and
English-language data has been added to mime-types as MIME::Type#friendly. To
make it easy for internationalization, MIME::Type#i18n_key has been added,
which will return a key suitable for use with the
{I18n}[https://github.com/svenfuchs/i18n\] library.

As a reminder, mime-types 2.x is no longer compatible with Ruby 1.8 and
mime-types 1.x is only being maintained for security issues. No new MIME types
or features will be added.

mime-types (previously called MIME::Types for Ruby) was originally based on
MIME::Types for Perl by Mark Overmeer, copyright 2001 - 2009. It is built to
conform to the MIME types of RFCs 2045 and 2231. It tracks the {IANA Media
Types registry}[Media Types]
with some types added by the users of mime-types.

Changes:

## 2.4.2 / 2014-10-15

* Bugs:
  * Aaron Patterson (@tenderlove) found a loading bug and provided a fix that
    nearly doubled registry load performance
    ({#74}[https://github.com/halostatue/mime-types/pull/74\]).
  * Godfrey Chan (@chancancode) provided a prophylactic security fix to use
    <tt>JSON.parse</tt> instead of <tt>JSON.load</tt> in
    {#75}[https://github.com/halostatue/mime-types/pull/75\]. This provides a
    20% improvement over the already improved result, resulting in a total 55%
    performance boost.