mime-types-data 3.2019.1009 → 3.2020.0425

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ab268c9e7eae2f7fe24c3077e6321378352b0f08ed551b763c9fb7b62ceac90b
4
- data.tar.gz: a2e83f711aa3b507d6f8c234f6df314a8ac2af1de56d3e09472b20ffb6a7ac75
3
+ metadata.gz: 5eedf9c35efa32e88cbe6d24befdc3abcb2cfeae6e95703be66c18f32486e930
4
+ data.tar.gz: ccae9e61b6aff790f0f5643ff16d36972966193a3f9243c49ff1164f877fa493
5
5
  SHA512:
6
- metadata.gz: b7bcc4350a6a413be78f2088b2d8cd5ef2930604dbd790f4d10f3ca2c820c1a033ca91f14afe4c4770dad5fd9ee07bb5ef59d295137a179ed972709aa459d6f3
7
- data.tar.gz: a1e7f9df4f13cca2c51b447f4c7f617abaf9f1641e869e6acf9e6c5986b00e6fe9417c12db06f279f731bcc319d9e936a1d87c75e587c962161766e730720ad5
6
+ metadata.gz: bfe69b9540aeb57f7cd5677d5e48b27c25ee22ae86e13d26f63754188e0e882e2ec9a0d72b844a0c27b6d454c745af455849837fa62a6aadfe3729944e8d2654
7
+ data.tar.gz: fd53274e636142e12a51e09d732c91f3159527c9daf0cd77f4a4f8bc6b0562df9ec6974f35f511c4698e265c967a43178ebd99026e59dd3f35b53f40453c3c87
@@ -14,21 +14,21 @@ identity and orientation.
14
14
  Examples of behavior that contributes to creating a positive environment
15
15
  include:
16
16
 
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
17
+ - Using welcoming and inclusive language
18
+ - Being respectful of differing viewpoints and experiences
19
+ - Gracefully accepting constructive criticism
20
+ - Focusing on what is best for the community
21
+ - Showing empathy towards other community members
22
22
 
23
23
  Examples of unacceptable behavior by participants include:
24
24
 
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
25
+ - The use of sexualized language or imagery and unwelcome sexual attention or
26
26
  advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
27
+ - Trolling, insulting/derogatory comments, and personal or political attacks
28
+ - Public or private harassment
29
+ - Publishing others' private information, such as a physical or electronic
30
30
  address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
31
+ - Other conduct which could reasonably be considered inappropriate in a
32
32
  professional setting
33
33
 
34
34
  ## Our Responsibilities
@@ -5,18 +5,18 @@ MIME type defintions, or additional code to help manage the MIME types. As with
5
5
  many of my projects, I have a few suggestions for improving the chance of
6
6
  acceptance of your code contributions:
7
7
 
8
- * The support files are written in Ruby and should remain in the coding style
8
+ - The support files are written in Ruby and should remain in the coding style
9
9
  that already exists, and I use hoe for releasing the mime-types-data RubyGem.
10
- * Use a thoughtfully-named topic branch that contains your change. Rebase your
10
+ - Use a thoughtfully-named topic branch that contains your change. Rebase your
11
11
  commits into logical chunks as necessary.
12
- * Use [quality commit messages][qcm].
13
- * Do not change the version number; when your patch is accepted and a release
12
+ - Use [quality commit messages][qcm].
13
+ - Do not change the version number; when your patch is accepted and a release
14
14
  is made, the version will be updated at that point.
15
- * Submit a GitHub pull request with your changes.
16
- * New or changed behaviours require new or updated documentation.
15
+ - Submit a GitHub pull request with your changes.
16
+ - New or changed behaviours require new or updated documentation.
17
17
 
18
18
  Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and
19
- the support files are written in Ruby, the *target* of mime-types-data is any
19
+ the support files are written in Ruby, the _target_ of mime-types-data is any
20
20
  implementation that wishes to use the data as a MIME types registry, so I am
21
21
  particularly interested in tools that will create a mime-types-data package for
22
22
  other languages.
@@ -34,19 +34,19 @@ New or modified MIME types should be edited in the appropriate YAML file under
34
34
  in `types/application.yml`.
35
35
 
36
36
  ```yaml
37
- - !ruby/object:MIME::Type
38
- content-type: application/xml
39
- encoding: 8bit
40
- extensions:
37
+ - !ruby/object:MIME::Type
38
+ content-type: application/xml
39
+ encoding: 8bit
40
+ extensions:
41
41
  - xml
42
42
  - xsl
43
- references:
43
+ references:
44
44
  - IANA
45
45
  - RFC3023
46
- xrefs: !ruby/hash:MIME::Types::Container
47
- rfc:
46
+ xrefs: !ruby/hash:MIME::Types::Container
47
+ rfc:
48
48
  - rfc3023
49
- registered: true
49
+ registered: true
50
50
  ```
51
51
 
52
52
  There are other fields that can be added, matching the fields discussed in the
@@ -105,58 +105,58 @@ You can run tests with code coverage analysis by running:
105
105
 
106
106
  Here's the most direct way to get your work merged into the project:
107
107
 
108
- * Fork the project.
109
- * Clone down your fork (`git clone
110
- git://github.com/<username>/mime-types-data.git`).
111
- * Create a topic branch to contain your change (`git checkout -b
112
- my\_awesome\_feature`).
113
- * Hack away, add tests. Not necessarily in that order.
114
- * Make sure everything still passes by running `rake`.
115
- * If necessary, rebase your commits into logical chunks, without errors.
116
- * Push the branch up (`git push origin my\_awesome\_feature`).
117
- * Create a pull request against mime-types/mime-types-data and describe what
108
+ - Fork the project.
109
+ - Clone down your fork (`git clone git://github.com/<username>/mime-types-data.git`).
110
+ - Create a topic branch to contain your change (`git checkout -b my\_awesome\_feature`).
111
+ - Hack away, add tests. Not necessarily in that order.
112
+ - Make sure everything still passes by running `rake`.
113
+ - If necessary, rebase your commits into logical chunks, without errors.
114
+ - Push the branch up (`git push origin my\_awesome\_feature`).
115
+ - Create a pull request against mime-types/mime-types-data and describe what
118
116
  your change does and the why you think it should be merged.
