mime-types-data 3.2020.0512

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