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