119
117
 
120
118
  ### Contributors
121
119
 
122
- * Austin Ziegler created mime-types.
120
+ - Austin Ziegler created mime-types.
123
121
 
124
122
  Thanks to everyone else who has contributed to mime-types:
125
123
 
126
- * Aaron Patterson
127
- * Aggelos Avgerinos
128
- * Andre Pankratz
129
- * Andrey Eremin
130
- * Andy Brody
131
- * Arnaud Meuret
132
- * Bradley Meck
133
- * Brandon Galbraith
134
- * Chris Gat
135
- * David Genord
136
- * Eric Marden
137
- * Garret Alfert
138
- * Godfrey Chan
139
- * Greg Brockman
140
- * Hans de Graaff
141
- * Henrik Hodne
142
- * Jeremy Evans
143
- * John Gardner
144
- * Juanito Fatas
145
- * Łukasz Śliwa
146
- * Keerthi Siva
147
- * Ken Ip
148
- * Martin d'Allens
149
- * Mauricio Linhares
150
- * nycvotes-dev
151
- * Postmodern
152
- * Richard Hirner
153
- * Richard Hurt
154
- * Richard Schneeman
155
- * Sergio Baptista
156
- * Tao Guo
157
- * Thomas Leese
158
- * Tibor Szolár
159
- * Todd Carrico
124
+ - Aaron Patterson
125
+ - Aggelos Avgerinos
126
+ - Alessio Parma
127
+ - Andre Pankratz
128
+ - Andrey Eremin
129
+ - Andy Brody
130
+ - Arnaud Meuret
131
+ - Bradley Meck
132
+ - Brandon Galbraith
133
+ - Chris Gat
134
+ - David Genord
135
+ - Eric Marden
136
+ - Garret Alfert
137
+ - Godfrey Chan
138
+ - Greg Brockman
139
+ - Hans de Graaff
140
+ - Henrik Hodne
141
+ - Jeremy Evans
142
+ - John Gardner
143
+ - Juanito Fatas
144
+ - Łukasz Śliwa
145
+ - Keerthi Siva
146
+ - Ken Ip
147
+ - Martin d'Allens
148
+ - Mauricio Linhares
149
+ - nycvotes-dev
150
+ - Postmodern
151
+ - Richard Hirner
152
+ - Richard Hurt
153
+ - Richard Schneeman
154
+ - Sergio Baptista
155
+ - Tao Guo
156
+ - Thomas Leese
157
+ - Tibor Szolár
158
+ - Todd Carrico
159
+ - Yoren Brondsema
160
160
 
