mime-types-data 3.2025.0507.pre1 → 3.2025.0514
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/CHANGELOG.md +190 -302
- data/README.md +16 -9
- data/Rakefile +8 -2
- data/data/content_type_mime.db +237 -33
- data/data/ext_mime.db +1611 -1204
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +426 -57
- data/data/mime.docs.column +369 -0
- data/data/mime.encoding.column +369 -0
- data/data/mime.flags.column +369 -0
- data/data/mime.friendly.column +369 -0
- data/data/mime.pext.column +369 -0
- data/data/mime.spri.column +0 -0
- data/data/mime.use_instead.column +369 -0
- data/data/mime.xrefs.column +372 -3
- data/lib/mime/types/data.rb +1 -1
- metadata +9 -9
data/CHANGELOG.md
CHANGED
@@ -2,56 +2,106 @@
|
|
2
2
|
|
3
3
|
<!-- automatic-release -->
|
4
4
|
|
5
|
-
## 3.2025.
|
5
|
+
## 3.2025.0514 / 2025-05-14
|
6
6
|
|
7
|
-
-
|
7
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
8
|
+
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
9
|
+
and the [Apache Tika media registry][tika] as of the release date.
|
10
|
+
|
11
|
+
|
12
|
+
## 3.2025.0507 / 2025-05-07
|
13
|
+
|
14
|
+
- Added new data for pre-computed priority sorting. This new data requires Ruby
|
15
|
+
mime-types 3.7.0 or later to manage data but is ignored by older versions of
|
16
|
+
mime-types.
|
17
|
+
|
18
|
+
- Added a parser for the [Apache Tika media registry][tika] to enrich the media
|
19
|
+
definitions, mostly by adding new patterns for media type extensions. This
|
20
|
+
parser:
|
21
|
+
|
22
|
+
1. Parses the current `tika-mimetypes.xml` from the main branch of
|
23
|
+
[Tika][tika] on GitHub.
|
24
|
+
|
25
|
+
2. Skips over any `mime-type` record that has attributes. That is, any record
|
26
|
+
which looks like `media/subtype;format=foo` or `media/subtype;version=2`
|
27
|
+
will be skipped. Support for attributes does not currently exist in the
|
28
|
+
mime-types library.
|
29
|
+
|
30
|
+
3. Extracts the `glob` entries for use in the `extensions` field. Globs that
|
31
|
+
use `*` in the middle of a filename are excluded, because that's now how
|
32
|
+
the Ruby MIME::Types field works (I could add a new `glob` field, but that
|
33
|
+
will take a bit more work).
|
34
|
+
|
35
|
+
4. Updates the `extensions` field for any existing MIME::Type or creates new
|
36
|
+
unregistered (not defined in IANA) types for new ones.
|
37
|
+
|
38
|
+
- Updated the history body to reflect the new data source for updates.
|
39
|
+
|
40
|
+
- Some details were removed from older CHANGELOG entries relating to updated
|
41
|
+
MIME types from more or less automated processes.
|
8
42
|
|
9
43
|
## 3.2025.0506 / 2025-05-06
|
10
44
|
|
11
|
-
- Updated
|
45
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
46
|
+
[provisional media registry][provisional] and the
|
47
|
+
[Apache httpd media registry][httpd] as of the release date.
|
12
48
|
|
13
49
|
## 3.2025.0429 / 2025-04-29
|
14
50
|
|
15
|
-
- Updated
|
51
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
52
|
+
[provisional media registry][provisional] and the
|
53
|
+
[Apache httpd media registry][httpd] as of the release date.
|
16
54
|
|
17
55
|
## 3.2025.0422 / 2025-04-22
|
18
56
|
|
19
|
-
- Updated
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
- Updated the Apache and IANA media registry entries as of release date
|
57
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
58
|
+
[provisional media registry][provisional] and the
|
59
|
+
[Apache httpd media registry][httpd] as of the release date.
|
24
60
|
|
25
61
|
## 3.2025.0408 / 2025-04-08
|
26
62
|
|
27
|
-
- Updated
|
63
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
64
|
+
[provisional media registry][provisional] and the
|
65
|
+
[Apache httpd media registry][httpd] as of the release date.
|
28
66
|
|
29
67
|
## 3.2025.0402 / 2025-04-02
|
30
68
|
|
31
|
-
- Updated
|
69
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
70
|
+
[provisional media registry][provisional] and the
|
71
|
+
[Apache httpd media registry][httpd] as of the release date.
|
32
72
|
|
33
73
|
## 3.2025.0325 / 2025-03-25
|
34
74
|
|
35
|
-
- Updated
|
75
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
76
|
+
[provisional media registry][provisional] and the
|
77
|
+
[Apache httpd media registry][httpd] as of the release date.
|
36
78
|
|
37
79
|
## 3.2025.0318 / 2025-03-18
|
38
80
|
|
39
|
-
- Updated
|
81
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
82
|
+
[provisional media registry][provisional] and the
|
83
|
+
[Apache httpd media registry][httpd] as of the release date.
|
40
84
|
|
41
85
|
## 3.2025.0304 / 2025-03-04
|
42
86
|
|
43
|
-
- Updated
|
87
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
88
|
+
[provisional media registry][provisional] and the
|
89
|
+
[Apache httpd media registry][httpd] as of the release date.
|
44
90
|
|
45
91
|
## 3.2025.0220 / 2025-02-20
|
46
92
|
|
47
|
-
- Updated
|
93
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
94
|
+
[provisional media registry][provisional] and the
|
95
|
+
[Apache httpd media registry][httpd] as of the release date.
|
48
96
|
|
49
97
|
- Added [trusted publishing][tp] for fully automated releases. Developed by
|
50
98
|
Samuel Giddins in [#109][pull-109], merged manually with some updates.
|
51
99
|
|
52
100
|
## 3.2025.0204 / 2025-02-04
|
53
101
|
|
54
|
-
- Updated
|
102
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
103
|
+
[provisional media registry][provisional] and the
|
104
|
+
[Apache httpd media registry][httpd] as of the release date.
|
55
105
|
|
56
106
|
- Added the Changelog URL to the README so that RubyGems.org is updated with the
|
57
107
|
`changelog_uri` on release. Contributed by Mark Young in [#96][pull-96].
|
@@ -65,8 +115,12 @@
|
|
65
115
|
|
66
116
|
## 3.2025.0107 / 2025-01-07
|
67
117
|
|
68
|
-
- Updated
|
118
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
119
|
+
[provisional media registry][provisional] and the
|
120
|
+
[Apache httpd media registry][httpd] as of the release date.
|
121
|
+
|
69
122
|
- Restructured documentation for how I prefer to manage Hoe projects now.
|
123
|
+
|
70
124
|
- Reworked the Rakefile because all data updates are now managed by GitHub
|
71
125
|
Actions and should not be managed manually any longer.
|
72
126
|
|
@@ -82,36 +136,48 @@
|
|
82
136
|
|
83
137
|
## 3.2024.1203 / 2024-12-03
|
84
138
|
|
85
|
-
- Updated
|
139
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
140
|
+
[provisional media registry][provisional] and the
|
141
|
+
[Apache httpd media registry][httpd] as of the release date.
|
86
142
|
|
87
143
|
## 3.2024.1105 / 2024-11-05
|
88
144
|
|
89
|
-
- Updated
|
145
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
146
|
+
[provisional media registry][provisional] and the
|
147
|
+
[Apache httpd media registry][httpd] as of the release date.
|
90
148
|
|
91
149
|
## 3.2024.1001 / 2024-10-01
|
92
150
|
|
93
|
-
- Updated
|
151
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
152
|
+
[provisional media registry][provisional] and the
|
153
|
+
[Apache httpd media registry][httpd] as of the release date.
|
94
154
|
|
95
155
|
## 3.2024.0903 / 2024-09-03
|
96
156
|
|
97
|
-
- Updated
|
157
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
158
|
+
[provisional media registry][provisional] and the
|
159
|
+
[Apache httpd media registry][httpd] as of the release date.
|
98
160
|
|
99
161
|
## 3.2024.0820 / 2024-08-20
|
100
162
|
|
101
|
-
- Updated
|
163
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
164
|
+
[provisional media registry][provisional] and the
|
165
|
+
[Apache httpd media registry][httpd] as of the release date.
|
102
166
|
|
103
167
|
- Added `.jxl` extension for `image/jxl`. Contributed by Shane Eskritt in
|
104
168
|
[#81][pull-81].
|
105
169
|
|
106
170
|
## 3.2024.0806 / 2024-08-06
|
107
171
|
|
108
|
-
- Updated
|
172
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
173
|
+
[provisional media registry][provisional] and the
|
174
|
+
[Apache httpd media registry][httpd] as of the release date.
|
109
175
|
|
110
176
|
## 3.2024.0702 / 2024-07-02
|
111
177
|
|
112
|
-
- Updated
|
113
|
-
|
114
|
-
|
178
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
179
|
+
[provisional media registry][provisional] and the
|
180
|
+
[Apache httpd media registry][httpd] as of the release date.
|
115
181
|
|
116
182
|
- This update adds a new `haptics/` group with three media types defined.
|
117
183
|
|
@@ -122,7 +188,9 @@
|
|
122
188
|
|
123
189
|
## 3.2024.0604 / 2024-06-04
|
124
190
|
|
125
|
-
- Updated
|
191
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
192
|
+
[provisional media registry][provisional] and the
|
193
|
+
[Apache httpd media registry][httpd] as of the release date.
|
126
194
|
|
127
195
|
- Internal changes:
|
128
196
|
|
@@ -135,43 +203,63 @@
|
|
135
203
|
|
136
204
|
## 3.2024.0507 / 2024-05-07
|
137
205
|
|
138
|
-
- Updated
|
206
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
207
|
+
[provisional media registry][provisional] and the
|
208
|
+
[Apache httpd media registry][httpd] as of the release date.
|
139
209
|
|
140
210
|
## 3.2024.0402 / 2024-04-02
|
141
211
|
|
142
|
-
- Updated
|
212
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
213
|
+
[provisional media registry][provisional] and the
|
214
|
+
[Apache httpd media registry][httpd] as of the release date.
|
143
215
|
|
144
216
|
## 3.2024.0305 / 2024-03-05
|
145
217
|
|
146
|
-
- Updated
|
218
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
219
|
+
[provisional media registry][provisional] and the
|
220
|
+
[Apache httpd media registry][httpd] as of the release date.
|
147
221
|
|
148
222
|
## 3.2024.0206 / 2024-02-06
|
149
223
|
|
150
|
-
- Updated
|
224
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
225
|
+
[provisional media registry][provisional] and the
|
226
|
+
[Apache httpd media registry][httpd] as of the release date.
|
151
227
|
|
152
228
|
## 3.2024.0102 / 2024-01-02
|
153
229
|
|
154
|
-
- Updated
|
230
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
231
|
+
[provisional media registry][provisional] and the
|
232
|
+
[Apache httpd media registry][httpd] as of the release date.
|
155
233
|
|
156
234
|
## 3.2023.1205 / 2023-12-05
|
157
235
|
|
158
|
-
- Updated
|
236
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
237
|
+
[provisional media registry][provisional] and the
|
238
|
+
[Apache httpd media registry][httpd] as of the release date.
|
159
239
|
|
160
240
|
## 3.2023.1107 / 2023-11-07
|
161
241
|
|
162
|
-
- Updated
|
242
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
243
|
+
[provisional media registry][provisional] and the
|
244
|
+
[Apache httpd media registry][httpd] as of the release date.
|
163
245
|
|
164
246
|
## 3.2023.1003 / 2023-10-03
|
165
247
|
|
166
|
-
- Updated
|
248
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
249
|
+
[provisional media registry][provisional] and the
|
250
|
+
[Apache httpd media registry][httpd] as of the release date.
|
167
251
|
|
168
252
|
## 3.2023.0905 / 2023-09-05
|
169
253
|
|
170
|
-
- Updated
|
254
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
255
|
+
[provisional media registry][provisional] and the
|
256
|
+
[Apache httpd media registry][httpd] as of the release date.
|
171
257
|
|
172
258
|
## 3.2023.0808 / 2023-08-08
|
173
259
|
|
174
|
-
- Updated
|
260
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
261
|
+
[provisional media registry][provisional] and the
|
262
|
+
[Apache httpd media registry][httpd] as of the release date.
|
175
263
|
|
176
264
|
## 3.2023.0218.1 / 2023-02-18
|
177
265
|
|
@@ -182,13 +270,15 @@
|
|
182
270
|
Samuel Williams discovered this in [#55][issue-55] by noting that all `js`
|
183
271
|
types were marked obsolete in version 3.2023.0218.
|
184
272
|
|
185
|
-
A
|
273
|
+
A hot fix has been applied to resolve this. However, note that
|
186
274
|
`application/javascript` will not be returned by default, only
|
187
275
|
`text/javascript`.
|
188
276
|
|
189
277
|
## 3.2023.0218 / 2023-02-18
|
190
278
|
|
191
|
-
- Updated
|
279
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
280
|
+
[provisional media registry][provisional] and the
|
281
|
+
[Apache httpd media registry][httpd] as of the release date.
|
192
282
|
|
193
283
|
- Mohammed Gad added the `jfif` file extension for `image/jpeg` text format.
|
194
284
|
[#52][pull-52]
|
@@ -202,52 +292,62 @@
|
|
202
292
|
clean way of identifying them at the moment. See [#54][issue-54].
|
203
293
|
|
204
294
|
This release also fixes [ruby-mime-types#163][ruby-mime-types#163], where logs
|
205
|
-
show "Type application/netcdf is already registered as a variant of
|
206
|
-
application/netcdf".
|
295
|
+
show "Type `application/netcdf` is already registered as a variant of
|
296
|
+
`application/netcdf`".
|
207
297
|
|
208
298
|
## 3.2022.0105 / 2022-01-05
|
209
299
|
|
210
|
-
- Updated
|
300
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
301
|
+
[provisional media registry][provisional] and the
|
302
|
+
[Apache httpd media registry][httpd] as of the release date.
|
211
303
|
|
212
304
|
- Fixed an incorrect definition of `image/bmp`, which had been marked obsolete
|
213
305
|
and later registered. Fixed [#48][issue-48], found by William T. Nelson.
|
214
306
|
|
215
307
|
## 3.2021.1115 / 2021-11-15
|
216
308
|
|
217
|
-
- Updated
|
309
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
310
|
+
[provisional media registry][provisional] and the
|
311
|
+
[Apache httpd media registry][httpd] as of the release date.
|
218
312
|
|
219
313
|
- Added conversion utilities that support the `mini_mime` data format. These
|
220
314
|
have been ported from the [mini\_mime][mini_mime] repository. [#47][pull-47]
|
221
315
|
|
222
|
-
- Added IANA provisional media registries. Added some notes to CONTRIBUTING
|
316
|
+
- Added IANA provisional media registries. Added some notes to CONTRIBUTING
|
223
317
|
about the transient nature of the provisional registration data. This was
|
224
318
|
triggered in part by a pull request by Jon Sneyers. Thanks! [#45][pull-45],
|
225
319
|
[#43][pull-43]
|
226
320
|
|
227
321
|
## 3.2021.0901 / 2021-09-01
|
228
322
|
|
229
|
-
- Updated
|
323
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
324
|
+
[provisional media registry][provisional] and the
|
325
|
+
[Apache httpd media registry][httpd] as of the release date.
|
230
326
|
|
231
|
-
- Added file extension for WebVTT text format. [#46][pull-46]
|
327
|
+
- Added file extension for `WebVTT` text format. [#46][pull-46]
|
232
328
|
|
233
329
|
## 3.2021.0704 / 2021-07-04
|
234
330
|
|
235
|
-
- Updated
|
331
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
332
|
+
[provisional media registry][provisional] and the
|
333
|
+
[Apache httpd media registry][httpd] as of the release date.
|
236
334
|
|
237
335
|
## 3.2021.0225 / 2021-02-25
|
238
336
|
|
239
|
-
- Updated
|
337
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
338
|
+
[provisional media registry][provisional] and the
|
339
|
+
[Apache httpd media registry][httpd] as of the release date.
|
240
340
|
|
241
|
-
- Added file extension for AVIF video format. [#40][pull-40]
|
341
|
+
- Added file extension for `AVIF` video format. [#40][pull-40]
|
242
342
|
|
243
343
|
## 3.2021.0212 / 2021-02-12
|
244
344
|
|
245
345
|
- Updated the IANA media registry entries as of release date.
|
246
346
|
|
247
347
|
- Added a new rake task (`release:automatic`) that downloads and converts the
|
248
|
-
data from Apache and IANA; if there are changes detected, it
|
249
|
-
release version, changelog, manifest, and gemspec and commits
|
250
|
-
git.
|
348
|
+
data from Apache httpd and IANA registries; if there are changes detected, it
|
349
|
+
updates the release version, changelog, manifest, and `gemspec` and commits
|
350
|
+
the changes to git.
|
251
351
|
|
252
352
|
## 3.2020.1104 / 2020-11-04
|
253
353
|
|
@@ -265,7 +365,7 @@
|
|
265
365
|
|
266
366
|
- Updated the IANA media registry entries as of release date.
|
267
367
|
|
268
|
-
- Added file extensions for HEIC image types. [#34][pull-34]
|
368
|
+
- Added file extensions for `HEIC` image types. [#34][pull-34]
|
269
369
|
|
270
370
|
## 3.2020.0425 / 2020-04-25
|
271
371
|
|
@@ -317,7 +417,7 @@
|
|
317
417
|
`text/markdown`. [#13][pull-13]
|
318
418
|
|
319
419
|
- Because of a bug found with mime-types 3 before 3.2.1, this version requires
|
320
|
-
mime-types 3.
|
420
|
+
mime-types 3.2 or later to manage data.
|
321
421
|
|
322
422
|
- Updated the IANA media registry entries as of release date. The biggest major
|
323
423
|
change here is the addition of the `font/` top-level media type.
|
@@ -330,27 +430,11 @@
|
|
330
430
|
|
331
431
|
## 3.2016.0521 / 2016-05-21
|
332
432
|
|
333
|
-
- Updated the known extension list for application/octet-stream and
|
334
|
-
application/pgp-encrypted to include gpg as an extension. Fixes
|
335
|
-
[#3](https://github.com/
|
336
|
-
|
337
|
-
- Updated the IANA media registry entries as of release date
|
338
|
-
|
339
|
-
- Updated metadata for application/EmergencyCallData.Comment+xml,
|
340
|
-
application/EmergencyCallData.DeviceInfo+xml,
|
341
|
-
application/EmergencyCallData.ProviderInfo+xml,
|
342
|
-
application/EmergencyCallData.ServiceInfo+xml,
|
343
|
-
application/EmergencyCallData.SubscriberInfo+xml, application/ogg,
|
344
|
-
application/problem+json, application/problem+xml, audio/ogg, text/markdown,
|
345
|
-
video/H265, video/ogg.
|
346
|
-
- Added application/efi, application/vnd.3gpp.sms+xml,
|
347
|
-
application/vnd.3lightssoftware.imagescal,
|
348
|
-
application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
|
349
|
-
application/vnd.onepager, application/vnd.quarantainenet,
|
350
|
-
application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
|
351
|
-
- image/bmp has a draft RFC which would make it official; it has been finally
|
352
|
-
been registered. As such, this version _reverses_ the use-instead
|
353
|
-
relationship of image/bmp and image/x-bmp.
|
433
|
+
- Updated the known extension list for `application/octet-stream` and
|
434
|
+
`application/pgp-encrypted` to include `gpg` as an extension. Fixes
|
435
|
+
[#3][pull-3] by Tao Guo ([@taonic](https://github.com/taonic)).
|
436
|
+
|
437
|
+
- Updated the IANA media registry entries as of release date.
|
354
438
|
|
355
439
|
- This version requires mime-types 3.1 or later to manage data because of an
|
356
440
|
issue with JSON data encoding for the `xrefs` field.
|
@@ -358,23 +442,9 @@
|
|
358
442
|
## 3.2016.0221 / 2016-02-21
|
359
443
|
|
360
444
|
- Updated the known extensions list for audio/mp4.
|
361
|
-
- Updated the IANA media registry entries as of release date:
|
362
|
-
|
363
|
-
- Updated metadata for 3GPP-defined types (there are many), application/cdni,
|
364
|
-
and application/rfc+xml.
|
365
|
-
- Added application/EmergencyCallData.Comment+xml,
|
366
|
-
application/EmergencyCallData.DeviceInfo+xml,
|
367
|
-
application/EmergencyCallData.ProviderInfo+xml,
|
368
|
-
application/EmergencyCallData.ServiceInfo+xml,
|
369
|
-
application/ppsp-tracker+json, application/problem+json,
|
370
|
-
application/problem+xml, application/vnd.filmit.zfc, application/vnd.hdt,
|
371
|
-
application/vnd.mapbox-vector-tile,
|
372
|
-
application/vnd.ms-PrintDeviceCapabilities+xml,
|
373
|
-
application/vnd.ms-PrintSchemaTicket+xml,
|
374
|
-
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
375
|
-
model/vnd.rosette.annotated-data-model, and video/H265.
|
376
445
|
|
377
446
|
- Updated to [Contributor Covenant 1.4][code of conduct].
|
447
|
+
|
378
448
|
- Shift the support code in this repository to be developed with Ruby 2.3. This
|
379
449
|
involves:
|
380
450
|
|
@@ -396,81 +466,35 @@
|
|
396
466
|
- Updated the conversion and management utilities to work with ruby-mime-types
|
397
467
|
3.x.
|
398
468
|
|
399
|
-
- Updated the IANA media registry entries as of release date
|
400
|
-
|
401
|
-
- Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
402
|
-
|
403
|
-
- Added application/cdni, application/csvm+json, application/rfc+xml,
|
404
|
-
application/vnd.3gpp.access-transfer-events+xml,
|
405
|
-
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
406
|
-
application/vnd.ms-windows.devicepairing,
|
407
|
-
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
408
|
-
application/vnd.pagerduty+json, video/VP8.
|
469
|
+
- Updated the IANA media registry entries as of release date.
|
409
470
|
|
410
471
|
## 2.6.2 / 2015-09-13
|
411
472
|
|
412
|
-
- Updated the IANA media registry entries as of release date
|
413
|
-
|
414
|
-
- Updated metadata for application/cals-1840, application/index.obj,
|
415
|
-
application/ocsp-response, application/vnd.dtg.local.html,
|
416
|
-
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
417
|
-
|
418
|
-
- Added application/pkcs12, application/scim+json, multipart/form-data.
|
419
|
-
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
420
|
-
application/vnd.3gpp.mid-call+xml,
|
421
|
-
application/vnd.3gpp-state-and-event-info+xml, application.3gpp.ussd+xml,
|
422
|
-
application/vnd.anki, application/vnd.biopax.rdf+xml,
|
423
|
-
application/vnd.drive+json, application/vnd.firemonkeys.cloudcell,
|
424
|
-
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
425
|
-
application/vnd.openblox.game-binary, application/vnd.uri-map, audio/G711-0,
|
426
|
-
image/vnd.mozilla.apng.
|
473
|
+
- Updated the IANA media registry entries as of release date.
|
427
474
|
|
428
475
|
## 2.6 / 2015-05-25
|
429
476
|
|
430
477
|
- Steven Michael Thomas
|
431
478
|
([@stevenmichaelthomas](https://github.com/stevenmichaelthomas)) added `woff2`
|
432
|
-
as an extension to application/font-woff
|
479
|
+
as an extension to `application/font-woff`,
|
433
480
|
[ruby-mime-types#99][ruby-mime-types#99].
|
434
|
-
- Updated the IANA media registry entries as of release date
|
435
|
-
- Updated metadata for application/jose, application/jose+json,
|
436
|
-
application/jwk+json, application/jwk-set+json, application/jwt to reflect
|
437
|
-
the adoption of RFC7519.
|
438
|
-
- Added application/vnd.balsamiq.bmpr.
|
481
|
+
- Updated the IANA media registry entries as of release date.
|
439
482
|
|
440
483
|
## 2.5 / 2015-04-25
|
441
484
|
|
442
|
-
- Updated the IANA media registry entries as of release date
|
443
|
-
|
444
|
-
application/ATXML, application/CDFX+XML, application/CEA, application/DII,
|
445
|
-
application/DIT, application/jose, application/jose+json,
|
446
|
-
application/json-seq, application/jwk+json, application/jwk-set+json,
|
447
|
-
application/jwt, application/LXF, application/MF4, application/rdap+json,
|
448
|
-
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
449
|
-
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
450
|
-
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
451
|
-
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
452
|
-
application/vnd.gov.sk.e-form+zip,
|
453
|
-
application/vnd.gov.sk.xmldatacontainer+xml, application/vnd.ims.imsccv1p1,
|
454
|
-
application/vnd.ims.imsccv1p2, application/vnd.ims.imsccv1p3,
|
455
|
-
application/vnd.micro+json, application/vnd.microsoft.portable-executable,
|
456
|
-
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
457
|
-
application/vnd.tmd.mediaflex.api+xml, audio/opus, image/vnd.zbrush.pcx,
|
458
|
-
text/csv-schema, text/markdown (marked as TEMPORARY).
|
459
|
-
- Updated metadata for application/coap-group+json (RFC7390),
|
460
|
-
application/epub+zip (now registered), application/merge-patch+json
|
461
|
-
(RFC7396), application/smil, application/vnd.arastra.swi,
|
462
|
-
application/vnd.geocube+xml, application/vnd.gmx, application/xhtml+xml,
|
463
|
-
text/directory.
|
485
|
+
- Updated the IANA media registry entries as of release date.
|
486
|
+
|
464
487
|
- Andy Brody ([@ab](https://github.com/ab)) fixed a pair of embarrassing typos
|
465
|
-
in text/csv and text/tab-separated-values
|
488
|
+
in `text/csv` and `text/tab-separated-values`,
|
466
489
|
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
490
|
+
|
467
491
|
- Aggelos Avgerinos ([@eavgerinos](https://github.com/eavgerinos)) added the
|
468
|
-
unregistered MIME type image/x-ms-bmp with the extension `bmp`,
|
492
|
+
unregistered MIME type `image/x-ms-bmp` with the extension `bmp`,
|
469
493
|
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
470
494
|
|
471
495
|
## 2.4.2 / 2014-10-15
|
472
496
|
|
473
|
-
- Added application/vnd.ms-outlook as an unregistered MIME type with the
|
497
|
+
- Added `application/vnd.ms-outlook` as an unregistered MIME type with the
|
474
498
|
extension `msg`. Provided by [@keerthisiv](https://github.com/keerthisiv) in
|
475
499
|
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
476
500
|
|
@@ -479,97 +503,29 @@
|
|
479
503
|
- Changed the sort order of many of the extensions to restore behaviour from
|
480
504
|
mime-types 1.25.1.
|
481
505
|
- Added `friendly` MIME::Type descriptions where known.
|
482
|
-
- Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
483
|
-
application/x-msdownload
|
506
|
+
- Added `reg`, `ps1`, and `vbs` extensions to `application/x-msdos-program` and
|
507
|
+
`application/x-msdownload`.
|
484
508
|
- Updated the IANA media registry entries as of release date.
|
485
|
-
- Several MIME types had updated metadata (application/alto-\*, RFC7285;
|
486
|
-
application/calendar+json, RFC7265; application/http, RFC7230;
|
487
|
-
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
488
|
-
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
489
|
-
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges, RFC7233;
|
490
|
-
text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
491
|
-
- MIME::Type application/EDI-Consent was renamed to application/EDI-consent.
|
492
|
-
- Obsoleted application/vnd.informix-visionary in favour of
|
493
|
-
application/vnd.visionary. Obsoleted
|
494
|
-
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
495
|
-
- Added MIME types: application/ATF, application/coap-group+json,
|
496
|
-
application/DCD, application/merge-patch+json, application/scaip+xml,
|
497
|
-
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
498
|
-
application/vnd.doremir.scorecloud-binary-document, application/vnd.dzr,
|
499
|
-
application/vnd.maxmind.maxmind-db,
|
500
|
-
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
501
|
-
image/vnd.tencent.tap.
|
502
509
|
|
503
510
|
## 2.3 / 2014-05-23
|
504
511
|
|
505
512
|
- Updated the IANA media registry entries as of release date.
|
506
|
-
- Several MIME types had additional metadata added on the most recent import.
|
507
|
-
- MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
508
|
-
- Added MIME types: application/3gpdash-qoe-report+xml,
|
509
|
-
application/alto-costmap+json, application/alto-costmapfilter+json,
|
510
|
-
application/alto-directory+json, application/alto-endpointcost+json,
|
511
|
-
application/alto-endpointcostparams+json,
|
512
|
-
application/alto-endpointprop+json,
|
513
|
-
application/alto-endpointpropparams+json, application/alto-error+json,
|
514
|
-
application/alto-networkmap+json, application/alto-networkmapfilter+json,
|
515
|
-
application/calendar+json, application/vnd.debian.binary-package,
|
516
|
-
application/vnd.geo+json, application/vnd.ims.lis.v2.result+json,
|
517
|
-
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
518
|
-
application/vnd.ims.lti.v2.toolproxy+json,
|
519
|
-
application/vnd.ims.lti.v2.toolproxy.id+json,
|
520
|
-
application/vnd.ims.lti.v2.toolsettings+json,
|
521
|
-
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
522
|
-
application/vnd.mason+json, application/vnd.miele+json,
|
523
|
-
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
524
|
-
application/vnd.valve.source.material, application/vnd.yaoweme, audio/aptx,
|
525
|
-
image/vnd.valve.source.texture, model/vnd.opengex,
|
526
|
-
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
527
|
-
text/cache-manifest
|
528
513
|
|
529
514
|
## 2.2 / 2014-03-14
|
530
515
|
|
531
|
-
- Added
|
532
|
-
|
516
|
+
- Added `.sj` to `application/javascript` as provided by Brandon Galbraith
|
517
|
+
([@brandongalbraith](https://github.com/brandongalbraith)) in
|
533
518
|
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
534
|
-
|
535
|
-
|
519
|
+
|
520
|
+
- Marked `application/excel` and `application/x-excel` as obsolete in favour of
|
521
|
+
`application/vnd.ms-excel` per
|
536
522
|
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
523
|
+
|
537
524
|
- Merged duplicate MIME types into the registered MIME type. The only difference
|
538
525
|
between the MIME types was capitalization; the MIME type registry is
|
539
526
|
case-preserving.
|
540
527
|
|
541
|
-
- Affected MIME types: application/vnd.3M.Post-it-Notes,
|
542
|
-
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
543
|
-
application/vnd.hp-HPGL, application/vnd.hp-PCL, application/vnd.hp-PCLXL,
|
544
|
-
application/vnd.ibm.MiniPay, application/vnd.Kinar, application/vnd.MFER,
|
545
|
-
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
546
|
-
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
547
|
-
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
548
|
-
application/vnd.Mobius.TXF, application/vnd.ms-excel.addin.macroEnabled.12,
|
549
|
-
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
550
|
-
application/vnd.ms-excel.sheet.macroEnabled.12,
|
551
|
-
application/vnd.ms-excel.template.macroEnabled.12,
|
552
|
-
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
553
|
-
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
554
|
-
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
555
|
-
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
556
|
-
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
557
|
-
application/vnd.ms-word.document.macroEnabled.12,
|
558
|
-
application/vnd.ms-word.template.macroEnabled.12,
|
559
|
-
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
560
|
-
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
561
|
-
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261, video/H263,
|
562
|
-
video/H264, video/JPEG, video/MJ2.
|
563
|
-
|
564
528
|
- Updated the IANA media registry entries as of release date.
|
565
|
-
- Registered type person names have been updated from surname only to full
|
566
|
-
name.
|
567
|
-
- Several types had updated RFC or draft RFC references.
|
568
|
-
- Added application/bacnet-xdd+zip, application/cms,
|
569
|
-
application/load-control+xml, application/PDX, application/ttml+xml,
|
570
|
-
application/vnd.collection.doc+json,
|
571
|
-
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
572
|
-
text/parameters, text/vnd.a, video/iso.segment
|
573
529
|
|
574
530
|
## 2.1 / 2014-01-25
|
575
531
|
|
@@ -580,88 +536,16 @@
|
|
580
536
|
- MIME types having a publicly available registry application now include a
|
581
537
|
link to that file in references.
|
582
538
|
- Added `xrefs` data as discovered (see the API changes noted above).
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
application/vnd.oma.cab-feature-handler+xml, application/vnd.openeye.oeb,
|
591
|
-
application/vnd.tcpdump.pcap, audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
592
|
-
- Added 180 unregistered MIME types from the Apache list:
|
593
|
-
- application/applixware, application/cu-seeme, application/docbook+xml,
|
594
|
-
application/gml+xml, application/gpx+xml, application/gxf,
|
595
|
-
application/java-archive, application/java-serialized-object,
|
596
|
-
application/java-vm, application/jsonml+json, application/metalink+xml,
|
597
|
-
application/omdoc+xml, application/onenote, application/pics-rules,
|
598
|
-
application/rsd+xml, application/ssdl+xml, application/vnd.3m.post-it-notes,
|
599
|
-
application/vnd.amazon.ebook,
|
600
|
-
application/vnd.anser-web-funds-transfer-initiation,
|
601
|
-
application/vnd.curl.car, application/vnd.curl.pcurl,
|
602
|
-
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
603
|
-
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
604
|
-
application/vnd.hp-hpgl, application/vnd.hp-pcl, application/vnd.hp-pclxl,
|
605
|
-
application/vnd.ibm.minipay, application/vnd.kinar, application/vnd.mfer,
|
606
|
-
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
607
|
-
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
608
|
-
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
609
|
-
application/vnd.mobius.txf, application/vnd.ms-excel.addin.macroenabled.12,
|
610
|
-
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
611
|
-
application/vnd.ms-excel.sheet.macroenabled.12,
|
612
|
-
application/vnd.ms-excel.template.macroenabled.12,
|
613
|
-
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
614
|
-
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
615
|
-
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
616
|
-
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
617
|
-
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
618
|
-
application/vnd.ms-powerpoint.template.macroenabled.12,
|
619
|
-
application/vnd.ms-word.document.macroenabled.12,
|
620
|
-
application/vnd.ms-word.template.macroenabled.12,
|
621
|
-
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
622
|
-
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
623
|
-
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
624
|
-
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
625
|
-
application/winhlp, application/x-abiword, application/x-ace-compressed,
|
626
|
-
application/x-authorware-bin, application/x-authorware-map,
|
627
|
-
application/x-authorware-seg, application/x-bittorrent, application/x-blorb,
|
628
|
-
application/x-bzip, application/x-cbr, application/x-cfs-compressed,
|
629
|
-
application/x-chat, application/x-conference, application/x-dgc-compressed,
|
630
|
-
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
631
|
-
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
632
|
-
application/x-font-bdf, application/x-font-ghostscript,
|
633
|
-
application/x-font-linux-psf, application/x-font-otf,
|
634
|
-
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
635
|
-
application/x-font-type1, application/x-freearc,
|
636
|
-
application/x-gca-compressed, application/x-glulx, application/x-gnumeric,
|
637
|
-
application/x-gramps-xml, application/x-install-instructions,
|
638
|
-
application/x-iso9660-image, application/x-lzh-compressed,
|
639
|
-
application/x-mie, application/x-ms-application, application/x-ms-shortcut,
|
640
|
-
application/x-ms-xbap, application/x-msbinder, application/x-mscardfile,
|
641
|
-
application/x-msclip, application/x-msmediaview, application/x-msmetafile,
|
642
|
-
application/x-msmoney, application/x-mspublisher, application/x-msschedule,
|
643
|
-
application/x-msterminal, application/x-mswrite, application/x-nzb,
|
644
|
-
application/x-pkcs12, application/x-pkcs7-certificates,
|
645
|
-
application/x-pkcs7-certreqresp, application/x-research-info-systems,
|
646
|
-
application/x-silverlight-app, application/x-sql, application/x-stuffitx,
|
647
|
-
application/x-subrip, application/x-t3vm-image, application/x-tads,
|
648
|
-
application/x-tex-tfm, application/x-tgif, application/x-xfig,
|
649
|
-
application/x-xliff+xml, application/x-xz, application/x-zmachine,
|
650
|
-
application/xaml+xml, application/xproc+xml, application/xspf+xml,
|
651
|
-
audio/adpcm, audio/amr-wb, audio/AMR-WB, audio/midi, audio/s3m, audio/silk,
|
652
|
-
audio/x-caf, audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
653
|
-
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
654
|
-
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds, image/x-cmx,
|
655
|
-
image/x-freehand, image/x-icon, image/x-mrsid-image, image/x-pcx,
|
656
|
-
image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
657
|
-
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl, text/x-asm,
|
658
|
-
text/x-c, text/x-fortran, text/x-java-source, text/x-nfo, text/x-opml,
|
659
|
-
text/x-pascal, text/x-sfv, text/x-uuencode, video/h261, video/h263,
|
660
|
-
video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v, video/x-m4v,
|
661
|
-
video/x-mng, video/x-ms-vob, video/x-smv
|
662
|
-
- Merged the non-standard VMS platform text/plain with the standard text/plain.
|
539
|
+
|
540
|
+
- The Apache httpd mime types configuration has been added to track additional
|
541
|
+
common but unregistered MIME types and known extensions for those MIME types.
|
542
|
+
This has affected many of the available MIME types.
|
543
|
+
|
544
|
+
- Merged the non-standard VMS platform `text/plain` with the standard
|
545
|
+
`text/plain`.
|
663
546
|
|
664
547
|
[code of conduct]: CODE_OF_CONDUCT.md
|
548
|
+
[httpd]: https://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
|
665
549
|
[issue-18]: https://github.com/mime-types/mime-types-data/issues/18
|
666
550
|
[issue-22]: https://github.com/mime-types/mime-types-data/issues/22
|
667
551
|
[issue-32]: https://github.com/mime-types/mime-types-data/issues/32
|
@@ -669,6 +553,8 @@
|
|
669
553
|
[issue-54]: https://github.com/mime-types/mime-types-data/issues/54
|
670
554
|
[issue-55]: https://github.com/mime-types/mime-types-data/issues/55
|
671
555
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
556
|
+
[provisional]: https://www.iana.org/assignments/provisional-standard-media-types/provisional-standard-media-types.xml
|
557
|
+
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
672
558
|
[pull-109]: https://github.com/mime-types/mime-types-data/pull/109
|
673
559
|
[pull-10]: https://github.com/mime-types/mime-types-data/pull/10
|
674
560
|
[pull-11]: https://github.com/mime-types/mime-types-data/pull/11
|
@@ -698,7 +584,9 @@
|
|
698
584
|
[pull-81]: https://github.com/mime-types/mime-types-data/pull/81
|
699
585
|
[pull-96]: https://github.com/mime-types/mime-types-data/pull/96
|
700
586
|
[pull-98]: https://github.com/mime-types/mime-types-data/pull/98
|
587
|
+
[registry]: https://www.iana.org/assignments/media-types/media-types.xml
|
701
588
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
702
589
|
[ruby-mime-types#163]: https://github.com/mime-types/ruby-mime-types/issues/163
|
703
590
|
[ruby-mime-types#99]: https://github.com/mime-types/ruby-mime-types/pull/99
|
591
|
+
[tika]: https://github.com/apache/tika/blob/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
|
704
592
|
[tp]: https://guides.rubygems.org/trusted-publishing/
|