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 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413
|
# Changelog
## 3.7.0 / 2025-05-07
- Deprecated `MIME::Type#priority_compare`. In a future release, this will be
will be renamed to `MIME::Type#<=>`. This method is used in tight loops, so
there is no warning message for either `MIME::Type#priority_compare` or
`MIME::Type#<=>`.
- Improved the performance of sorting by eliminating the complex comparison flow
from `MIME::Type#priority_compare`. The old version shows under 600 i/s, and
the new version shows over 900 i/s. In sorting the full set of MIME data,
there are three differences between the old and new versions; after
comparison, these differences are considered acceptable.
- Simplified the default compare implementation (`MIME::Type#<=>`) to use the
new `MIME::Type#priority_compare` operation and simplify the fallback to
`String` comparison. This _may_ result in exceptions where there had been
none, as explicit support for several special values (which should have caused
errors in any case) have been removed.
- When sorting the result of `MIME::Types#type_for`, provided a priority boost
if one of the target extensions is the type's preferred extension. This means
that for the case in [#148][issue-148], when getting the type for `foo.webm`,
the type `video/webm` will be returned before the type `audio/webm`, because
`.webm` is the preferred extension for `video/webm` but not `audio/webm`
(which has a preferred extension of `.weba`). Added tests to ensure MIME types
are retrieved in a stable order (which is alphabetical).
## 3.6.2 / 2025-03-25
- Updated the reference to the changelog in the README, fixing RubyGems metadata
on the next release. Fixed in [#189][pull-189] by nna774.
- Daniel Watkins fixed an error in the repo tag for this release because the
modified gemspec was not included in the release. Fixed in [#196][pull-196].
## 3.6.1 / 2025-03-15
- Restructure project structure to be more consistent with mime-types-data.
- Increased GitHub action security. Added Ruby 3.4, dropped macOS 12, added
macOS 15.
- Added [trusted publishing][tp] for fully automated releases.
- Added `MIME::Types::NullLogger` to completely silence MIME::Types logging.
- Improved the development experience with updates to the Gemfile.
- Worked around various issues with the benchmarks and profiling code.
- Removed Forwardable from MIME::Types::Container.
- Added coverage support (back).
## 3.6.0 / 2024-10-02
- 2 deprecations:
- Array-based MIME::Type initialization
- String-based MIME::Type initialization
Use of these these will result in deprecation warnings.
- Added `logger` to the gemspec to suppress a bundled gem warning with Ruby
3.3.5. This warning should not be showing up until Ruby 3.4.0 is released and
will be suppressed in Ruby 3.3.6.
- Reworked the deprecation message code to be somewhat more flexible and allow
for outputting certain warnings once. Because there will be at least one other
release after 3.6, we do not need to make the type initialization deprecations
frequent with this release.
## 3.5.2 / 2024-01-02
There are no primary code changes, but we are releasing this as an update as
there are some validation changes and updated code with formatting.
- Dependency and CI updates:
- Masato Nakamura added Ruby 3.3 to the CI workflow in [#179][pull-179].
- Fixed regressions in standard formatting in [#180][pull-180].
- Removed `minitest-bonus-assertions` because of a bundler resolution issue.
Created a better replacement in-line.
## 3.5.1 / 2023-08-21
- 1 bug fix:
- Better handle possible line-termination strings (legal in Unix filenames)
such as `\n` in `MIME::Types.type_for`. Reported by ooooooo-q in
[#177][issue-177], resolved in [#178][pull-178].
## 3.5.0 / 2023-08-07
- 1 minor enhancement:
- Robb Shecter changed the default log level for duplicate type variant from
`warn` to `debug` in [#170][pull-170]. This works because
`MIME::Types.logger` is intended to fit the `::Logger` interface, and the
default logger (`WarnLogger`) is a subclass of `::Logger` that passes
through to `Kernel.warn`.
- Further consideration has changed cache load messages from `warn` to
`error` and deprecation messages from `warn` to `debug`.
- 1 bug fix:
- Added a definition of `MIME::Type#hash`. Contributed by Alex Vondrak in
[#167][pull-167], fixing [#166][issue-166].
- Dependency and CI updates:
- Update the .github/workflows/ci.yml workflow to test Ruby 3.2 and more
reliably test certain combinations rather than depending on exclusions.
- Change `.standard.yml` configuration to format for Ruby 2.3 as certain files
are not properly detected with Ruby 2.0.
- Change from `hoe-git` to `hoe-git2` to support Hoe version 4.
- Apply `standardrb --fix`.
- The above changes have resulted in the Soft deprecation of Ruby versions
below 2.6. Any errors reported for Ruby versions 2.0, 2.1, 2.2, 2.3, 2.4,
and 2.5 will be resolved, but maintaining CI for these versions is
unsustainable.
## 3.4.1 / 2021-11-16
- 1 bug fix:
- Fixed a Ruby < 2.3 incompatibility introduced by the use of standardrb,
where `<<-` heredocs were converted to `<<~` heredocs. These have been
reverted back to `<<-` with the indentation kept and a `.strip` call to
prevent excess whitespace.
## 3.4.0 / 2021-11-15
- 1 minor enhancement:
- Added a new field to `MIME::Type` for checking provisional registrations
from IANA. [#157]
- Documentation:
- Kevin Menard synced the documentation so that all examples are correct.
[#153]
- Administrivia:
- Added Ruby 3.0 to the CI test matrix. Added `windows/jruby` to the CI
exclusion list; it refuses to run successfully.
- Removed the Travis CI configuration and changed it to Github Workflows
[#150][pull-150]. Removed Coveralls configuration.
- Igor Victor added TruffleRuby to the Travis CI configuration. [#149]
- Koichi ITO loosened an excessively tight dependency. [#147]
- Started using `standardrb` for Ruby formatting and validation.
- Moved `deps:top` functionality to a support file.
## 3.3.1 / 2019-12-26
- 1 minor bug fix:
- Al Snow fixed a warning with MIME::Types::Logger producing a warning because
Ruby 2.7 introduces numbered block parameters. Because of the way that the
MIME::Types::Logger works for deprecation messages, the initializer
parameters had been named `_1`, `_2`, and `_3`. This has now been resolved.
[#146]
- Administrivia:
- Olle Jonsson removed an outdated Travis configuration option.
[#142][pull-142]
## 3.3 / 2019-09-04
- 1 minor enhancement:
- Jean Boussier reduced memory usage for Ruby versions 2.3 or higher by
interning various string values in each type. This is done with a
backwards-compatible call that _freezes_ the strings on older versions of
Ruby. [#141]
- Administrivia:
- Nicholas La Roux updated Travis build configurations. [#139]
## 3.2.2 / 2018-08-12
- Hiroto Fukui removed a stray `debugger` statement that I had used in producing
v3.2.1. [#137]
## 3.2.1 / 2018-08-12
- A few bugs related to MIME::Types::Container and its use in the
mime-types-data helper tools reared their head because I released 3.2 before
verifying against mime-types-data.
## 3.2 / 2018-08-12
- 2 minor enhancements
- Janko Marohnić contributed a change to `MIME::Type#priority_order` that
should improve on strict sorting when dealing with MIME types that appear to
be in the same family even if strict sorting would cause an unregistered
type to be sorted first. [#132]
- Dillon Welch contributed a change that added `frozen_string_literal: true`
to files so that modern Rubies can automatically reduce duplicate string
allocations. [#135]
- 2 bug fixes
- Burke Libbey fixed a problem with cached data loading. [#126]
- Resolved an issue where Enumerable#inject returns `nil` when provided an
empty enumerable and a default value has not been provided. This is because
when Enumerable#inject isn't provided a starting value, the first value is
used as the default value. In every case where this error was happening, the
result was supposed to be an array containing Set objects so they can be
reduced to a single Set. [#117][issue-117], [#127][issue-127],
[#134][issue-134]
- Fixed an uncontrolled growth bug in MIME::Types::Container where a key miss
would create a new entry with an empty Set in the container. This was
working as designed (this particular feature was heavily used during
MIME::Type registry construction), but the design was flawed in that it did
not have any way of determining the difference between construction and
querying. This would mean that, if you have a function in your web app that
queries the MIME::Types registry by extension, the extension registry would
grow uncontrollably. [#136]
- Deprecations:
- Lazy loading (`$RUBY_MIME_TYPES_LAZY_LOAD`) has been deprecated.
- Documentation Changes:
- Supporting files are now Markdown instead of rdoc, except for the README.
- The history file has been modified to remove all history prior to 3.0. This
history can be found in previous commits.
- A spelling error was corrected by Edward Betts ([#129][pull-129]).
- Administrivia:
- CI configuration for more modern versions of Ruby were added by Nicolas
Leger ([#130][pull-130]), Jun Aruga ([#125][pull-125]), and Austin Ziegler.
Removed ruby-head-clang and rbx (Rubinius) from CI.
- Fixed tests which were asserting equality against nil, which will become an
error in Minitest 6.
## 3.1 / 2016-05-22
- 1 documentation change:
- Tim Smith (@tas50) updated the build badges to be SVGs to improve
readability on high-density (retina) screens with pull request
[#112][pull-112].
- 3 bug fixes
- A test for `MIME::Types::Cache` fails under Ruby 2.3 because of frozen
strings, [#118][pull-118]. This has been fixed.
- The JSON data has been incorrectly encoded since the release of mime-types 3
on the `xrefs` field, because of the switch to using a Set to store
cross-reference information. This has been fixed.
- A tentative fix for [#117][issue-117] has been applied, removing the only
circular require dependencies that exist (and for which there was code to
prevent, but the current fix is simpler). I have no way to verify this fix
and depending on how things are loaded by `delayed_job`, this fix may not be
sufficient.
- 1 governance change
- Updated to Contributor Covenant 1.4.
## 3.0 / 2015-11-21
- 2 governance changes
- This project and the related mime-types-data project are now exclusively MIT
licensed. Resolves [#95][pull-95].
- All projects under the mime-types organization now have a standard code of
conduct adapted from the [Contributor Covenant][contributor covenant]. This
text can be found in the [Code of Conduct][code of conduct] file.
- 3 major changes
- All methods deprecated in mime-types 2.x have been removed.
- mime-types now requires Ruby 2.0 compatibility or later. Resolves
[#97][pull-97].
- The registry data has been removed from mime-types and put into
mime-types-data, maintained and released separately. It can be found at
[mime-types-data][mime-types-data].
- 17 minor changes:
- `MIME::Type` changes:
- Changed the way that simplified types representations are created to
reflect the fact that `x-` prefixes are no longer considered special
according to IANA. A simplified MIME type is case-folded to lowercase. A
new keyword parameter, `remove_x_prefix`, can be provided to remove `x-`
prefixes.
- Improved initialization with an Array works so that extensions do not need
to be wrapped in another array. This means that `%w(text/yaml yaml yml)`
works in the same way that `['text/yaml', %w(yaml yml)]` did (and still
does).
- Changed `priority_compare` to conform with attributes that no longer
exist.
- Changed the internal implementation of extensions to use a frozen Set.
- When extensions are set or modified with `add_extensions`, the primary
registry will be informed of a need to re-index extensions. Resolves
[#84][pull-84].
- The preferred extension can be set explicitly. If not set, it will be the
first extension. If the preferred extension is not in the extension list,
it will be added.
- Improved how xref URLs are generated.
- Converted `obsolete`, `registered` and `signature` to `attr_accessors`.
- `MIME::Types` changes:
- Modified `MIME::Types.new` to track instances of `MIME::Types` so that
they can be told to reindex the extensions as necessary.
- Removed `data_version` attribute.
- Changed `#[]` so that the `complete` and `registered` flags are keywords
instead of a generic options parameter.
- Extracted the class methods to a separate file.
- Changed the container implementation to use a Set instead of an Array to
prevent data duplication. Resolves [#79][pull-79].
- `MIME::Types::Cache` changes:
- Caching is now based on the data gem version instead of the mime-types
version.
- Caching is compatible with columnar registry stores.
- `MIME::Types::Loader` changes:
- `MIME::Types::Loader::PATH` has been removed and replaced with
`MIME::Types::Data::PATH` from the mime-types-data gem. The environment
variable `RUBY_MIME_TYPES_DATA` is still used.
- Support for the long-deprecated mime-types v1 format has been removed.
- The registry is default loaded from the columnar store by default. The
internal format of the columnar store has changed; many of the boolean
flags are now loaded from a single file. Resolves [#85][pull-85].
[code of conduct]: CODE_OF_CONDUCT.md
[contributor covenant]: http://contributor-covenant.org
[issue-117]: https://github.com/mime-types/ruby-mime-types/issues/117
[issue-127]: https://github.com/mime-types/ruby-mime-types/issues/127
[issue-134]: https://github.com/mime-types/ruby-mime-types/issues/134
[issue-136]: https://github.com/mime-types/ruby-mime-types/issues/136
[issue-148]: https://github.com/mime-types/ruby-mime-types/issues/148
[issue-166]: https://github.com/mime-types/ruby-mime-types/issues/166
[issue-177]: https://github.com/mime-types/ruby-mime-types/issues/177
[mime-types-data]: https://github.com/mime-types/mime-types-data
[pull-112]: https://github.com/mime-types/ruby-mime-types/pull/112
[pull-118]: https://github.com/mime-types/ruby-mime-types/pull/118
[pull-125]: https://github.com/mime-types/ruby-mime-types/pull/125
[pull-126]: https://github.com/mime-types/ruby-mime-types/pull/126
[pull-129]: https://github.com/mime-types/ruby-mime-types/pull/129
[pull-130]: https://github.com/mime-types/ruby-mime-types/pull/130
[pull-132]: https://github.com/mime-types/ruby-mime-types/pull/132
[pull-135]: https://github.com/mime-types/ruby-mime-types/pull/135
[pull-137]: https://github.com/mime-types/ruby-mime-types/pull/137
[pull-139]: https://github.com/mime-types/ruby-mime-types/pull/139
[pull-141]: https://github.com/mime-types/ruby-mime-types/pull/141
[pull-142]: https://github.com/mime-types/ruby-mime-types/pull/142
[pull-146]: https://github.com/mime-types/ruby-mime-types/pull/146
[pull-147]: https://github.com/mime-types/ruby-mime-types/pull/147
[pull-149]: https://github.com/mime-types/ruby-mime-types/pull/149
[pull-150]: https://github.com/mime-types/ruby-mime-types/pull/150
[pull-153]: https://github.com/mime-types/ruby-mime-types/pull/153
[pull-167]: https://github.com/mime-types/ruby-mime-types/pull/167
[pull-170]: https://github.com/mime-types/ruby-mime-types/pull/170
[pull-178]: https://github.com/mime-types/ruby-mime-types/pull/178
[pull-179]: https://github.com/mime-types/ruby-mime-types/pull/179
[pull-180]: https://github.com/mime-types/ruby-mime-types/pull/180
[pull-189]: https://github.com/mime-types/ruby-mime-types/pull/189
[pull-196]: https://github.com/mime-types/ruby-mime-types/pull/196
[pull-79]: https://github.com/mime-types/ruby-mime-types/pull/79
[pull-84]: https://github.com/mime-types/ruby-mime-types/pull/84
[pull-85]: https://github.com/mime-types/ruby-mime-types/pull/85
[pull-95]: https://github.com/mime-types/ruby-mime-types/pull/95
[pull-97]: https://github.com/mime-types/ruby-mime-types/pull/97
[tp]: https://guides.rubygems.org/trusted-publishing/
|