mime-types-data 3.2023.0218.1 → 3.2024.0604
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/History.md +207 -172
- data/Rakefile +33 -19
- data/data/content_type_mime.db +2 -0
- data/data/ext_mime.db +4 -0
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +102 -3
- data/data/mime.docs.column +99 -0
- data/data/mime.encoding.column +99 -0
- data/data/mime.flags.column +101 -2
- data/data/mime.friendly.column +99 -0
- data/data/mime.pext.column +99 -0
- data/data/mime.use_instead.column +100 -1
- data/data/mime.xrefs.column +150 -51
- data/lib/mime/types/data.rb +1 -1
- data/types/application.yaml +746 -30
- data/types/audio.yaml +34 -7
- data/types/image.yaml +43 -19
- data/types/message.yaml +27 -0
- data/types/model.yaml +9 -0
- data/types/text.yaml +58 -0
- data/types/video.yaml +31 -5
- metadata +32 -45
data/History.md
CHANGED
|
@@ -2,14 +2,67 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- automatic-release -->
|
|
4
4
|
|
|
5
|
+
## 3.2024.0604 / 2024-06-04
|
|
6
|
+
|
|
7
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
8
|
+
|
|
9
|
+
- Internal changes:
|
|
10
|
+
|
|
11
|
+
- Update to latest version of Rubygems for testing.
|
|
12
|
+
|
|
13
|
+
- Remove restriction on Pysch version as that does not work well with current
|
|
14
|
+
Rubies.
|
|
15
|
+
|
|
16
|
+
- Fix a bug with the history generation on automatic updates.
|
|
17
|
+
|
|
18
|
+
## 3.2024.0507 / 2024-05-07
|
|
19
|
+
|
|
20
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
21
|
+
|
|
22
|
+
## 3.2024.0402 / 2024-04-02
|
|
23
|
+
|
|
24
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
25
|
+
|
|
26
|
+
## 3.2024.0305 / 2024-03-05
|
|
27
|
+
|
|
28
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
29
|
+
|
|
30
|
+
## 3.2024.0206 / 2024-02-06
|
|
31
|
+
|
|
32
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
33
|
+
|
|
34
|
+
## 3.2024.0102 / 2024-01-02
|
|
35
|
+
|
|
36
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
37
|
+
|
|
38
|
+
## 3.2023.1205 / 2023-12-05
|
|
39
|
+
|
|
40
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
41
|
+
|
|
42
|
+
## 3.2023.1107 / 2023-11-07
|
|
43
|
+
|
|
44
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
45
|
+
|
|
46
|
+
## 3.2023.1003 / 2023-10-03
|
|
47
|
+
|
|
48
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
49
|
+
|
|
50
|
+
## 3.2023.0905 / 2023-09-05
|
|
51
|
+
|
|
52
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
53
|
+
|
|
54
|
+
## 3.2023.0808 / 2023-08-08
|
|
55
|
+
|
|
56
|
+
- Updated the Apache and IANA media registry entries as of release date
|
|
57
|
+
|
|
5
58
|
## 3.2023.0218.1 / 2023-02-18
|
|
6
59
|
|
|
7
60
|
- When this data library was created in 2015, I made the decision based on
|
|
8
61
|
information available to deprecate `text/javascript` in favour of
|
|
9
62
|
`application/javascript`. Since the previous update (2022-01-05), IANA has
|
|
10
|
-
officially deprecated `application/javascript` in favour of
|
|
11
|
-
|
|
12
|
-
|
|
63
|
+
officially deprecated `application/javascript` in favour of `text/javascript`.
|
|
64
|
+
Samuel Williams discovered this in [#55][#55] by noting that all `js` types
|
|
65
|
+
were marked obsolete in version 3.2023.0218.
|
|
13
66
|
|
|
14
67
|
A hotfix has been applied to resolve this. However, note that
|
|
15
68
|
`application/javascript` will not be returned by default, only
|
|
@@ -20,44 +73,44 @@
|
|
|
20
73
|
- Updated the Apache and IANA media registry entries as of release date.
|
|
21
74
|
|
|
22
75
|
- Mohammed Gad added the `jfif` file extension for `image/jpeg` text format.
|
|
23
|
-
[#52][]
|
|
76
|
+
[#52][#52]
|
|
24
77
|
|
|
25
|
-
- Reworked the loading of IANA provisional media registries to merge them
|
|
26
|
-
|
|
27
|
-
|
|
78
|
+
- Reworked the loading of IANA provisional media registries to merge them into
|
|
79
|
+
the top-level media-type registries instead of a standalone registry file.
|
|
80
|
+
[#53][#53] originally identified by Chris Salzberg in [#50][#50].
|
|
28
81
|
|
|
29
|
-
It is worth noting that this is an _imperfect_ solution as if a media type
|
|
30
|
-
|
|
31
|
-
|
|
82
|
+
It is worth noting that this is an _imperfect_ solution as if a media type is
|
|
83
|
+
provisionally registered and withdrawn, it will linger in the registry with no
|
|
84
|
+
clean way of identifying them at the moment. See [#54][#54].
|
|
32
85
|
|
|
33
|
-
This release also fixes [ruby-mime-types#163][], where logs
|
|
34
|
-
application/netcdf is already registered as a variant of
|
|
86
|
+
This release also fixes [ruby-mime-types#163][ruby-mime-types#163], where logs
|
|
87
|
+
show "Type application/netcdf is already registered as a variant of
|
|
35
88
|
application/netcdf".
|
|
36
89
|
|
|
37
90
|
## 3.2022.0105 / 2022-01-05
|
|
38
91
|
|
|
39
92
|
- Updated the Apache and IANA media registry entries as of release date.
|
|
40
93
|
|
|
41
|
-
- Fixed an incorrect definition of `image/bmp`, which had been marked
|
|
42
|
-
|
|
94
|
+
- Fixed an incorrect definition of `image/bmp`, which had been marked obsolete
|
|
95
|
+
and later registered. Fixed [#48][#48], found by William T. Nelson.
|
|
43
96
|
|
|
44
97
|
## 3.2021.1115 / 2021-11-15
|
|
45
98
|
|
|
46
99
|
- Updated the Apache and IANA media registry entries as of release date.
|
|
47
100
|
|
|
48
101
|
- Added conversion utilities that support the `mini_mime` data format. These
|
|
49
|
-
have been ported from the [mini_mime][] repository. [#47][]
|
|
102
|
+
have been ported from the [mini_mime][mini_mime] repository. [#47][#47]
|
|
50
103
|
|
|
51
|
-
- Added IANA provisional media registries. Added some notes to
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
[#
|
|
104
|
+
- Added IANA provisional media registries. Added some notes to Contributing.md
|
|
105
|
+
about the transient nature of the provisional registration data. This was
|
|
106
|
+
triggered in part by a pull request by Jon Sneyers. Thanks! [#45][#45],
|
|
107
|
+
[#43][#43]
|
|
55
108
|
|
|
56
109
|
## 3.2021.0901 / 2021-09-01
|
|
57
110
|
|
|
58
111
|
- Updated the Apache and IANA media registry entries as of release date.
|
|
59
112
|
|
|
60
|
-
- Added file extension for WebVTT text format. [#46][]
|
|
113
|
+
- Added file extension for WebVTT text format. [#46][#46]
|
|
61
114
|
|
|
62
115
|
## 3.2021.0704 / 2021-07-04
|
|
63
116
|
|
|
@@ -67,94 +120,94 @@
|
|
|
67
120
|
|
|
68
121
|
- Updated the Apache and IANA media registry entries as of release date.
|
|
69
122
|
|
|
70
|
-
- Added file extension for AVIF video format. [#40][]
|
|
123
|
+
- Added file extension for AVIF video format. [#40][#40]
|
|
71
124
|
|
|
72
125
|
## 3.2021.0212 / 2021-02-12
|
|
73
126
|
|
|
74
127
|
- Updated the IANA media registry entries as of release date.
|
|
75
128
|
|
|
76
|
-
- Added a new rake task (`release:automatic`) that downloads and converts
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
129
|
+
- Added a new rake task (`release:automatic`) that downloads and converts the
|
|
130
|
+
data from Apache and IANA; if there are changes detected, it updates the
|
|
131
|
+
release version, changelog, manifest, and gemspec and commits the changes to
|
|
132
|
+
git.
|
|
80
133
|
|
|
81
134
|
## 3.2020.1104 / 2020-11-04
|
|
82
135
|
|
|
83
136
|
- Updated the IANA media registry entries as of release date.
|
|
84
137
|
|
|
85
|
-
- Added `application/x-zip-compressed`. [#36][]
|
|
138
|
+
- Added `application/x-zip-compressed`. [#36][#36]
|
|
86
139
|
|
|
87
140
|
- Updated the contributing guide to include information about the release
|
|
88
|
-
process as described in [#18][]
|
|
141
|
+
process as described in [#18][#18]
|
|
89
142
|
|
|
90
|
-
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35][]
|
|
143
|
+
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35][#35]
|
|
91
144
|
|
|
92
145
|
## 3.2020.0512 / 2020-05-12
|
|
93
146
|
|
|
94
147
|
- Updated the IANA media registry entries as of release date.
|
|
95
148
|
|
|
96
|
-
- Added file extensions for HEIC image types. [#34][]
|
|
149
|
+
- Added file extensions for HEIC image types. [#34][#34]
|
|
97
150
|
|
|
98
151
|
## 3.2020.0425 / 2020-04-25
|
|
99
152
|
|
|
100
153
|
- Updated the IANA media registry entries as of release date.
|
|
101
154
|
|
|
102
155
|
- Added several RAW image types based on data from GNOME RAW Thumbnailer.
|
|
103
|
-
[#33][] fixing [#32][]
|
|
156
|
+
[#33][#33] fixing [#32][#32]
|
|
104
157
|
|
|
105
|
-
- Added `audio/wav`. [#31][]
|
|
158
|
+
- Added `audio/wav`. [#31][#31]
|
|
106
159
|
|
|
107
|
-
- Added a type for Smarttech notebook files. [#30][]
|
|
160
|
+
- Added a type for Smarttech notebook files. [#30][#30]
|
|
108
161
|
|
|
109
|
-
- Added an alias for audio/m4a files. [#29][]
|
|
162
|
+
- Added an alias for audio/m4a files. [#29][#29]
|
|
110
163
|
|
|
111
|
-
- Added application/x-ms-dos-executable. [#28][]
|
|
164
|
+
- Added application/x-ms-dos-executable. [#28][#28]
|
|
112
165
|
|
|
113
166
|
## 3.2019.1009 / 2019-10-09
|
|
114
167
|
|
|
115
168
|
- Updated the IANA media registry entries as of release date.
|
|
116
169
|
|
|
117
|
-
- Reordered the `.ai` extension so that it is not the preferred extension
|
|
118
|
-
|
|
170
|
+
- Reordered the `.ai` extension so that it is not the preferred extension for
|
|
171
|
+
`application/pdf` [#24][#24]
|
|
119
172
|
|
|
120
173
|
## 3.2019.0904 / 2019-09-04
|
|
121
174
|
|
|
122
175
|
- Updated the IANA media registry entries as of release date.
|
|
123
176
|
|
|
124
|
-
- Moved the `.ai` extension from `application/postscript` to
|
|
125
|
-
|
|
177
|
+
- Moved the `.ai` extension from `application/postscript` to `application/pdf`.
|
|
178
|
+
[#23][#23] fixing [#22][#22]
|
|
126
179
|
|
|
127
180
|
## 3.2019.0331 / 2019-03-31
|
|
128
181
|
|
|
129
182
|
- Updated the IANA media registry entries as of release date.
|
|
130
183
|
|
|
131
|
-
- Added support for `application/wasm` with extension `.wasm`. [#21][]
|
|
184
|
+
- Added support for `application/wasm` with extension `.wasm`. [#21][#21]
|
|
132
185
|
|
|
133
|
-
- Fixed `application/ecmascript` extensions. [#20][]
|
|
186
|
+
- Fixed `application/ecmascript` extensions. [#20][#20]
|
|
134
187
|
|
|
135
188
|
## 3.2018.0812 / 2018-08-12
|
|
136
189
|
|
|
137
|
-
- Added `.xsd` extension to `text/xml`. [#10][]
|
|
190
|
+
- Added `.xsd` extension to `text/xml`. [#10][#10]
|
|
138
191
|
|
|
139
|
-
- Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
|
140
|
-
|
|
192
|
+
- Added `.js` and `.mjs` extensions to `text/ecmascript` and `text/javascript`.
|
|
193
|
+
[#11][#11]
|
|
141
194
|
|
|
142
|
-
- Added `.ipa` extension to `application/octet-stream`. [#12][]
|
|
195
|
+
- Added `.ipa` extension to `application/octet-stream`. [#12][#12]
|
|
143
196
|
|
|
144
197
|
- Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
|
145
|
-
`text/markdown`. [#13][]
|
|
198
|
+
`text/markdown`. [#13][#13]
|
|
146
199
|
|
|
147
|
-
- Because of a bug found with mime-types 3 before 3.2.1, this version
|
|
148
|
-
|
|
200
|
+
- Because of a bug found with mime-types 3 before 3.2.1, this version requires
|
|
201
|
+
mime-types 3.1 or later to manage data.
|
|
149
202
|
|
|
150
|
-
- Updated the IANA media registry entries as of release date. The biggest
|
|
151
|
-
|
|
203
|
+
- Updated the IANA media registry entries as of release date. The biggest major
|
|
204
|
+
change here is the addition of the `font/` top-level media type.
|
|
152
205
|
|
|
153
206
|
- MIME type changes not introduced by pull requests will no longer be
|
|
154
207
|
individually tracked.
|
|
155
208
|
|
|
156
|
-
- Clarified that the YAML editable format is not shipped with the Ruby gem
|
|
157
|
-
|
|
209
|
+
- Clarified that the YAML editable format is not shipped with the Ruby gem for
|
|
210
|
+
size considerations.
|
|
158
211
|
|
|
159
212
|
## 3.2016.0521 / 2016-05-21
|
|
160
213
|
|
|
@@ -168,17 +221,17 @@
|
|
|
168
221
|
application/EmergencyCallData.DeviceInfo+xml,
|
|
169
222
|
application/EmergencyCallData.ProviderInfo+xml,
|
|
170
223
|
application/EmergencyCallData.ServiceInfo+xml,
|
|
171
|
-
application/EmergencyCallData.SubscriberInfo+xml,
|
|
172
|
-
application/
|
|
173
|
-
|
|
224
|
+
application/EmergencyCallData.SubscriberInfo+xml, application/ogg,
|
|
225
|
+
application/problem+json, application/problem+xml, audio/ogg, text/markdown,
|
|
226
|
+
video/H265, video/ogg.
|
|
174
227
|
- Added application/efi, application/vnd.3gpp.sms+xml,
|
|
175
228
|
application/vnd.3lightssoftware.imagescal,
|
|
176
229
|
application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
|
|
177
230
|
application/vnd.onepager, application/vnd.quarantainenet,
|
|
178
231
|
application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
|
|
179
|
-
- image/bmp has a draft RFC which would make it official; it has been
|
|
180
|
-
|
|
181
|
-
|
|
232
|
+
- image/bmp has a draft RFC which would make it official; it has been finally
|
|
233
|
+
been registered. As such, this version _reverses_ the use-instead
|
|
234
|
+
relationship of image/bmp and image/x-bmp.
|
|
182
235
|
|
|
183
236
|
- This version requires mime-types 3.1 or later to manage data because of an
|
|
184
237
|
issue with JSON data encoding for the `xrefs` field.
|
|
@@ -188,23 +241,23 @@
|
|
|
188
241
|
- Updated the known extensions list for audio/mp4.
|
|
189
242
|
- Updated the IANA media registry entries as of release date:
|
|
190
243
|
|
|
191
|
-
- Updated metadata for 3GPP-defined types (there are many),
|
|
192
|
-
|
|
244
|
+
- Updated metadata for 3GPP-defined types (there are many), application/cdni,
|
|
245
|
+
and application/rfc+xml.
|
|
193
246
|
- Added application/EmergencyCallData.Comment+xml,
|
|
194
247
|
application/EmergencyCallData.DeviceInfo+xml,
|
|
195
248
|
application/EmergencyCallData.ProviderInfo+xml,
|
|
196
249
|
application/EmergencyCallData.ServiceInfo+xml,
|
|
197
250
|
application/ppsp-tracker+json, application/problem+json,
|
|
198
|
-
application/problem+xml, application/vnd.filmit.zfc,
|
|
199
|
-
application/vnd.
|
|
251
|
+
application/problem+xml, application/vnd.filmit.zfc, application/vnd.hdt,
|
|
252
|
+
application/vnd.mapbox-vector-tile,
|
|
200
253
|
application/vnd.ms-PrintDeviceCapabilities+xml,
|
|
201
254
|
application/vnd.ms-PrintSchemaTicket+xml,
|
|
202
255
|
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
|
203
256
|
model/vnd.rosette.annotated-data-model, and video/H265.
|
|
204
257
|
|
|
205
258
|
- Updated to [Contributor Covenant 1.4][code of conduct].
|
|
206
|
-
- Shift the support code in this repository to be developed with Ruby 2.3.
|
|
207
|
-
|
|
259
|
+
- Shift the support code in this repository to be developed with Ruby 2.3. This
|
|
260
|
+
involves:
|
|
208
261
|
|
|
209
262
|
- Adding `frozen_string_literal: true` to all Ruby files.
|
|
210
263
|
- Applied some recommended readability and performance suggestions from
|
|
@@ -215,15 +268,14 @@
|
|
|
215
268
|
|
|
216
269
|
- Extracted from [ruby-mime-types][rmt].
|
|
217
270
|
- Added a [Code of Conduct].
|
|
218
|
-
- The versioning has changed to be semantic on format plus date in two
|
|
219
|
-
parts.
|
|
271
|
+
- The versioning has changed to be semantic on format plus date in two parts.
|
|
220
272
|
|
|
221
273
|
- All registry formats have been updated to remove deprecated data.
|
|
222
274
|
- The columnar format has been updated to store three boolean flags in a
|
|
223
275
|
single flags file.
|
|
224
276
|
|
|
225
|
-
- Updated the conversion and management utilities to work with
|
|
226
|
-
|
|
277
|
+
- Updated the conversion and management utilities to work with ruby-mime-types
|
|
278
|
+
3.x.
|
|
227
279
|
|
|
228
280
|
- Updated the IANA media registry entries as of release date:
|
|
229
281
|
|
|
@@ -247,51 +299,47 @@
|
|
|
247
299
|
- Added application/pkcs12, application/scim+json, multipart/form-data.
|
|
248
300
|
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
|
249
301
|
application/vnd.3gpp.mid-call+xml,
|
|
250
|
-
application/vnd.3gpp-state-and-event-info+xml,
|
|
251
|
-
application.
|
|
252
|
-
application/vnd.
|
|
253
|
-
application/vnd.firemonkeys.cloudcell,
|
|
302
|
+
application/vnd.3gpp-state-and-event-info+xml, application.3gpp.ussd+xml,
|
|
303
|
+
application/vnd.anki, application/vnd.biopax.rdf+xml,
|
|
304
|
+
application/vnd.drive+json, application/vnd.firemonkeys.cloudcell,
|
|
254
305
|
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
|
255
|
-
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
|
256
|
-
|
|
306
|
+
application/vnd.openblox.game-binary, application/vnd.uri-map, audio/G711-0,
|
|
307
|
+
image/vnd.mozilla.apng.
|
|
257
308
|
|
|
258
309
|
## 2.6 / 2015-05-25
|
|
259
310
|
|
|
260
|
-
- Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
|
261
|
-
|
|
311
|
+
- Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension to
|
|
312
|
+
application/font-woff, [ruby-mime-types#99][ruby-mime-types#99].
|
|
262
313
|
- Updated the IANA media registry entries as of release date:
|
|
263
314
|
- Updated metadata for application/jose, application/jose+json,
|
|
264
|
-
application/jwk+json, application/jwk-set+json, application/jwt to
|
|
265
|
-
|
|
315
|
+
application/jwk+json, application/jwk-set+json, application/jwt to reflect
|
|
316
|
+
the adoption of RFC7519.
|
|
266
317
|
- Added application/vnd.balsamiq.bmpr.
|
|
267
318
|
|
|
268
319
|
## 2.5 / 2015-04-25
|
|
269
320
|
|
|
270
321
|
- Updated the IANA media registry entries as of release date:
|
|
271
322
|
- Added MIME types: application/A2L, application/AML, application/ATFX,
|
|
272
|
-
application/ATXML, application/CDFX+XML, application/CEA,
|
|
273
|
-
application/
|
|
274
|
-
application/
|
|
275
|
-
application/
|
|
276
|
-
application/MF4, application/rdap+json,
|
|
323
|
+
application/ATXML, application/CDFX+XML, application/CEA, application/DII,
|
|
324
|
+
application/DIT, application/jose, application/jose+json,
|
|
325
|
+
application/json-seq, application/jwk+json, application/jwk-set+json,
|
|
326
|
+
application/jwt, application/LXF, application/MF4, application/rdap+json,
|
|
277
327
|
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
|
278
328
|
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
|
279
329
|
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
|
280
330
|
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
|
281
331
|
application/vnd.gov.sk.e-form+zip,
|
|
282
|
-
application/vnd.gov.sk.xmldatacontainer+xml,
|
|
283
|
-
application/vnd.ims.
|
|
284
|
-
application/vnd.
|
|
285
|
-
application/vnd.microsoft.portable-executable,
|
|
332
|
+
application/vnd.gov.sk.xmldatacontainer+xml, application/vnd.ims.imsccv1p1,
|
|
333
|
+
application/vnd.ims.imsccv1p2, application/vnd.ims.imsccv1p3,
|
|
334
|
+
application/vnd.micro+json, application/vnd.microsoft.portable-executable,
|
|
286
335
|
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
|
287
|
-
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
|
288
|
-
|
|
289
|
-
TEMPORARY).
|
|
336
|
+
application/vnd.tmd.mediaflex.api+xml, audio/opus, image/vnd.zbrush.pcx,
|
|
337
|
+
text/csv-schema, text/markdown (marked as TEMPORARY).
|
|
290
338
|
- Updated metadata for application/coap-group+json (RFC7390),
|
|
291
339
|
application/epub+zip (now registered), application/merge-patch+json
|
|
292
340
|
(RFC7396), application/smil, application/vnd.arastra.swi,
|
|
293
|
-
application/vnd.geocube+xml, application/vnd.gmx,
|
|
294
|
-
|
|
341
|
+
application/vnd.geocube+xml, application/vnd.gmx, application/xhtml+xml,
|
|
342
|
+
text/directory.
|
|
295
343
|
- Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
|
296
344
|
text/tab-separated-values,
|
|
297
345
|
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
|
@@ -317,26 +365,24 @@
|
|
|
317
365
|
application/calendar+json, RFC7265; application/http, RFC7230;
|
|
318
366
|
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
|
319
367
|
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
|
320
|
-
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
|
321
|
-
|
|
322
|
-
- MIME::Type application/EDI-Consent was renamed to
|
|
323
|
-
application/EDI-consent.
|
|
368
|
+
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges, RFC7233;
|
|
369
|
+
text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
|
370
|
+
- MIME::Type application/EDI-Consent was renamed to application/EDI-consent.
|
|
324
371
|
- Obsoleted application/vnd.informix-visionary in favour of
|
|
325
372
|
application/vnd.visionary. Obsoleted
|
|
326
373
|
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
|
327
374
|
- Added MIME types: application/ATF, application/coap-group+json,
|
|
328
375
|
application/DCD, application/merge-patch+json, application/scaip+xml,
|
|
329
376
|
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
|
330
|
-
application/vnd.doremir.scorecloud-binary-document,
|
|
331
|
-
application/vnd.
|
|
377
|
+
application/vnd.doremir.scorecloud-binary-document, application/vnd.dzr,
|
|
378
|
+
application/vnd.maxmind.maxmind-db,
|
|
332
379
|
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
|
333
380
|
image/vnd.tencent.tap.
|
|
334
381
|
|
|
335
382
|
## 2.3 / 2014-05-23
|
|
336
383
|
|
|
337
384
|
- Updated the IANA media registry entries as of release date.
|
|
338
|
-
- Several MIME types had additional metadata added on the most recent
|
|
339
|
-
import.
|
|
385
|
+
- Several MIME types had additional metadata added on the most recent import.
|
|
340
386
|
- MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
|
341
387
|
- Added MIME types: application/3gpdash-qoe-report+xml,
|
|
342
388
|
application/alto-costmap+json, application/alto-costmapfilter+json,
|
|
@@ -344,10 +390,9 @@
|
|
|
344
390
|
application/alto-endpointcostparams+json,
|
|
345
391
|
application/alto-endpointprop+json,
|
|
346
392
|
application/alto-endpointpropparams+json, application/alto-error+json,
|
|
347
|
-
application/alto-networkmap+json,
|
|
348
|
-
application/
|
|
349
|
-
application/vnd.
|
|
350
|
-
application/vnd.ims.lis.v2.result+json,
|
|
393
|
+
application/alto-networkmap+json, application/alto-networkmapfilter+json,
|
|
394
|
+
application/calendar+json, application/vnd.debian.binary-package,
|
|
395
|
+
application/vnd.geo+json, application/vnd.ims.lis.v2.result+json,
|
|
351
396
|
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
|
352
397
|
application/vnd.ims.lti.v2.toolproxy+json,
|
|
353
398
|
application/vnd.ims.lti.v2.toolproxy.id+json,
|
|
@@ -355,8 +400,8 @@
|
|
|
355
400
|
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
|
356
401
|
application/vnd.mason+json, application/vnd.miele+json,
|
|
357
402
|
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
|
358
|
-
application/vnd.valve.source.material, application/vnd.yaoweme,
|
|
359
|
-
|
|
403
|
+
application/vnd.valve.source.material, application/vnd.yaoweme, audio/aptx,
|
|
404
|
+
image/vnd.valve.source.texture, model/vnd.opengex,
|
|
360
405
|
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
|
361
406
|
text/cache-manifest
|
|
362
407
|
|
|
@@ -368,20 +413,18 @@
|
|
|
368
413
|
- Marked application/excel and application/x-excel as obsolete in favour of
|
|
369
414
|
application/vnd.ms-excel per
|
|
370
415
|
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
|
371
|
-
- Merged duplicate MIME types into the registered MIME type. The only
|
|
372
|
-
|
|
373
|
-
|
|
416
|
+
- Merged duplicate MIME types into the registered MIME type. The only difference
|
|
417
|
+
between the MIME types was capitalization; the MIME type registry is
|
|
418
|
+
case-preserving.
|
|
374
419
|
|
|
375
420
|
- Affected MIME types: application/vnd.3M.Post-it-Notes,
|
|
376
421
|
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
|
377
|
-
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
|
378
|
-
application/vnd.
|
|
379
|
-
application/vnd.Kinar, application/vnd.MFER,
|
|
422
|
+
application/vnd.hp-HPGL, application/vnd.hp-PCL, application/vnd.hp-PCLXL,
|
|
423
|
+
application/vnd.ibm.MiniPay, application/vnd.Kinar, application/vnd.MFER,
|
|
380
424
|
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
|
381
425
|
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
|
382
426
|
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
|
383
|
-
application/vnd.Mobius.TXF,
|
|
384
|
-
application/vnd.ms-excel.addin.macroEnabled.12,
|
|
427
|
+
application/vnd.Mobius.TXF, application/vnd.ms-excel.addin.macroEnabled.12,
|
|
385
428
|
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
|
386
429
|
application/vnd.ms-excel.sheet.macroEnabled.12,
|
|
387
430
|
application/vnd.ms-excel.template.macroEnabled.12,
|
|
@@ -394,12 +437,12 @@
|
|
|
394
437
|
application/vnd.ms-word.template.macroEnabled.12,
|
|
395
438
|
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
|
396
439
|
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
|
397
|
-
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
|
398
|
-
video/
|
|
440
|
+
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261, video/H263,
|
|
441
|
+
video/H264, video/JPEG, video/MJ2.
|
|
399
442
|
|
|
400
443
|
- Updated the IANA media registry entries as of release date.
|
|
401
|
-
- Registered type person names have been updated from surname only to
|
|
402
|
-
|
|
444
|
+
- Registered type person names have been updated from surname only to full
|
|
445
|
+
name.
|
|
403
446
|
- Several types had updated RFC or draft RFC references.
|
|
404
447
|
- Added application/bacnet-xdd+zip, application/cms,
|
|
405
448
|
application/load-control+xml, application/PDX, application/ttml+xml,
|
|
@@ -409,43 +452,40 @@
|
|
|
409
452
|
|
|
410
453
|
## 2.1 / 2014-01-25
|
|
411
454
|
|
|
412
|
-
- The IANA media type registry format changed, resulting in updates to most
|
|
413
|
-
|
|
414
|
-
- Many registered MIME types have had some metadata updates due to the
|
|
415
|
-
|
|
416
|
-
- MIME types having a publicly available registry application now
|
|
417
|
-
|
|
455
|
+
- The IANA media type registry format changed, resulting in updates to most of
|
|
456
|
+
the 1,427 registered MIME types.
|
|
457
|
+
- Many registered MIME types have had some metadata updates due to the change
|
|
458
|
+
in the IANA registry format.
|
|
459
|
+
- MIME types having a publicly available registry application now include a
|
|
460
|
+
link to that file in references.
|
|
418
461
|
- Added `xrefs` data as discovered (see the API changes noted above).
|
|
419
|
-
- The Apache mime types configuration has been added to track additional
|
|
420
|
-
|
|
421
|
-
|
|
462
|
+
- The Apache mime types configuration has been added to track additional common
|
|
463
|
+
but unregistered MIME types and known extensions for those MIME types. This
|
|
464
|
+
has affected many of the available MIME types.
|
|
422
465
|
- Added newly registered MIME types:
|
|
423
466
|
- application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
|
424
467
|
application/vcard+json, application/vnd.bekitzur-stech+json,
|
|
425
468
|
application/vnd.etsi.timestamp-token,
|
|
426
|
-
application/vnd.oma.cab-feature-handler+xml,
|
|
427
|
-
application/vnd.
|
|
428
|
-
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
|
469
|
+
application/vnd.oma.cab-feature-handler+xml, application/vnd.openeye.oeb,
|
|
470
|
+
application/vnd.tcpdump.pcap, audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
|
429
471
|
- Added 180 unregistered MIME types from the Apache list:
|
|
430
472
|
- application/applixware, application/cu-seeme, application/docbook+xml,
|
|
431
473
|
application/gml+xml, application/gpx+xml, application/gxf,
|
|
432
474
|
application/java-archive, application/java-serialized-object,
|
|
433
475
|
application/java-vm, application/jsonml+json, application/metalink+xml,
|
|
434
476
|
application/omdoc+xml, application/onenote, application/pics-rules,
|
|
435
|
-
application/rsd+xml, application/ssdl+xml,
|
|
436
|
-
application/vnd.
|
|
477
|
+
application/rsd+xml, application/ssdl+xml, application/vnd.3m.post-it-notes,
|
|
478
|
+
application/vnd.amazon.ebook,
|
|
437
479
|
application/vnd.anser-web-funds-transfer-initiation,
|
|
438
480
|
application/vnd.curl.car, application/vnd.curl.pcurl,
|
|
439
481
|
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
|
440
482
|
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
|
441
|
-
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
|
442
|
-
application/vnd.
|
|
443
|
-
application/vnd.kinar, application/vnd.mfer,
|
|
483
|
+
application/vnd.hp-hpgl, application/vnd.hp-pcl, application/vnd.hp-pclxl,
|
|
484
|
+
application/vnd.ibm.minipay, application/vnd.kinar, application/vnd.mfer,
|
|
444
485
|
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
|
445
486
|
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
|
446
487
|
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
|
447
|
-
application/vnd.mobius.txf,
|
|
448
|
-
application/vnd.ms-excel.addin.macroenabled.12,
|
|
488
|
+
application/vnd.mobius.txf, application/vnd.ms-excel.addin.macroenabled.12,
|
|
449
489
|
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
|
450
490
|
application/vnd.ms-excel.sheet.macroenabled.12,
|
|
451
491
|
application/vnd.ms-excel.template.macroenabled.12,
|
|
@@ -461,49 +501,44 @@
|
|
|
461
501
|
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
|
462
502
|
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
|
463
503
|
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
|
464
|
-
application/winhlp, application/x-abiword,
|
|
465
|
-
application/x-
|
|
466
|
-
application/x-authorware-
|
|
467
|
-
application/x-
|
|
468
|
-
application/x-
|
|
469
|
-
application/x-conference, application/x-dgc-compressed,
|
|
504
|
+
application/winhlp, application/x-abiword, application/x-ace-compressed,
|
|
505
|
+
application/x-authorware-bin, application/x-authorware-map,
|
|
506
|
+
application/x-authorware-seg, application/x-bittorrent, application/x-blorb,
|
|
507
|
+
application/x-bzip, application/x-cbr, application/x-cfs-compressed,
|
|
508
|
+
application/x-chat, application/x-conference, application/x-dgc-compressed,
|
|
470
509
|
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
|
471
510
|
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
|
472
511
|
application/x-font-bdf, application/x-font-ghostscript,
|
|
473
512
|
application/x-font-linux-psf, application/x-font-otf,
|
|
474
513
|
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
|
475
514
|
application/x-font-type1, application/x-freearc,
|
|
476
|
-
application/x-gca-compressed, application/x-glulx,
|
|
477
|
-
application/x-
|
|
478
|
-
application/x-
|
|
479
|
-
application/x-
|
|
480
|
-
application/x-ms-application, application/x-
|
|
481
|
-
application/x-
|
|
482
|
-
application/x-
|
|
483
|
-
application/x-
|
|
484
|
-
application/x-
|
|
485
|
-
application/x-
|
|
486
|
-
application/x-
|
|
487
|
-
application/x-
|
|
488
|
-
application/x-
|
|
489
|
-
application/x-
|
|
490
|
-
application/
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
|
494
|
-
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
|
495
|
-
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
|
515
|
+
application/x-gca-compressed, application/x-glulx, application/x-gnumeric,
|
|
516
|
+
application/x-gramps-xml, application/x-install-instructions,
|
|
517
|
+
application/x-iso9660-image, application/x-lzh-compressed,
|
|
518
|
+
application/x-mie, application/x-ms-application, application/x-ms-shortcut,
|
|
519
|
+
application/x-ms-xbap, application/x-msbinder, application/x-mscardfile,
|
|
520
|
+
application/x-msclip, application/x-msmediaview, application/x-msmetafile,
|
|
521
|
+
application/x-msmoney, application/x-mspublisher, application/x-msschedule,
|
|
522
|
+
application/x-msterminal, application/x-mswrite, application/x-nzb,
|
|
523
|
+
application/x-pkcs12, application/x-pkcs7-certificates,
|
|
524
|
+
application/x-pkcs7-certreqresp, application/x-research-info-systems,
|
|
525
|
+
application/x-silverlight-app, application/x-sql, application/x-stuffitx,
|
|
526
|
+
application/x-subrip, application/x-t3vm-image, application/x-tads,
|
|
527
|
+
application/x-tex-tfm, application/x-tgif, application/x-xfig,
|
|
528
|
+
application/x-xliff+xml, application/x-xz, application/x-zmachine,
|
|
529
|
+
application/xaml+xml, application/xproc+xml, application/xspf+xml,
|
|
530
|
+
audio/adpcm, audio/amr-wb, audio/AMR-WB, audio/midi, audio/s3m, audio/silk,
|
|
531
|
+
audio/x-caf, audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
|
496
532
|
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
|
497
|
-
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
|
498
|
-
image/x-
|
|
499
|
-
image/x-
|
|
500
|
-
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
|
501
|
-
text/x-
|
|
502
|
-
text/x-
|
|
503
|
-
video/
|
|
504
|
-
video/x-
|
|
505
|
-
- Merged the non-standard VMS platform text/plain with the standard
|
|
506
|
-
text/plain.
|
|
533
|
+
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds, image/x-cmx,
|
|
534
|
+
image/x-freehand, image/x-icon, image/x-mrsid-image, image/x-pcx,
|
|
535
|
+
image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
|
536
|
+
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl, text/x-asm,
|
|
537
|
+
text/x-c, text/x-fortran, text/x-java-source, text/x-nfo, text/x-opml,
|
|
538
|
+
text/x-pascal, text/x-sfv, text/x-uuencode, video/h261, video/h263,
|
|
539
|
+
video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v, video/x-m4v,
|
|
540
|
+
video/x-mng, video/x-ms-vob, video/x-smv
|
|
541
|
+
- Merged the non-standard VMS platform text/plain with the standard text/plain.
|
|
507
542
|
|
|
508
543
|
[#10]: https://github.com/mime-types/mime-types-data/pull/10
|
|
509
544
|
[#11]: https://github.com/mime-types/mime-types-data/pull/11
|