161
161
  [qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
162
162
  [rmt]: https://github.com/mime-types/ruby-mime-types/
data/History.md CHANGED
@@ -1,397 +1,414 @@
1
1
  # MIME Types Changes by Version
2
2
 
3
+ ## 3.2020.04.25 / 2020-04-25
4
+
5
+ - Updated the IANA media registry entires as of release date.
6
+
7
+ - Added several RAW image types based on data from GNOME RAW Thumbnailer.
8
+ [#33][] fixing [#32][].
9
+
10
+ - Added `audio/wav`. [#31][].
11
+
12
+ - Added a type for Smarttech notebook files. [#30][].
13
+
14
+ - Added an alias for audio/m4a files. [#29][].
15
+
16
+ - Added application/x-ms-dos-executable. [#28][].
17
+
3
18
  ## 3.2019.10.09 / 2019-10-09
4
19
 
5
- * Updated the IANA media registry entries as of release date.
20
+ - Updated the IANA media registry entries as of release date.
6
21
 
7
- * Reordered the `.ai` extension so that it is not the preferred extension for
8
- `application/pdf` [#24][].
22
+ - Reordered the `.ai` extension so that it is not the preferred extension for
23
+ `application/pdf` [#24][].
9
24
 
10
25
  ## 3.2019.0904 / 2019-09-04
11
26
 
12
- * Updated the IANA media registry entries as of release date.
27
+ - Updated the IANA media registry entries as of release date.
13
28
 
14
- * Moved the `.ai` extension from `application/postscript` to `application/pdf`.
15
- [#23][] fixing [#22][].
29
+ - Moved the `.ai` extension from `application/postscript` to `application/pdf`.
30
+ [#23][] fixing [#22][].
16
31
 
17
32
  ## 3.2019.0331 / 2019-03-31
18
33
 
19
- * Updated the IANA media registry entries as of release date.
34
+ - Updated the IANA media registry entries as of release date.
20
35
 
21
- * Added support for `application/wasm` with extension `.wasm`. [#21][]
36
+ - Added support for `application/wasm` with extension `.wasm`. [#21][]
22
37
 
23
- * Fixed `application/ecmascript` extensions. [#20][]
38
+ - Fixed `application/ecmascript` extensions. [#20][]
24
39
 
25
40
  ## 3.2018.0812 / 2018-08-12
26
41
 
27
- * Added `.xsd` extension to `text/xml`. [#10][]
42
+ - Added `.xsd` extension to `text/xml`. [#10][]
28
43
 
29
- * Added `.js` and `.mjs` extensions to `text/ecmascript` and
30
- `text/javascript`. [#11][]
44
+ - Added `.js` and `.mjs` extensions to `text/ecmascript` and
45
+ `text/javascript`. [#11][]
31
46
 
32
- * Added `.ipa` extension to `application/octet-stream`. [#12][]
47
+ - Added `.ipa` extension to `application/octet-stream`. [#12][]
33
48
 
34
- * Moved extensions `.markdown` and `.md` and added `.mkd` extension to
35
- `text/markdown`. [#13][]
49
+ - Moved extensions `.markdown` and `.md` and added `.mkd` extension to
50
+ `text/markdown`. [#13][]
36
51
 
37
- * Because of a bug found with mime-types 3 before 3.2.1, this version
38
- requires mime-types 3.1 or later to manage data.
52
+ - Because of a bug found with mime-types 3 before 3.2.1, this version
53
+ requires mime-types 3.1 or later to manage data.
39
54
 
40
- * Updated the IANA media registry entries as of release date. The biggest
41
- major change here is the addition of the `font/` top-level media type.
55
+ - Updated the IANA media registry entries as of release date. The biggest
56
+ major change here is the addition of the `font/` top-level media type.
42
57
 
43
- * MIME type changes not introduced by pull requests will no longer be
44
- individually tracked.
58
+ - MIME type changes not introduced by pull requests will no longer be
59
+ individually tracked.
45
60
 
46
- * Clarified that the YAML editable format is not shipped with the Ruby gem
47
- for size considerations.
61
+ - Clarified that the YAML editable format is not shipped with the Ruby gem
62
+ for size considerations.
48
63
 
49
64
  ## 3.2016.0521 / 2016-05-21
50
65
 
51
- * Updated the known extension list for application/octet-stream and
52
- application/pgp-encrypted to include gpg as an extension. Fixes
53
- [#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
54
- (@taoza).
55
- * Updated the IANA media registry entries as of release date:
56
-
57
- * Updated metadata for application/EmergencyCallData.Comment+xml,
58
- application/EmergencyCallData.DeviceInfo+xml,
59
- application/EmergencyCallData.ProviderInfo+xml,
60
- application/EmergencyCallData.ServiceInfo+xml,
61
- application/EmergencyCallData.SubscriberInfo+xml,
62
- application/ogg, application/problem+json, application/problem+xml,
63
- audio/ogg, text/markdown, video/H265, video/ogg.
64
- * Added application/efi, application/vnd.3gpp.sms+xml,
65
- application/vnd.3lightssoftware.imagescal,
66
- application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
67
- application/vnd.onepager, application/vnd.quarantainenet,
68
- application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
69
- * image/bmp has a draft RFC which would make it official; it has been
70
- finally been registered. As such, this version *reverses* the
71
- use-instead relationship of image/bmp and image/x-bmp.
72
-
73
- * This version requires mime-types 3.1 or later to manage data because of an
74
- issue with JSON data encoding for the `xrefs` field.
66
+ - Updated the known extension list for application/octet-stream and
67
+ application/pgp-encrypted to include gpg as an extension. Fixes
68
+ [#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
69
+ (@taoza).
70
+ - Updated the IANA media registry entries as of release date:
71
+
72
+ - Updated metadata for application/EmergencyCallData.Comment+xml,
73
+ application/EmergencyCallData.DeviceInfo+xml,
74
+ application/EmergencyCallData.ProviderInfo+xml,
75
+ application/EmergencyCallData.ServiceInfo+xml,
76
+ application/EmergencyCallData.SubscriberInfo+xml,
77
+ application/ogg, application/problem+json, application/problem+xml,
78
+ audio/ogg, text/markdown, video/H265, video/ogg.
79
+ - Added application/efi, application/vnd.3gpp.sms+xml,
80
+ application/vnd.3lightssoftware.imagescal,
81
+ application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
82
+ application/vnd.onepager, application/vnd.quarantainenet,
83
+ application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
84
+ - image/bmp has a draft RFC which would make it official; it has been
85
+ finally been registered. As such, this version _reverses_ the
86
+ use-instead relationship of image/bmp and image/x-bmp.
87
+
88
+ - This version requires mime-types 3.1 or later to manage data because of an
89
+ issue with JSON data encoding for the `xrefs` field.
75
90
 
76
91
  ## 3.2016.0221 / 2016-02-21
77
92
 
78
- * Updated the known extensions list for audio/mp4.
79
- * Updated the IANA media registry entries as of release date:
80
-
81
- * Updated metadata for 3GPP-defined types (there are many),
82
- application/cdni, and application/rfc+xml.
83
- * Added application/EmergencyCallData.Comment+xml,
84
- application/EmergencyCallData.DeviceInfo+xml,
85
- application/EmergencyCallData.ProviderInfo+xml,
86
- application/EmergencyCallData.ServiceInfo+xml,
87
- application/ppsp-tracker+json, application/problem+json,
88
- application/problem+xml, application/vnd.filmit.zfc,
89
- application/vnd.hdt, application/vnd.mapbox-vector-tile,
90
- application/vnd.ms-PrintDeviceCapabilities+xml,
91
- application/vnd.ms-PrintSchemaTicket+xml,
92
- application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
93
- model/vnd.rosette.annotated-data-model, and video/H265.
94
-
95
- * Updated to [Contributor Covenant 1.4][Code of Conduct].
96
- * Shift the support code in this repository to be developed with Ruby 2.3.
97
- This involves:
98
-
99
- * Adding `frozen_string_literal: true` to all Ruby files.
100
- * Applied some recommended readability and performance suggestions from
101
- Rubocop. Ignored some style recommendations, too.
102
- * Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
93
+ - Updated the known extensions list for audio/mp4.
94
+ - Updated the IANA media registry entries as of release date:
95
+
96
+ - Updated metadata for 3GPP-defined types (there are many),
97
+ application/cdni, and application/rfc+xml.
98
+ - Added application/EmergencyCallData.Comment+xml,
99
+ application/EmergencyCallData.DeviceInfo+xml,
100
+ application/EmergencyCallData.ProviderInfo+xml,
101
+ application/EmergencyCallData.ServiceInfo+xml,
102
+ application/ppsp-tracker+json, application/problem+json,
103
+ application/problem+xml, application/vnd.filmit.zfc,
104
+ application/vnd.hdt, application/vnd.mapbox-vector-tile,
105
+ application/vnd.ms-PrintDeviceCapabilities+xml,
106
+ application/vnd.ms-PrintSchemaTicket+xml,
107
+ application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
108
+ model/vnd.rosette.annotated-data-model, and video/H265.
109
+
110
+ - Updated to [Contributor Covenant 1.4][code of conduct].
111
+ - Shift the support code in this repository to be developed with Ruby 2.3.
112
+ This involves:
113
+
114
+ - Adding `frozen_string_literal: true` to all Ruby files.
115
+ - Applied some recommended readability and performance suggestions from
116
+ Rubocop. Ignored some style recommendations, too.
117
+ - Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
103
118
 
104
119
  ## 3.2015.1120 / 2015-11-20
105
120
 
106
- * Extracted from [ruby-mime-types][rmt].
107
- * Added a [Code of Conduct][].
108
- * The versioning has changed to be semantic on format plus date in two parts.
121
+ - Extracted from [ruby-mime-types][rmt].
122
+ - Added a [Code of Conduct][].
123
+ - The versioning has changed to be semantic on format plus date in two parts.
109
124
 
110
- * All registry formats have been updated to remove deprecated data.
111
- * The columnar format has been updated to store three boolean flags in a
112
- single flags file.
125
+ - All registry formats have been updated to remove deprecated data.
126
+ - The columnar format has been updated to store three boolean flags in a
127
+ single flags file.
113
128
 
114
- * Updated the conversion and management utilities to work with
115
- ruby-mime-types 3.x.
129
+ - Updated the conversion and management utilities to work with
130
+ ruby-mime-types 3.x.
116
131
 
117
- * Updated the IANA media registry entries as of release date:
132
+ - Updated the IANA media registry entries as of release date:
118
133
 
119
- * Updated metadata for application/scim+json, audio/G711-0, text/markdown.
134
+ - Updated metadata for application/scim+json, audio/G711-0, text/markdown.
120
135
 
121
- * Added application/cdni, application/csvm+json, application/rfc+xml,
122
- application/vnd.3gpp.access-transfer-events+xml,
123
- application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
124
- application/vnd.ms-windows.devicepairing,
125
- application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
126
- application/vnd.pagerduty+json, video/VP8.
136
+ - Added application/cdni, application/csvm+json, application/rfc+xml,
137
+ application/vnd.3gpp.access-transfer-events+xml,
138
+ application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
139
+ application/vnd.ms-windows.devicepairing,
140
+ application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
141
+ application/vnd.pagerduty+json, video/VP8.
127
142
 
128
143
  ## 2.6.2 / 2015-09-13
129
144
 
130
- * Updated the IANA media registry entries as of release date:
145
+ - Updated the IANA media registry entries as of release date:
131
146
 
132
- * Updated metadata for application/cals-1840, application/index.obj,
133
- application/ocsp-response, application/vnd.dtg.local.html,
134
- application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
147
+ - Updated metadata for application/cals-1840, application/index.obj,
148
+ application/ocsp-response, application/vnd.dtg.local.html,
149
+ application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
135
150
 
136
- * Added application/pkcs12, application/scim+json, multipart/form-data.
137
- application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
138
- application/vnd.3gpp.mid-call+xml,
139
- application/vnd.3gpp-state-and-event-info+xml,
140
- application.3gpp.ussd+xml, application/vnd.anki,
141
- application/vnd.biopax.rdf+xml, application/vnd.drive+json,
142
- application/vnd.firemonkeys.cloudcell,
143
- application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
144
- application/vnd.openblox.game-binary, application/vnd.uri-map,
145
- audio/G711-0, image/vnd.mozilla.apng.
151
+ - Added application/pkcs12, application/scim+json, multipart/form-data.
152
+ application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
153
+ application/vnd.3gpp.mid-call+xml,
154
+ application/vnd.3gpp-state-and-event-info+xml,
155
+ application.3gpp.ussd+xml, application/vnd.anki,
156
+ application/vnd.biopax.rdf+xml, application/vnd.drive+json,
157
+ application/vnd.firemonkeys.cloudcell,
158
+ application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
159
+ application/vnd.openblox.game-binary, application/vnd.uri-map,
160
+ audio/G711-0, image/vnd.mozilla.apng.
146
161
 
147
162
  ## 2.6 / 2015-05-25
148
163
 
149
- * Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
150
- to application/font-woff,
151
- [ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
152
- * Updated the IANA media registry entries as of release date:
153
- * Updated metadata for application/jose, application/jose+json,
154
- application/jwk+json, application/jwk-set+json, application/jwt to
155
- reflect the adoption of RFC7519.
156
- * Added application/vnd.balsamiq.bmpr.
164
+ - Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
165
+ to application/font-woff,
166
+ [ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
167
+ - Updated the IANA media registry entries as of release date:
168
+ - Updated metadata for application/jose, application/jose+json,
169
+ application/jwk+json, application/jwk-set+json, application/jwt to
170
+ reflect the adoption of RFC7519.
171
+ - Added application/vnd.balsamiq.bmpr.
157
172
 
158
173
  ## 2.5 / 2015-04-25
159
174
 
160
- * Updated the IANA media registry entries as of release date:
161
- * Added MIME types: application/A2L, application/AML, application/ATFX,
162
- application/ATXML, application/CDFX+XML, application/CEA,
163
- application/DII, application/DIT, application/jose,
164
- application/jose+json, application/json-seq, application/jwk+json,
165
- application/jwk-set+json, application/jwt, application/LXF,
166
- application/MF4, application/rdap+json,
167
- application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
168
- application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
169
- application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
170
- application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
171
- application/vnd.gov.sk.e-form+zip,
172
- application/vnd.gov.sk.xmldatacontainer+xml,
173
- application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
174
- application/vnd.ims.imsccv1p3, application/vnd.micro+json,
175
- application/vnd.microsoft.portable-executable,
176
- application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
177
- application/vnd.tmd.mediaflex.api+xml, audio/opus,
178
- image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
179
- TEMPORARY).
180
- * Updated metadata for application/coap-group+json (RFC7390),
181
- application/epub+zip (now registered), application/merge-patch+json
182
- (RFC7396), application/smil, application/vnd.arastra.swi,
183
- application/vnd.geocube+xml, application/vnd.gmx,
184
- application/xhtml+xml, text/directory.
185
- * Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
186
- text/tab-separated-values,
187
- [ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
188
- * Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
189
- image/x-ms-bmp with the extension `bmp`,
190
- [ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
175
+ - Updated the IANA media registry entries as of release date:
176
+ - Added MIME types: application/A2L, application/AML, application/ATFX,
177
+ application/ATXML, application/CDFX+XML, application/CEA,
178
+ application/DII, application/DIT, application/jose,
179
+ application/jose+json, application/json-seq, application/jwk+json,
180
+ application/jwk-set+json, application/jwt, application/LXF,
181
+ application/MF4, application/rdap+json,
182
+ application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
183
+ application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
184
+ application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
185
+ application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
186
+ application/vnd.gov.sk.e-form+zip,
187
+ application/vnd.gov.sk.xmldatacontainer+xml,
188
+ application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
189
+ application/vnd.ims.imsccv1p3, application/vnd.micro+json,
190
+ application/vnd.microsoft.portable-executable,
191
+ application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
192
+ application/vnd.tmd.mediaflex.api+xml, audio/opus,
193
+ image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
194
+ TEMPORARY).
195
+ - Updated metadata for application/coap-group+json (RFC7390),
196
+ application/epub+zip (now registered), application/merge-patch+json
197
+ (RFC7396), application/smil, application/vnd.arastra.swi,
198
+ application/vnd.geocube+xml, application/vnd.gmx,
199
+ application/xhtml+xml, text/directory.
200
+ - Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
201
+ text/tab-separated-values,
202
+ [ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
203
+ - Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
204
+ image/x-ms-bmp with the extension `bmp`,
205
+ [ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
191
206
 
192
207
  ## 2.4.2 / 2014-10-15
193
208
 
194
- * Added application/vnd.ms-outlook as an unregistered MIME type with the
195
- extension `msg`. Provided by @keerthisiv in
196
- [ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
209
+ - Added application/vnd.ms-outlook as an unregistered MIME type with the
210
+ extension `msg`. Provided by @keerthisiv in
211
+ [ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
197
212
 
198
213
  ## 2.4.1 / 2014-10-07
199
214
 
200
- * Changed the sort order of many of the extensions to restore behaviour from
201
- mime-types 1.25.1.
202
- * Added `friendly` MIME::Type descriptions where known.
203
- * Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
204
- application/x-msdownload.
205
- * Updated the IANA media registry entries as of release date.
206
- * Several MIME types had updated metadata (application/alto-*, RFC7285;
207
- application/calendar+json, RFC7265; application/http, RFC7230;
208
- application/xml, RFC7303; application/xml-dtd, RFC7303;
209
- application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
210
- audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
211
- RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
212
- * MIME::Type application/EDI-Consent was renamed to
213
- application/EDI-consent.
214
- * Obsoleted application/vnd.informix-visionary in favour of
215
- application/vnd.visionary. Obsoleted
216
- application/vnd.nokia.n-gage.symbian.install with no replacement.
217
- * Added MIME types: application/ATF, application/coap-group+json,
218
- application/DCD, application/merge-patch+json, application/scaip+xml,
219
- application/vnd.apache.thrift.binary, application/vnd.artsquare,
220
- application/vnd.doremir.scorecloud-binary-document,
221
- application/vnd.dzr, application/vnd.maxmind.maxmind-db,
222
- application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
223
- image/vnd.tencent.tap.
215
+ - Changed the sort order of many of the extensions to restore behaviour from
216
+ mime-types 1.25.1.
217
+ - Added `friendly` MIME::Type descriptions where known.
218
+ - Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
219
+ application/x-msdownload.
220
+ - Updated the IANA media registry entries as of release date.
221
+ - Several MIME types had updated metadata (application/alto-\*, RFC7285;
222
+ application/calendar+json, RFC7265; application/http, RFC7230;
223
+ application/xml, RFC7303; application/xml-dtd, RFC7303;
224
+ application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
225
+ audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
226
+ RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
227
+ - MIME::Type application/EDI-Consent was renamed to
228
+ application/EDI-consent.
229
+ - Obsoleted application/vnd.informix-visionary in favour of
230
+ application/vnd.visionary. Obsoleted
231
+ application/vnd.nokia.n-gage.symbian.install with no replacement.
232
+ - Added MIME types: application/ATF, application/coap-group+json,
233
+ application/DCD, application/merge-patch+json, application/scaip+xml,
234
+ application/vnd.apache.thrift.binary, application/vnd.artsquare,
235
+ application/vnd.doremir.scorecloud-binary-document,
236
+ application/vnd.dzr, application/vnd.maxmind.maxmind-db,
237
+ application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
238
+ image/vnd.tencent.tap.
224
239
 
225
240
  ## 2.3 / 2014-05-23
226
241
 
227
- * Updated the IANA media registry entries as of release date.
228
- * Several MIME types had additional metadata added on the most recent
229
- import.
230
- * MIME::Type application/pidfxml was renamed to application/pidf+xml.
231
- * Added MIME types: application/3gpdash-qoe-report+xml,
232
- application/alto-costmap+json, application/alto-costmapfilter+json,
233
- application/alto-directory+json, application/alto-endpointcost+json,
234
- application/alto-endpointcostparams+json,
235
- application/alto-endpointprop+json,
236
- application/alto-endpointpropparams+json, application/alto-error+json,
237
- application/alto-networkmap+json,
238
- application/alto-networkmapfilter+json, application/calendar+json,
239
- application/vnd.debian.binary-package, application/vnd.geo+json,
240
- application/vnd.ims.lis.v2.result+json,
241
- application/vnd.ims.lti.v2.toolconsumerprofile+json,
242
- application/vnd.ims.lti.v2.toolproxy+json,
243
- application/vnd.ims.lti.v2.toolproxy.id+json,
244
- application/vnd.ims.lti.v2.toolsettings+json,
245
- application/vnd.ims.lti.v2.toolsettings.simple+json,
246
- application/vnd.mason+json, application/vnd.miele+json,
247
- application/vnd.ms-3mfdocument, application/vnd.panoply,
248
- application/vnd.valve.source.material, application/vnd.yaoweme,
249
- audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
250
- model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
251
- text/cache-manifest
242
+ - Updated the IANA media registry entries as of release date.
243
+ - Several MIME types had additional metadata added on the most recent
244
+ import.
245
+ - MIME::Type application/pidfxml was renamed to application/pidf+xml.
246
+ - Added MIME types: application/3gpdash-qoe-report+xml,
247
+ application/alto-costmap+json, application/alto-costmapfilter+json,
248
+ application/alto-directory+json, application/alto-endpointcost+json,
249
+ application/alto-endpointcostparams+json,
250
+ application/alto-endpointprop+json,
251
+ application/alto-endpointpropparams+json, application/alto-error+json,
252
+ application/alto-networkmap+json,
253
+ application/alto-networkmapfilter+json, application/calendar+json,
254
+ application/vnd.debian.binary-package, application/vnd.geo+json,
255
+ application/vnd.ims.lis.v2.result+json,
256
+ application/vnd.ims.lti.v2.toolconsumerprofile+json,
257
+ application/vnd.ims.lti.v2.toolproxy+json,
258
+ application/vnd.ims.lti.v2.toolproxy.id+json,
259
+ application/vnd.ims.lti.v2.toolsettings+json,
260
+ application/vnd.ims.lti.v2.toolsettings.simple+json,
261
+ application/vnd.mason+json, application/vnd.miele+json,
262
+ application/vnd.ms-3mfdocument, application/vnd.panoply,
263
+ application/vnd.valve.source.material, application/vnd.yaoweme,
264
+ audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
265
+ model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
266
+ text/cache-manifest
252
267
 
253
268
  ## 2.2 / 2014-03-14
254
- * Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
255
- Galbraith (@brandongalbraith) in
256
- [ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
257
- * Marked application/excel and application/x-excel as obsolete in favour of
258
- application/vnd.ms-excel per
259
- [ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
260
- * Merged duplicate MIME types into the registered MIME type. The only
261
- difference between the MIME types was capitalization; the MIME type
262
- registry is case-preserving.
263
- * Affected MIME types: application/vnd.3M.Post-it-Notes,
264
- application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
265
- application/vnd.hp-HPGL, application/vnd.hp-PCL,
266
- application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
267
- application/vnd.Kinar, application/vnd.MFER,
268
- application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
269
- application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
270
- application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
271
- application/vnd.Mobius.TXF,
272
- application/vnd.ms-excel.addin.macroEnabled.12,
273
- application/vnd.ms-excel.sheet.binary.macroEnabled.12,
274
- application/vnd.ms-excel.sheet.macroEnabled.12,
275
- application/vnd.ms-excel.template.macroEnabled.12,
276
- application/vnd.ms-powerpoint.addin.macroEnabled.12,
277
- application/vnd.ms-powerpoint.presentation.macroEnabled.12,
278
- application/vnd.ms-powerpoint.slide.macroEnabled.12,
279
- application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
280
- application/vnd.ms-powerpoint.template.macroEnabled.12,
281
- application/vnd.ms-word.document.macroEnabled.12,
282
- application/vnd.ms-word.template.macroEnabled.12,
283
- application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
284
- application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
285
- application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
286
- video/H263, video/H264, video/JPEG, video/MJ2.
287
-
288
- * Updated the IANA media registry entries as of release date.
289
- * Registered type person names have been updated from surname only to
290
- full name.
291
- * Several types had updated RFC or draft RFC references.
292
- * Added application/bacnet-xdd+zip, application/cms,
293
- application/load-control+xml, application/PDX, application/ttml+xml,
294
- application/vnd.collection.doc+json,
295
- application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
296
- text/parameters, text/vnd.a, video/iso.segment
269
+
270
+ - Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
271
+ Galbraith (@brandongalbraith) in
272
+ [ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
273
+ - Marked application/excel and application/x-excel as obsolete in favour of
274
+ application/vnd.ms-excel per
275
+ [ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
276
+ - Merged duplicate MIME types into the registered MIME type. The only
277
+ difference between the MIME types was capitalization; the MIME type
278
+ registry is case-preserving.
279
+
280
+ - Affected MIME types: application/vnd.3M.Post-it-Notes,
281
+ application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
282
+ application/vnd.hp-HPGL, application/vnd.hp-PCL,
283
+ application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
284
+ application/vnd.Kinar, application/vnd.MFER,
285
+ application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
286
+ application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
287
+ application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
288
+ application/vnd.Mobius.TXF,
289
+ application/vnd.ms-excel.addin.macroEnabled.12,
290
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12,
291
+ application/vnd.ms-excel.sheet.macroEnabled.12,
292
+ application/vnd.ms-excel.template.macroEnabled.12,
293
+ application/vnd.ms-powerpoint.addin.macroEnabled.12,
294
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12,
295
+ application/vnd.ms-powerpoint.slide.macroEnabled.12,
296
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
297
+ application/vnd.ms-powerpoint.template.macroEnabled.12,
298
+ application/vnd.ms-word.document.macroEnabled.12,
299
+ application/vnd.ms-word.template.macroEnabled.12,
300
+ application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
301
+ application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
302
+ application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
303
+ video/H263, video/H264, video/JPEG, video/MJ2.
304
+
305
+ - Updated the IANA media registry entries as of release date.
306
+ - Registered type person names have been updated from surname only to
307
+ full name.
308
+ - Several types had updated RFC or draft RFC references.
309
+ - Added application/bacnet-xdd+zip, application/cms,
310
+ application/load-control+xml, application/PDX, application/ttml+xml,
311
+ application/vnd.collection.doc+json,
312
+ application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
313
+ text/parameters, text/vnd.a, video/iso.segment
297
314
 
298
315
  ## 2.1 / 2014-01-25
299
316
 
300
- * The IANA media type registry format changed, resulting in updates to most
301
- of the 1,427 registered MIME types.
302
- * Many registered MIME types have had some metadata updates due to the
303
- change in the IANA registry format.
304
- * MIME types having a publicly available registry application now
305
- include a link to that file in references.
306
- * Added `xrefs` data as discovered (see the API changes noted above).
307
- * The Apache mime types configuration has been added to track additional
308
- common but unregistered MIME types and known extensions for those MIME
309
- types. This has affected many of the available MIME types.
310
- * Added newly registered MIME types:
311
- * application/emotionml+xml, application/ODX, application/prs.hpub+zip,
312
- application/vcard+json, application/vnd.bekitzur-stech+json,
313
- application/vnd.etsi.timestamp-token,
314
- application/vnd.oma.cab-feature-handler+xml,
315
- application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
316
- audio/amr-wb, model/x3d+xml, model/x3d-vrml
317
- * Added 180 unregistered MIME types from the Apache list:
318
- * application/applixware, application/cu-seeme, application/docbook+xml,
319
- application/gml+xml, application/gpx+xml, application/gxf,
320
- application/java-archive, application/java-serialized-object,
321
- application/java-vm, application/jsonml+json, application/metalink+xml,
322
- application/omdoc+xml, application/onenote, application/pics-rules,
323
- application/rsd+xml, application/ssdl+xml,
324
- application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
325
- application/vnd.anser-web-funds-transfer-initiation,
326
- application/vnd.curl.car, application/vnd.curl.pcurl,
327
- application/vnd.dolby.mlp, application/vnd.ds-keypoint,
328
- application/vnd.flographit, application/vnd.handheld-entertainment+xml,
329
- application/vnd.hp-hpgl, application/vnd.hp-pcl,
330
- application/vnd.hp-pclxl, application/vnd.ibm.minipay,
331
- application/vnd.kinar, application/vnd.mfer,
332
- application/vnd.mobius.daf, application/vnd.mobius.dis,
333
- application/vnd.mobius.mbk, application/vnd.mobius.mqy,
334
- application/vnd.mobius.msl, application/vnd.mobius.plc,
335
- application/vnd.mobius.txf,
336
- application/vnd.ms-excel.addin.macroenabled.12,
337
- application/vnd.ms-excel.sheet.binary.macroenabled.12,
338
- application/vnd.ms-excel.sheet.macroenabled.12,
339
- application/vnd.ms-excel.template.macroenabled.12,
340
- application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
341
- application/vnd.ms-powerpoint.addin.macroenabled.12,
342
- application/vnd.ms-powerpoint.presentation.macroenabled.12,
343
- application/vnd.ms-powerpoint.slide.macroenabled.12,
344
- application/vnd.ms-powerpoint.slideshow.macroenabled.12,
345
- application/vnd.ms-powerpoint.template.macroenabled.12,
346
- application/vnd.ms-word.document.macroenabled.12,
347
- application/vnd.ms-word.template.macroenabled.12,
348
- application/vnd.novadigm.edm, application/vnd.novadigm.edx,
349
- application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
350
- application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
351
- application/vnd.simtech-mindmapper, application/vnd.symbian.install,
352
- application/winhlp, application/x-abiword,
353
- application/x-ace-compressed, application/x-authorware-bin,
354
- application/x-authorware-map, application/x-authorware-seg,
355
- application/x-bittorrent, application/x-blorb, application/x-bzip,
356
- application/x-cbr, application/x-cfs-compressed, application/x-chat,
357
- application/x-conference, application/x-dgc-compressed,
358
- application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
359
- application/x-dtbresource+xml, application/x-envoy, application/x-eva,
360
- application/x-font-bdf, application/x-font-ghostscript,
361
- application/x-font-linux-psf, application/x-font-otf,
362
- application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
363
- application/x-font-type1, application/x-freearc,
364
- application/x-gca-compressed, application/x-glulx,
365
- application/x-gnumeric, application/x-gramps-xml,
366
- application/x-install-instructions, application/x-iso9660-image,
367
- application/x-lzh-compressed, application/x-mie,
368
- application/x-ms-application, application/x-ms-shortcut,
369
- application/x-ms-xbap, application/x-msbinder,
370
- application/x-mscardfile, application/x-msclip,
371
- application/x-msmediaview, application/x-msmetafile,
372
- application/x-msmoney, application/x-mspublisher,
373
- application/x-msschedule, application/x-msterminal,
374
- application/x-mswrite, application/x-nzb, application/x-pkcs12,
375
- application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
376
- application/x-research-info-systems, application/x-silverlight-app,
377
- application/x-sql, application/x-stuffitx, application/x-subrip,
378
- application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
379
- application/x-tgif, application/x-xfig, application/x-xliff+xml,
380
- application/x-xz, application/x-zmachine, application/xaml+xml,
381
- application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
382
- audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
383
- audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
384
- chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
385
- chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
386
- image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
387
- image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
388
- text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
389
- text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
390
- text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
391
- video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
392
- video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
393
- * Merged the non-standard VMS platform text/plain with the standard
394
- text/plain.
317
+ - The IANA media type registry format changed, resulting in updates to most
318
+ of the 1,427 registered MIME types.
319
+ - Many registered MIME types have had some metadata updates due to the
320
+ change in the IANA registry format.
321
+ - MIME types having a publicly available registry application now
322
+ include a link to that file in references.
323
+ - Added `xrefs` data as discovered (see the API changes noted above).
324
+ - The Apache mime types configuration has been added to track additional
325
+ common but unregistered MIME types and known extensions for those MIME
326
+ types. This has affected many of the available MIME types.
327
+ - Added newly registered MIME types:
328
+ - application/emotionml+xml, application/ODX, application/prs.hpub+zip,
329
+ application/vcard+json, application/vnd.bekitzur-stech+json,
330
+ application/vnd.etsi.timestamp-token,
331
+ application/vnd.oma.cab-feature-handler+xml,
332
+ application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
333
+ audio/amr-wb, model/x3d+xml, model/x3d-vrml
334
+ - Added 180 unregistered MIME types from the Apache list:
335
+ - application/applixware, application/cu-seeme, application/docbook+xml,
336
+ application/gml+xml, application/gpx+xml, application/gxf,
337
+ application/java-archive, application/java-serialized-object,
338
+ application/java-vm, application/jsonml+json, application/metalink+xml,
339
+ application/omdoc+xml, application/onenote, application/pics-rules,
340
+ application/rsd+xml, application/ssdl+xml,
341
+ application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
342
+ application/vnd.anser-web-funds-transfer-initiation,
343
+ application/vnd.curl.car, application/vnd.curl.pcurl,
344
+ application/vnd.dolby.mlp, application/vnd.ds-keypoint,
345
+ application/vnd.flographit, application/vnd.handheld-entertainment+xml,
346
+ application/vnd.hp-hpgl, application/vnd.hp-pcl,
347
+ application/vnd.hp-pclxl, application/vnd.ibm.minipay,
348
+ application/vnd.kinar, application/vnd.mfer,
349
+ application/vnd.mobius.daf, application/vnd.mobius.dis,
350
+ application/vnd.mobius.mbk, application/vnd.mobius.mqy,
351
+ application/vnd.mobius.msl, application/vnd.mobius.plc,
352
+ application/vnd.mobius.txf,
353
+ application/vnd.ms-excel.addin.macroenabled.12,
354
+ application/vnd.ms-excel.sheet.binary.macroenabled.12,
355
+ application/vnd.ms-excel.sheet.macroenabled.12,
356
+ application/vnd.ms-excel.template.macroenabled.12,
357
+ application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
358
+ application/vnd.ms-powerpoint.addin.macroenabled.12,
359
+ application/vnd.ms-powerpoint.presentation.macroenabled.12,
360
+ application/vnd.ms-powerpoint.slide.macroenabled.12,
361
+ application/vnd.ms-powerpoint.slideshow.macroenabled.12,
362
+ application/vnd.ms-powerpoint.template.macroenabled.12,
363
+ application/vnd.ms-word.document.macroenabled.12,
364
+ application/vnd.ms-word.template.macroenabled.12,
365
+ application/vnd.novadigm.edm, application/vnd.novadigm.edx,
366
+ application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
367
+ application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
368
+ application/vnd.simtech-mindmapper, application/vnd.symbian.install,
369
+ application/winhlp, application/x-abiword,
370
+ application/x-ace-compressed, application/x-authorware-bin,
371
+ application/x-authorware-map, application/x-authorware-seg,
372
+ application/x-bittorrent, application/x-blorb, application/x-bzip,
373
+ application/x-cbr, application/x-cfs-compressed, application/x-chat,
374
+ application/x-conference, application/x-dgc-compressed,
375
+ application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
376
+ application/x-dtbresource+xml, application/x-envoy, application/x-eva,
377
+ application/x-font-bdf, application/x-font-ghostscript,
378
+ application/x-font-linux-psf, application/x-font-otf,
379
+ application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
380
+ application/x-font-type1, application/x-freearc,
381
+ application/x-gca-compressed, application/x-glulx,
382
+ application/x-gnumeric, application/x-gramps-xml,
383
+ application/x-install-instructions, application/x-iso9660-image,
384
+ application/x-lzh-compressed, application/x-mie,
385
+ application/x-ms-application, application/x-ms-shortcut,
386
+ application/x-ms-xbap, application/x-msbinder,
387
+ application/x-mscardfile, application/x-msclip,
388
+ application/x-msmediaview, application/x-msmetafile,
389
+ application/x-msmoney, application/x-mspublisher,
390
+ application/x-msschedule, application/x-msterminal,
391
+ application/x-mswrite, application/x-nzb, application/x-pkcs12,
392
+ application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
393
+ application/x-research-info-systems, application/x-silverlight-app,
394
+ application/x-sql, application/x-stuffitx, application/x-subrip,
395
+ application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
396
+ application/x-tgif, application/x-xfig, application/x-xliff+xml,
397
+ application/x-xz, application/x-zmachine, application/xaml+xml,
398
+ application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
399
+ audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
400
+ audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
401
+ chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
402
+ chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
403
+ image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
404
+ image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
405
+ text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
406
+ text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
407
+ text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
408
+ video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
409
+ video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
410
+ - Merged the non-standard VMS platform text/plain with the standard
411
+ text/plain.
395
412
 
396
413
  [#10]: https://github.com/mime-types/mime-types-data/pull/10
397
414
  [#11]: https://github.com/mime-types/mime-types-data/pull/11
@@ -399,8 +416,14 @@
399
416
  [#13]: https://github.com/mime-types/mime-types-data/pull/13
400
417
  [#20]: https://github.com/mime-types/mime-types-data/pull/20
401
418
  [#21]: https://github.com/mime-types/mime-types-data/pull/21
402
- [#22]: https://github.com/mime-types/mime-types-data/pull/22
419
+ [#22]: https://github.com/mime-types/mime-types-data/issues/22
403
420
  [#23]: https://github.com/mime-types/mime-types-data/pull/23
404
421
  [#24]: https://github.com/mime-types/mime-types-data/pull/24
422
+ [#28]: https://github.com/mime-types/mime-types-data/pull/28
423
+ [#29]: https://github.com/mime-types/mime-types-data/pull/29
424
+ [#30]: https://github.com/mime-types/mime-types-data/pull/30
425
+ [#31]: https://github.com/mime-types/mime-types-data/pull/31
426
+ [#32]: https://github.com/mime-types/mime-types-data/issues/32
427
+ [#33]: https://github.com/mime-types/mime-types-data/pull/33
405
428
  [rmt]: https://github.com/mime-types/ruby-mime-types
406
- [Code of Conduct]: Code-of-Conduct.md
429
+ [code of conduct]: Code-of-Conduct.md