mime-types 3.3.1 → 3.4.0
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.
- checksums.yaml +4 -4
- data/Code-of-Conduct.md +10 -10
- data/Contributing.md +82 -93
- data/History.md +158 -138
- data/Licence.md +3 -3
- data/README.rdoc +1 -0
- data/Rakefile +131 -145
- data/lib/mime/type/columnar.rb +3 -3
- data/lib/mime/type.rb +141 -94
- data/lib/mime/types/_columnar.rb +20 -19
- data/lib/mime/types/cache.rb +8 -8
- data/lib/mime/types/columnar.rb +1 -1
- data/lib/mime/types/container.rb +14 -14
- data/lib/mime/types/deprecations.rb +15 -11
- data/lib/mime/types/full.rb +2 -2
- data/lib/mime/types/loader.rb +28 -15
- data/lib/mime/types/logger.rb +3 -5
- data/lib/mime/types/registry.rb +7 -7
- data/lib/mime/types.rb +18 -16
- data/lib/mime-types.rb +1 -1
- data/test/minitest_helper.rb +7 -9
- data/test/test_mime_type.rb +272 -261
- data/test/test_mime_types.rb +72 -72
- data/test/test_mime_types_cache.rb +38 -38
- data/test/test_mime_types_class.rb +59 -59
- data/test/test_mime_types_lazy.rb +16 -16
- data/test/test_mime_types_loader.rb +14 -14
- metadata +15 -43
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 95c7231323b94e19e07e031375caa2a86929b89c39758f1e275f7c45173e305a
|
4
|
+
data.tar.gz: 3c2bfd451b5e04dbb675c2341e9917a9900998a7ce85d7f3532f53d173985888
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 11732903d8ad42251e2913d0663f96c7c208818d7d446662be7da8abcb6d1b45ff028d030ee83e1e2eedc87ae5a333f82225b74580f5e7449338093865fbbccb
|
7
|
+
data.tar.gz: dce1385da430c768e232daf3c263a89473356889dedcb0f19b7ea2da1d6a494d590d06b0d49d24d3366132855fb6d3b39d45c24a3f7550920306f0587d6375d6
|
data/Code-of-Conduct.md
CHANGED
@@ -14,21 +14,21 @@ appearance, race, religion, or sexual identity and orientation.
|
|
14
14
|
Examples of behavior that contributes to creating a positive environment
|
15
15
|
include:
|
16
16
|
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
17
|
+
- Using welcoming and inclusive language
|
18
|
+
- Being respectful of differing viewpoints and experiences
|
19
|
+
- Gracefully accepting constructive criticism
|
20
|
+
- Focusing on what is best for the community
|
21
|
+
- Showing empathy towards other community members
|
22
22
|
|
23
23
|
Examples of unacceptable behavior by participants include:
|
24
24
|
|
25
|
-
|
25
|
+
- The use of sexualized language or imagery and unwelcome sexual attention or
|
26
26
|
advances
|
27
|
-
|
28
|
-
|
29
|
-
|
27
|
+
- Trolling, insulting/derogatory comments, and personal or political attacks
|
28
|
+
- Public or private harassment
|
29
|
+
- Publishing others' private information, such as a physical or electronic
|
30
30
|
address, without explicit permission
|
31
|
-
|
31
|
+
- Other conduct which could reasonably be considered inappropriate in a
|
32
32
|
professional setting
|
33
33
|
|
34
34
|
## Our Responsibilities
|
data/Contributing.md
CHANGED
@@ -1,143 +1,132 @@
|
|
1
|
-
|
1
|
+
# Contributing
|
2
2
|
|
3
3
|
I value any contribution to mime-types you can provide: a bug report, a feature
|
4
4
|
request, or code contributions.
|
5
5
|
|
6
6
|
There are a few guidelines for contributing to mime-types:
|
7
7
|
|
8
|
-
|
9
|
-
written with [minitest]
|
10
|
-
|
11
|
-
|
8
|
+
- Code changes _will_ _not_ be accepted without tests. The test suite is
|
9
|
+
written with [minitest].
|
10
|
+
- Match my coding style.
|
11
|
+
- Use a thoughtfully-named topic branch that contains your change. Rebase your
|
12
12
|
commits into logical chunks as necessary.
|
13
|
-
|
14
|
-
|
13
|
+
- Use [quality commit messages].
|
14
|
+
- Do not change the version number; when your patch is accepted and a release
|
15
15
|
is made, the version will be updated at that point.
|
16
|
-
|
17
|
-
|
16
|
+
- Submit a GitHub pull request with your changes.
|
17
|
+
- New or changed behaviours require new or updated documentation.
|
18
18
|
|
19
|
-
|
19
|
+
## Adding or Modifying MIME Types
|
20
20
|
|
21
21
|
The mime-types registry is no longer contained in mime-types, but in
|
22
|
-
[mime-types-data]
|
22
|
+
[mime-types-data]. Please see that project for contributions there.
|
23
23
|
|
24
24
|
### Test Dependencies
|
25
25
|
|
26
|
-
mime-types uses Ryan Davis’s [Hoe]
|
27
|
-
a number of rake tasks. You will mostly be interested in
|
26
|
+
mime-types uses Ryan Davis’s [Hoe] to manage the release process, and it adds
|
27
|
+
a number of rake tasks. You will mostly be interested in `rake`, which runs
|
28
|
+
the tests the same way that `rake test` or `rake travis` will do.
|
28
29
|
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
$ rake travis
|
35
|
-
|
36
|
-
will do.
|
37
|
-
|
38
|
-
To assist with the installation of the development dependencies for mime-types,
|
39
|
-
I have provided the simplest possible Gemfile pointing to the (generated)
|
40
|
-
`mime-types.gemspec` file. This will permit you to do:
|
41
|
-
|
42
|
-
$ bundle install
|
43
|
-
|
44
|
-
to get the development dependencies. If you aleady have +hoe+ installed, you
|
45
|
-
can accomplish the same thing with:
|
46
|
-
|
47
|
-
$ rake newb
|
30
|
+
To assist with the installation of the development dependencies for
|
31
|
+
mime-types, I have provided the simplest possible Gemfile pointing to the
|
32
|
+
(generated) `mime-types.gemspec` file. This will permit you to do `bundle
|
33
|
+
install` to get the development dependencies. If you aleady have `hoe`
|
34
|
+
installed, you can accomplish the same thing with `rake newb`.
|
48
35
|
|
49
36
|
This task will install any missing dependencies, run the tests/specs, and
|
50
37
|
generate the RDoc.
|
51
38
|
|
52
|
-
You can run tests with code coverage analysis by running
|
53
|
-
|
54
|
-
$ rake test:coverage
|
39
|
+
You can run tests with code coverage analysis by running `rake
|
40
|
+
test:coverage`.
|
55
41
|
|
56
|
-
|
42
|
+
## Benchmarks
|
57
43
|
|
58
44
|
mime-types offers several benchmark tasks to measure different measures of
|
59
45
|
performance.
|
60
46
|
|
61
47
|
There is a repeated load test, measuring how long it takes to start and load
|
62
48
|
mime-types with its full registry. By default, it runs fifty loops and uses the
|
63
|
-
built-in benchmark library
|
49
|
+
built-in benchmark library:
|
64
50
|
|
65
|
-
|
51
|
+
- `rake benchmark:load`
|
66
52
|
|
67
53
|
There are two allocation tracing benchmarks (for normal and columnar loads).
|
68
54
|
These can only be run on Ruby 2.1 or better and requires the
|
69
|
-
[allocation\_tracer]
|
55
|
+
[allocation\_tracer] gem (not installed by default).
|
70
56
|
|
71
|
-
|
72
|
-
|
57
|
+
- `rake benchmark:allocations`
|
58
|
+
- `rake benchmark:allocations:columnar`
|
73
59
|
|
74
60
|
There are two loaded object count benchmarks (for normal and columnar loads).
|
75
61
|
These use `ObjectSpace.count_objects`.
|
76
62
|
|
77
|
-
|
78
|
-
|
63
|
+
- `rake benchmark:objects`
|
64
|
+
- `rake benchmark:objects:columnar`
|
79
65
|
|
80
|
-
|
66
|
+
## Workflow
|
81
67
|
|
82
68
|
Here's the most direct way to get your work merged into the project:
|
83
69
|
|
84
|
-
|
85
|
-
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
70
|
+
- Fork the project.
|
71
|
+
- Clone down your fork (`git clone git://github.com/<username>/ruby-mime-types.git`).
|
72
|
+
- Create a topic branch to contain your change (`git checkout -b my_awesome_feature`).
|
73
|
+
- Hack away, add tests. Not necessarily in that order.
|
74
|
+
- Make sure everything still passes by running `rake`.
|
75
|
+
- If necessary, rebase your commits into logical chunks, without errors.
|
76
|
+
- Push the branch up (`git push origin my_awesome_feature`).
|
77
|
+
- Create a pull request against mime-types/ruby-mime-types and describe what
|
92
78
|
your change does and the why you think it should be merged.
|
93
79
|
|
94
|
-
|
80
|
+
## Contributors
|
95
81
|
|
96
|
-
|
82
|
+
- Austin Ziegler created mime-types.
|
97
83
|
|
98
84
|
Thanks to everyone else who has contributed to mime-types over the years:
|
99
85
|
|
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
|
-
|
86
|
+
- Aaron Patterson
|
87
|
+
- Aggelos Avgerinos
|
88
|
+
- Al Snow
|
89
|
+
- Andre Pankratz
|
90
|
+
- Andy Brody
|
91
|
+
- Arnaud Meuret
|
92
|
+
- Brandon Galbraith
|
93
|
+
- Burke Libbey
|
94
|
+
- Chris Gat
|
95
|
+
- David Genord
|
96
|
+
- Dillon Welch
|
97
|
+
- Eric Marden
|
98
|
+
- Edward Betts
|
99
|
+
- Garret Alfert
|
100
|
+
- Godfrey Chan
|
101
|
+
- Greg Brockman
|
102
|
+
- Hans de Graaff
|
103
|
+
- Henrik Hodne
|
104
|
+
- Igor Victor
|
105
|
+
- Janko Marohnić
|
106
|
+
- Jean Boussier
|
107
|
+
- Jeremy Evans
|
108
|
+
- Juanito Fatas
|
109
|
+
- Jun Aruga
|
110
|
+
- Łukasz Śliwa
|
111
|
+
- Keerthi Siva
|
112
|
+
- Ken Ip
|
113
|
+
- Kevin Menard
|
114
|
+
- Koichi ITO
|
115
|
+
- Martin d'Allens
|
116
|
+
- Mauricio Linhares
|
117
|
+
- Nicolas Leger
|
118
|
+
- Nicholas La Roux
|
119
|
+
- nycvotes-dev
|
120
|
+
- Olle Jonsson
|
121
|
+
- Postmodern
|
122
|
+
- Richard Hirner
|
123
|
+
- Richard Hurt
|
124
|
+
- Richard Schneeman
|
125
|
+
- Tibor Szolár
|
126
|
+
- Todd Carrico
|
138
127
|
|
139
128
|
[minitest]: https://github.com/seattlerb/minitest
|
140
129
|
[quality commit messages]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
141
130
|
[mime-types-data]: https://github.com/mime-types/mime-types-data
|
142
|
-
[
|
131
|
+
[hoe]: https://github.com/seattlerb/hoe
|
143
132
|
[allocation\_tracer]: https://github.com/ko1/allocation_tracer
|
data/History.md
CHANGED
@@ -1,216 +1,232 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## 3.4.0 / 2021-11-15
|
4
|
+
|
5
|
+
- 1 minor enhancement:
|
6
|
+
|
7
|
+
- Added a new field to `MIME::Type` for checking provisional registrations
|
8
|
+
from IANA. [#157]
|
9
|
+
|
10
|
+
- Documentation:
|
11
|
+
|
12
|
+
- Kevin Menard synced the documentation so that all examples are correct.
|
13
|
+
[#153]
|
14
|
+
|
15
|
+
- Administrivia:
|
16
|
+
|
17
|
+
- Added Ruby 3.0 to the CI test matrix. Added `windows/jruby` to the
|
18
|
+
CI exclusion list; it refuses to run successfully.
|
19
|
+
- Removed the Travis CI configuration and changed it to Github Workflows
|
20
|
+
[#150]. Removed Coveralls configuration.
|
21
|
+
- Igor Victor added TruffleRuby to the Travis CI configuration. [#149]
|
22
|
+
- Koichi ITO loosened an excessively tight dependency. [#147]
|
23
|
+
- Started using `standardrb` for Ruby formatting and validation.
|
24
|
+
- Moved `deps:top` functionality to a support file.
|
25
|
+
|
1
26
|
## 3.3.1 / 2019-12-26
|
2
27
|
|
3
|
-
|
28
|
+
- 1 minor bugfix:
|
4
29
|
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
30
|
+
- Al Snow fixed a warning with MIME::Types::Logger producing a warning
|
31
|
+
because Ruby 2.7 introduces numbered block parameters. Because of the way
|
32
|
+
that the MIME::Types::Logger works for deprecation messages, the
|
33
|
+
initializer parameters had been named `_1`, `_2`, and `_3`. This has now
|
34
|
+
been resolved. [#146]
|
10
35
|
|
11
|
-
|
36
|
+
- Administrivia:
|
12
37
|
|
13
|
-
|
14
|
-
false`). [#142][]
|
38
|
+
- Olle Jonsson removed an outdated Travis configuration option (`sudo: false`). [#142]
|
15
39
|
|
16
40
|
## 3.3 / 2019-09-04
|
17
41
|
|
18
|
-
|
42
|
+
- 1 minor enhancement
|
19
43
|
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
44
|
+
- Jean Boussier reduced memory usage for Ruby versions 2.3 or higher by
|
45
|
+
interning various string values in each type. This is done with a
|
46
|
+
backwards-compatible call that _freezes_ the strings on older versions of
|
47
|
+
Ruby. [#141]
|
24
48
|
|
25
|
-
|
49
|
+
- Administrivia:
|
26
50
|
|
27
|
-
|
51
|
+
- Nicholas La Roux updated Travis build configurations. [#139]
|
28
52
|
|
29
53
|
## 3.2.2 / 2018-08-12
|
30
54
|
|
31
|
-
|
32
|
-
|
55
|
+
- Hiroto Fukui removed a stray `debugger` statement that I had used in
|
56
|
+
producing v3.2.1. [#137]
|
33
57
|
|
34
58
|
## 3.2.1 / 2018-08-12
|
35
59
|
|
36
|
-
|
37
|
-
|
38
|
-
|
60
|
+
- A few bugs related to MIME::Types::Container and its use in the
|
61
|
+
mime-types-data helper tools reared their head because I released 3.2
|
62
|
+
before verifying against mime-types-data.
|
39
63
|
|
40
64
|
## 3.2 / 2018-08-12
|
41
65
|
|
42
|
-
|
66
|
+
- 2 minor enhancements
|
43
67
|
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
68
|
+
- Janko Marohnić contributed a change to `MIME::Type#priority_order` that
|
69
|
+
should improve on strict sorting when dealing with MIME types that appear
|
70
|
+
to be in the same family even if strict sorting would cause an
|
71
|
+
unregistered type to be sorted first. [#132]
|
48
72
|
|
49
|
-
|
50
|
-
|
51
|
-
string allocations. [#135][]
|
73
|
+
- Dillon Welch contributed a change that added `frozen_string_literal: true` to files so that modern Rubies can automatically reduce duplicate
|
74
|
+
string allocations. [#135]
|
52
75
|
|
53
|
-
|
76
|
+
- 2 bug fixes
|
54
77
|
|
55
|
-
|
78
|
+
- Burke Libbey fixed a problem with cached data loading. [#126]
|
56
79
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
[#134][].
|
80
|
+
- Resolved an issue where Enumerable#inject returns `nil` when provided an
|
81
|
+
empty enumerable and a default value has not been provided. This is
|
82
|
+
because when Enumerable#inject isn't provided a starting value, the first
|
83
|
+
value is used as the default value. In every case where this error was
|
84
|
+
happening, the result was supposed to be an array containing Set objects
|
85
|
+
so they can be reduced to a single Set. [#117], [#127], [#134]
|
64
86
|
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
87
|
+
- Fixed an uncontrolled growth bug in MIME::Types::Container where a key
|
88
|
+
miss would create a new entry with an empty Set in the container. This
|
89
|
+
was working as designed (this particular feature was heavily used during
|
90
|
+
MIME::Type registry construction), but the design was flawed in that it
|
91
|
+
did not have any way of determining the difference between construction
|
92
|
+
and querying. This would mean that, if you have a function in your web
|
93
|
+
app that queries the MIME::Types registry by extension, the extension
|
94
|
+
registry would grow uncontrollably. [#136]
|
73
95
|
|
74
|
-
|
96
|
+
- Deprecations:
|
75
97
|
|
76
|
-
|
98
|
+
- Lazy loading (`$RUBY_MIME_TYPES_LAZY_LOAD`) has been deprecated.
|
77
99
|
|
78
|
-
|
100
|
+
- Documentation Changes:
|
79
101
|
|
80
|
-
|
81
|
-
README.
|
102
|
+
- Supporting files are now Markdown instead of rdoc, except for the README.
|
82
103
|
|
83
|
-
|
84
|
-
|
104
|
+
- The history file has been modified to remove all history prior to 3.0.
|
105
|
+
This history can be found in previous commits.
|
85
106
|
|
86
|
-
|
107
|
+
- A spelling error was corrected by Edward Betts ([#129]).
|
87
108
|
|
88
|
-
|
109
|
+
- Administrivia:
|
89
110
|
|
90
|
-
|
91
|
-
|
92
|
-
|
111
|
+
- CI configuration for more modern versions of Ruby were added by Nicolas
|
112
|
+
Leger ([#130]), Jun Aruga ([#125]), and Austin Ziegler. Removed
|
113
|
+
ruby-head-clang and rbx (Rubinius) from CI.
|
93
114
|
|
94
|
-
|
95
|
-
|
115
|
+
- Fixed tests which were asserting equality against nil, which will become
|
116
|
+
an error in Minitest 6.
|
96
117
|
|
97
118
|
## 3.1 / 2016-05-22
|
98
119
|
|
99
|
-
|
120
|
+
- 1 documentation change:
|
100
121
|
|
101
|
-
|
102
|
-
|
103
|
-
[#112][].
|
122
|
+
- Tim Smith (@tas50) updated the build badges to be SVGs to improve
|
123
|
+
readability on high-density (retina) screens with pull request [#112].
|
104
124
|
|
105
|
-
|
125
|
+
- 3 bug fixes
|
106
126
|
|
107
|
-
|
108
|
-
|
127
|
+
- A test for `MIME::Types::Cache` fails under Ruby 2.3 because of frozen
|
128
|
+
strings, [#118]. This has been fixed.
|
109
129
|
|
110
|
-
|
111
|
-
|
112
|
-
|
130
|
+
- The JSON data has been incorrectly encoded since the release of
|
131
|
+
mime-types 3 on the `xrefs` field, because of the switch to using a Set
|
132
|
+
to store cross-reference information. This has been fixed.
|
113
133
|
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
134
|
+
- A tentative fix for [#117] has been applied, removing the only circular
|
135
|
+
require dependencies that exist (and for which there was code to prevent,
|
136
|
+
but the current fix is simpler). I have no way to verify this fix and
|
137
|
+
depending on how things are loaded by `delayed_job`, this fix may not be
|
138
|
+
sufficient.
|
119
139
|
|
120
|
-
|
140
|
+
- 1 governance change
|
121
141
|
|
122
|
-
|
142
|
+
- Updated to Contributor Covenant 1.4.
|
123
143
|
|
124
144
|
## 3.0 / 2015-11-21
|
125
145
|
|
126
|
-
|
146
|
+
- 2 governance changes
|
127
147
|
|
128
|
-
|
129
|
-
|
148
|
+
- This project and the related mime-types-data project are now exclusively
|
149
|
+
MIT licensed. Resolves [#95].
|
130
150
|
|
131
|
-
|
132
|
-
|
133
|
-
|
151
|
+
- All projects under the mime-types organization now have a standard code
|
152
|
+
of conduct adapted from the [Contributor Covenant]. This text can be
|
153
|
+
found in the [Code-of-Conduct.md] file.
|
134
154
|
|
135
|
-
|
155
|
+
- 3 major changes
|
136
156
|
|
137
|
-
|
157
|
+
- All methods deprecated in mime-types 2.x have been removed.
|
138
158
|
|
139
|
-
|
140
|
-
|
159
|
+
- mime-types now requires Ruby 2.0 compatibility or later. Resolves
|
160
|
+
[#97].
|
141
161
|
|
142
|
-
|
143
|
-
|
144
|
-
|
162
|
+
- The registry data has been removed from mime-types and put into
|
163
|
+
mime-types-data, maintained and released separately. It can be found at
|
164
|
+
[mime-types-data].
|
145
165
|
|
146
|
-
|
166
|
+
- 17 minor changes:
|
147
167
|
|
148
|
-
|
168
|
+
- `MIME::Type` changes:
|
149
169
|
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
170
|
+
- Changed the way that simplified types representations are created to
|
171
|
+
reflect the fact that `x-` prefixes are no longer considered special
|
172
|
+
according to IANA. A simplified MIME type is case-folded to lowercase.
|
173
|
+
A new keyword parameter, `remove_x_prefix`, can be provided to remove
|
174
|
+
`x-` prefixes.
|
155
175
|
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
`['text/yaml', %w(yaml yml)]` did (and still does).
|
176
|
+
- Improved initialization with an Array works so that extensions do not
|
177
|
+
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
|
178
|
+
still does).
|
160
179
|
|
161
|
-
|
162
|
-
|
180
|
+
- Changed `priority_compare` to conform with attributes that no longer
|
181
|
+
exist.
|
163
182
|
|
164
|
-
|
165
|
-
Set.
|
183
|
+
- Changed the internal implementation of extensions to use a frozen Set.
|
166
184
|
|
167
|
-
|
168
|
-
|
169
|
-
|
185
|
+
- When extensions are set or modified with `add_extensions`, the primary
|
186
|
+
registry will be informed of a need to reindex extensions. Resolves
|
187
|
+
[#84].
|
170
188
|
|
171
|
-
|
172
|
-
|
173
|
-
|
189
|
+
- The preferred extension can be set explicitly. If not set, it will be
|
190
|
+
the first extension. If the preferred extension is not in the extension
|
191
|
+
list, it will be added.
|
174
192
|
|
175
|
-
|
193
|
+
- Improved how xref URLs are generated.
|
176
194
|
|
177
|
-
|
178
|
-
`attr_accessors`.
|
195
|
+
- Converted `obsolete`, `registered` and `signature` to `attr_accessors`.
|
179
196
|
|
180
|
-
|
197
|
+
- `MIME::Types` changes:
|
181
198
|
|
182
|
-
|
183
|
-
|
199
|
+
- Modified `MIME::Types.new` to track instances of `MIME::Types` so that
|
200
|
+
they can be told to reindex the extensions as necessary.
|
184
201
|
|
185
|
-
|
202
|
+
- Removed `data_version` attribute.
|
186
203
|
|
187
|
-
|
188
|
-
|
204
|
+
- Changed `#[]` so that the `complete` and `registered` flags are
|
205
|
+
keywords instead of a generic options parameter.
|
189
206
|
|
190
|
-
|
207
|
+
- Extracted the class methods to a separate file.
|
191
208
|
|
192
|
-
|
193
|
-
|
209
|
+
- Changed the container implementation to use a Set instead of an Array
|
210
|
+
to prevent data duplication. Resolves [#79].
|
194
211
|
|
195
|
-
|
212
|
+
- `MIME::Types::Cache` changes:
|
196
213
|
|
197
|
-
|
198
|
-
|
214
|
+
- Caching is now based on the data gem version instead of the mime-types
|
215
|
+
version.
|
199
216
|
|
200
|
-
|
217
|
+
- Caching is compatible with columnar registry stores.
|
201
218
|
|
202
|
-
|
219
|
+
- `MIME::Types::Loader` changes:
|
203
220
|
|
204
|
-
|
205
|
-
|
206
|
-
|
221
|
+
- `MIME::Types::Loader::PATH` has been removed and replaced with
|
222
|
+
`MIME::Types::Data::PATH` from the mime-types-data gem. The environment
|
223
|
+
variable `RUBY_MIME_TYPES_DATA` is still used.
|
207
224
|
|
208
|
-
|
209
|
-
removed.
|
225
|
+
- Support for the long-deprecated mime-types v1 format has been removed.
|
210
226
|
|
211
|
-
|
212
|
-
|
213
|
-
|
227
|
+
- The registry is default loaded from the columnar store by default. The
|
228
|
+
internal format of the columnar store has changed; many of the boolean
|
229
|
+
flags are now loaded from a single file. Resolves [#85].
|
214
230
|
|
215
231
|
[#79]: https://github.com/mime-types/ruby-mime-types/pull/79
|
216
232
|
[#84]: https://github.com/mime-types/ruby-mime-types/pull/84
|
@@ -235,6 +251,10 @@
|
|
235
251
|
[#141]: https://github.com/mime-types/ruby-mime-types/pull/141
|
236
252
|
[#142]: https://github.com/mime-types/ruby-mime-types/pull/142
|
237
253
|
[#146]: https://github.com/mime-types/ruby-mime-types/pull/146
|
238
|
-
[
|
239
|
-
[
|
254
|
+
[#147]: https://github.com/mime-types/ruby-mime-types/pull/147
|
255
|
+
[#149]: https://github.com/mime-types/ruby-mime-types/pull/149
|
256
|
+
[#150]: https://github.com/mime-types/ruby-mime-types/pull/150
|
257
|
+
[#153]: https://github.com/mime-types/ruby-mime-types/pull/153
|
258
|
+
[code-of-conduct.md]: Code-of-Conduct_md.html
|
259
|
+
[contributor covenant]: http://contributor-covenant.org
|
240
260
|
[mime-types-data]: https://github.com/mime-types/mime-types-data
|