kinetic_sdk 5.0.18 → 5.0.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (77) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -1
  3. data/gems/{mime-types-3.1/Code-of-Conduct.rdoc → mime-types-3.3.1/Code-of-Conduct.md} +19 -20
  4. data/gems/{mime-types-3.1/Contributing.rdoc → mime-types-3.3.1/Contributing.md} +67 -54
  5. data/gems/mime-types-3.3.1/History.md +240 -0
  6. data/gems/{mime-types-data-3.2016.0521 → mime-types-3.3.1}/Licence.md +1 -1
  7. data/gems/{mime-types-3.1 → mime-types-3.3.1}/Manifest.txt +4 -4
  8. data/gems/{mime-types-3.1 → mime-types-3.3.1}/README.rdoc +5 -14
  9. data/gems/{mime-types-3.1 → mime-types-3.3.1}/Rakefile +43 -13
  10. data/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
  11. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type.rb +60 -46
  12. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type/columnar.rb +4 -2
  13. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types.rb +11 -8
  14. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/_columnar.rb +10 -9
  15. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/cache.rb +7 -5
  16. data/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
  17. data/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
  18. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/deprecations.rb +3 -3
  19. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/full.rb +2 -0
  20. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/loader.rb +2 -4
  21. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/logger.rb +3 -1
  22. data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/registry.rb +12 -3
  23. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/bad-fixtures/malformed +0 -0
  24. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/json.json +0 -0
  25. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/old-data +0 -0
  26. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/yaml.yaml +0 -0
  27. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/minitest_helper.rb +1 -1
  28. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_type.rb +33 -26
  29. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types.rb +33 -25
  30. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_cache.rb +15 -6
  31. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_class.rb +18 -14
  32. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_lazy.rb +10 -4
  33. data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_loader.rb +1 -1
  34. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Code-of-Conduct.md +10 -10
  35. data/gems/mime-types-data-3.2021.0225/Contributing.md +224 -0
  36. data/gems/mime-types-data-3.2021.0225/History.md +468 -0
  37. data/gems/{mime-types-3.1/Licence.rdoc → mime-types-data-3.2021.0225/Licence.md} +3 -3
  38. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Manifest.txt +13 -0
  39. data/gems/mime-types-data-3.2021.0225/README.md +63 -0
  40. data/gems/mime-types-data-3.2021.0225/Rakefile +159 -0
  41. data/gems/mime-types-data-3.2021.0225/data/mime-types.json +1 -0
  42. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.content_type.column +364 -13
  43. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.docs.column +351 -0
  44. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.encoding.column +351 -0
  45. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.flags.column +352 -1
  46. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.friendly.column +351 -0
  47. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.pext.column +351 -0
  48. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.use_instead.column +351 -0
  49. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.xrefs.column +480 -129
  50. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime-types-data.rb +0 -0
  51. data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime/types/data.rb +1 -1
  52. data/gems/mime-types-data-3.2021.0225/types/application.yaml +16933 -0
  53. data/gems/mime-types-data-3.2021.0225/types/audio.yaml +1714 -0
  54. data/gems/mime-types-data-3.2021.0225/types/chemical.yaml +71 -0
  55. data/gems/mime-types-data-3.2021.0225/types/conference.yaml +9 -0
  56. data/gems/mime-types-data-3.2021.0225/types/drawing.yaml +15 -0
  57. data/gems/mime-types-data-3.2021.0225/types/font.yaml +65 -0
  58. data/gems/mime-types-data-3.2021.0225/types/image.yaml +1251 -0
  59. data/gems/mime-types-data-3.2021.0225/types/message.yaml +200 -0
  60. data/gems/mime-types-data-3.2021.0225/types/model.yaml +331 -0
  61. data/gems/mime-types-data-3.2021.0225/types/multipart.yaml +179 -0
  62. data/gems/mime-types-data-3.2021.0225/types/text.yaml +1145 -0
  63. data/gems/mime-types-data-3.2021.0225/types/video.yaml +1094 -0
  64. data/gems/mime-types-data-3.2021.0225/types/world.yaml +8 -0
  65. data/kinetic_sdk.gemspec +3 -3
  66. data/lib/kinetic_sdk.rb +2 -2
  67. data/lib/kinetic_sdk/version.rb +1 -1
  68. metadata +86 -73
  69. data/gems/mime-types-3.1/History.rdoc +0 -658
  70. data/gems/mime-types-3.1/lib/mime-types.rb +0 -1
  71. data/gems/mime-types-3.1/lib/mime/types/columnar.rb +0 -1
  72. data/gems/mime-types-3.1/lib/mime/types/container.rb +0 -30
  73. data/gems/mime-types-data-3.2016.0521/Contributing.md +0 -157
  74. data/gems/mime-types-data-3.2016.0521/History.md +0 -351
  75. data/gems/mime-types-data-3.2016.0521/README.md +0 -61
  76. data/gems/mime-types-data-3.2016.0521/Rakefile +0 -80
  77. data/gems/mime-types-data-3.2016.0521/data/mime-types.json +0 -1
@@ -0,0 +1,468 @@
1
+ # MIME Types Changes by Version
2
+
3
+ <!-- automatic-release -->
4
+
5
+ ## 3.2021.0225 / 2021-02-25
6
+
7
+ - Updated the Apache and IANA media registry entries as of release date.
8
+
9
+ - Added file extension for AVIF video format. [#40].
10
+
11
+ ## 3.2021.0212 / 2021-02-12
12
+
13
+ - Updated the IANA media registry entries as of release date.
14
+
15
+ - Added a new rake task (`release:automatic`) that downloads and converts the
16
+ data from Apache and IANA; if there are changes detected, it updates the
17
+ release version, changelog, manifest, and gemspec and commits the changes
18
+ to git.
19
+
20
+ ## 3.2020.1104 / 2020-11-04
21
+
22
+ - Updated the IANA media registry entries as of release date.
23
+
24
+ - Added `application/x-zip-compressed`. [#36].
25
+
26
+ - Updated the contributing guide to include information about the release
27
+ process as described in [#18].
28
+
29
+ - Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35].
30
+
31
+ ## 3.2020.0512 / 2020-05-12
32
+
33
+ - Updated the IANA media registry entries as of release date.
34
+
35
+ - Added file extensions for HEIC image types. [#34].
36
+
37
+ ## 3.2020.0425 / 2020-04-25
38
+
39
+ - Updated the IANA media registry entries as of release date.
40
+
41
+ - Added several RAW image types based on data from GNOME RAW Thumbnailer.
42
+ [#33] fixing [#32].
43
+
44
+ - Added `audio/wav`. [#31].
45
+
46
+ - Added a type for Smarttech notebook files. [#30].
47
+
48
+ - Added an alias for audio/m4a files. [#29].
49
+
50
+ - Added application/x-ms-dos-executable. [#28].
51
+
52
+ ## 3.2019.1009 / 2019-10-09
53
+
54
+ - Updated the IANA media registry entries as of release date.
55
+
56
+ - Reordered the `.ai` extension so that it is not the preferred extension for
57
+ `application/pdf` [#24].
58
+
59
+ ## 3.2019.0904 / 2019-09-04
60
+
61
+ - Updated the IANA media registry entries as of release date.
62
+
63
+ - Moved the `.ai` extension from `application/postscript` to `application/pdf`.
64
+ [#23] fixing [#22].
65
+
66
+ ## 3.2019.0331 / 2019-03-31
67
+
68
+ - Updated the IANA media registry entries as of release date.
69
+
70
+ - Added support for `application/wasm` with extension `.wasm`. [#21]
71
+
72
+ - Fixed `application/ecmascript` extensions. [#20]
73
+
74
+ ## 3.2018.0812 / 2018-08-12
75
+
76
+ - Added `.xsd` extension to `text/xml`. [#10]
77
+
78
+ - Added `.js` and `.mjs` extensions to `text/ecmascript` and
79
+ `text/javascript`. [#11]
80
+
81
+ - Added `.ipa` extension to `application/octet-stream`. [#12]
82
+
83
+ - Moved extensions `.markdown` and `.md` and added `.mkd` extension to
84
+ `text/markdown`. [#13]
85
+
86
+ - Because of a bug found with mime-types 3 before 3.2.1, this version
87
+ requires mime-types 3.1 or later to manage data.
88
+
89
+ - Updated the IANA media registry entries as of release date. The biggest
90
+ major change here is the addition of the `font/` top-level media type.
91
+
92
+ - MIME type changes not introduced by pull requests will no longer be
93
+ individually tracked.
94
+
95
+ - Clarified that the YAML editable format is not shipped with the Ruby gem
96
+ for size considerations.
97
+
98
+ ## 3.2016.0521 / 2016-05-21
99
+
100
+ - Updated the known extension list for application/octet-stream and
101
+ application/pgp-encrypted to include gpg as an extension. Fixes
102
+ [#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
103
+ (@taoza).
104
+ - Updated the IANA media registry entries as of release date:
105
+
106
+ - Updated metadata for application/EmergencyCallData.Comment+xml,
107
+ application/EmergencyCallData.DeviceInfo+xml,
108
+ application/EmergencyCallData.ProviderInfo+xml,
109
+ application/EmergencyCallData.ServiceInfo+xml,
110
+ application/EmergencyCallData.SubscriberInfo+xml,
111
+ application/ogg, application/problem+json, application/problem+xml,
112
+ audio/ogg, text/markdown, video/H265, video/ogg.
113
+ - Added application/efi, application/vnd.3gpp.sms+xml,
114
+ application/vnd.3lightssoftware.imagescal,
115
+ application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
116
+ application/vnd.onepager, application/vnd.quarantainenet,
117
+ application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
118
+ - image/bmp has a draft RFC which would make it official; it has been
119
+ finally been registered. As such, this version _reverses_ the
120
+ use-instead relationship of image/bmp and image/x-bmp.
121
+
122
+ - This version requires mime-types 3.1 or later to manage data because of an
123
+ issue with JSON data encoding for the `xrefs` field.
124
+
125
+ ## 3.2016.0221 / 2016-02-21
126
+
127
+ - Updated the known extensions list for audio/mp4.
128
+ - Updated the IANA media registry entries as of release date:
129
+
130
+ - Updated metadata for 3GPP-defined types (there are many),
131
+ application/cdni, and application/rfc+xml.
132
+ - Added application/EmergencyCallData.Comment+xml,
133
+ application/EmergencyCallData.DeviceInfo+xml,
134
+ application/EmergencyCallData.ProviderInfo+xml,
135
+ application/EmergencyCallData.ServiceInfo+xml,
136
+ application/ppsp-tracker+json, application/problem+json,
137
+ application/problem+xml, application/vnd.filmit.zfc,
138
+ application/vnd.hdt, application/vnd.mapbox-vector-tile,
139
+ application/vnd.ms-PrintDeviceCapabilities+xml,
140
+ application/vnd.ms-PrintSchemaTicket+xml,
141
+ application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
142
+ model/vnd.rosette.annotated-data-model, and video/H265.
143
+
144
+ - Updated to [Contributor Covenant 1.4][code of conduct].
145
+ - Shift the support code in this repository to be developed with Ruby 2.3.
146
+ This involves:
147
+
148
+ - Adding `frozen_string_literal: true` to all Ruby files.
149
+ - Applied some recommended readability and performance suggestions from
150
+ Rubocop. Ignored some style recommendations, too.
151
+ - Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
152
+
153
+ ## 3.2015.1120 / 2015-11-20
154
+
155
+ - Extracted from [ruby-mime-types][rmt].
156
+ - Added a [Code of Conduct].
157
+ - The versioning has changed to be semantic on format plus date in two parts.
158
+
159
+ - All registry formats have been updated to remove deprecated data.
160
+ - The columnar format has been updated to store three boolean flags in a
161
+ single flags file.
162
+
163
+ - Updated the conversion and management utilities to work with
164
+ ruby-mime-types 3.x.
165
+
166
+ - Updated the IANA media registry entries as of release date:
167
+
168
+ - Updated metadata for application/scim+json, audio/G711-0, text/markdown.
169
+
170
+ - Added application/cdni, application/csvm+json, application/rfc+xml,
171
+ application/vnd.3gpp.access-transfer-events+xml,
172
+ application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
173
+ application/vnd.ms-windows.devicepairing,
174
+ application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
175
+ application/vnd.pagerduty+json, video/VP8.
176
+
177
+ ## 2.6.2 / 2015-09-13
178
+
179
+ - Updated the IANA media registry entries as of release date:
180
+
181
+ - Updated metadata for application/cals-1840, application/index.obj,
182
+ application/ocsp-response, application/vnd.dtg.local.html,
183
+ application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
184
+
185
+ - Added application/pkcs12, application/scim+json, multipart/form-data.
186
+ application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
187
+ application/vnd.3gpp.mid-call+xml,
188
+ application/vnd.3gpp-state-and-event-info+xml,
189
+ application.3gpp.ussd+xml, application/vnd.anki,
190
+ application/vnd.biopax.rdf+xml, application/vnd.drive+json,
191
+ application/vnd.firemonkeys.cloudcell,
192
+ application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
193
+ application/vnd.openblox.game-binary, application/vnd.uri-map,
194
+ audio/G711-0, image/vnd.mozilla.apng.
195
+
196
+ ## 2.6 / 2015-05-25
197
+
198
+ - Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
199
+ to application/font-woff,
200
+ [ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
201
+ - Updated the IANA media registry entries as of release date:
202
+ - Updated metadata for application/jose, application/jose+json,
203
+ application/jwk+json, application/jwk-set+json, application/jwt to
204
+ reflect the adoption of RFC7519.
205
+ - Added application/vnd.balsamiq.bmpr.
206
+
207
+ ## 2.5 / 2015-04-25
208
+
209
+ - Updated the IANA media registry entries as of release date:
210
+ - Added MIME types: application/A2L, application/AML, application/ATFX,
211
+ application/ATXML, application/CDFX+XML, application/CEA,
212
+ application/DII, application/DIT, application/jose,
213
+ application/jose+json, application/json-seq, application/jwk+json,
214
+ application/jwk-set+json, application/jwt, application/LXF,
215
+ application/MF4, application/rdap+json,
216
+ application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
217
+ application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
218
+ application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
219
+ application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
220
+ application/vnd.gov.sk.e-form+zip,
221
+ application/vnd.gov.sk.xmldatacontainer+xml,
222
+ application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
223
+ application/vnd.ims.imsccv1p3, application/vnd.micro+json,
224
+ application/vnd.microsoft.portable-executable,
225
+ application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
226
+ application/vnd.tmd.mediaflex.api+xml, audio/opus,
227
+ image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
228
+ TEMPORARY).
229
+ - Updated metadata for application/coap-group+json (RFC7390),
230
+ application/epub+zip (now registered), application/merge-patch+json
231
+ (RFC7396), application/smil, application/vnd.arastra.swi,
232
+ application/vnd.geocube+xml, application/vnd.gmx,
233
+ application/xhtml+xml, text/directory.
234
+ - Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
235
+ text/tab-separated-values,
236
+ [ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
237
+ - Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
238
+ image/x-ms-bmp with the extension `bmp`,
239
+ [ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
240
+
241
+ ## 2.4.2 / 2014-10-15
242
+
243
+ - Added application/vnd.ms-outlook as an unregistered MIME type with the
244
+ extension `msg`. Provided by @keerthisiv in
245
+ [ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
246
+
247
+ ## 2.4.1 / 2014-10-07
248
+
249
+ - Changed the sort order of many of the extensions to restore behaviour from
250
+ mime-types 1.25.1.
251
+ - Added `friendly` MIME::Type descriptions where known.
252
+ - Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
253
+ application/x-msdownload.
254
+ - Updated the IANA media registry entries as of release date.
255
+ - Several MIME types had updated metadata (application/alto-\*, RFC7285;
256
+ application/calendar+json, RFC7265; application/http, RFC7230;
257
+ application/xml, RFC7303; application/xml-dtd, RFC7303;
258
+ application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
259
+ audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
260
+ RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
261
+ - MIME::Type application/EDI-Consent was renamed to
262
+ application/EDI-consent.
263
+ - Obsoleted application/vnd.informix-visionary in favour of
264
+ application/vnd.visionary. Obsoleted
265
+ application/vnd.nokia.n-gage.symbian.install with no replacement.
266
+ - Added MIME types: application/ATF, application/coap-group+json,
267
+ application/DCD, application/merge-patch+json, application/scaip+xml,
268
+ application/vnd.apache.thrift.binary, application/vnd.artsquare,
269
+ application/vnd.doremir.scorecloud-binary-document,
270
+ application/vnd.dzr, application/vnd.maxmind.maxmind-db,
271
+ application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
272
+ image/vnd.tencent.tap.
273
+
274
+ ## 2.3 / 2014-05-23
275
+
276
+ - Updated the IANA media registry entries as of release date.
277
+ - Several MIME types had additional metadata added on the most recent
278
+ import.
279
+ - MIME::Type application/pidfxml was renamed to application/pidf+xml.
280
+ - Added MIME types: application/3gpdash-qoe-report+xml,
281
+ application/alto-costmap+json, application/alto-costmapfilter+json,
282
+ application/alto-directory+json, application/alto-endpointcost+json,
283
+ application/alto-endpointcostparams+json,
284
+ application/alto-endpointprop+json,
285
+ application/alto-endpointpropparams+json, application/alto-error+json,
286
+ application/alto-networkmap+json,
287
+ application/alto-networkmapfilter+json, application/calendar+json,
288
+ application/vnd.debian.binary-package, application/vnd.geo+json,
289
+ application/vnd.ims.lis.v2.result+json,
290
+ application/vnd.ims.lti.v2.toolconsumerprofile+json,
291
+ application/vnd.ims.lti.v2.toolproxy+json,
292
+ application/vnd.ims.lti.v2.toolproxy.id+json,
293
+ application/vnd.ims.lti.v2.toolsettings+json,
294
+ application/vnd.ims.lti.v2.toolsettings.simple+json,
295
+ application/vnd.mason+json, application/vnd.miele+json,
296
+ application/vnd.ms-3mfdocument, application/vnd.panoply,
297
+ application/vnd.valve.source.material, application/vnd.yaoweme,
298
+ audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
299
+ model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
300
+ text/cache-manifest
301
+
302
+ ## 2.2 / 2014-03-14
303
+
304
+ - Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
305
+ Galbraith (@brandongalbraith) in
306
+ [ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
307
+ - Marked application/excel and application/x-excel as obsolete in favour of
308
+ application/vnd.ms-excel per
309
+ [ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
310
+ - Merged duplicate MIME types into the registered MIME type. The only
311
+ difference between the MIME types was capitalization; the MIME type
312
+ registry is case-preserving.
313
+
314
+ - Affected MIME types: application/vnd.3M.Post-it-Notes,
315
+ application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
316
+ application/vnd.hp-HPGL, application/vnd.hp-PCL,
317
+ application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
318
+ application/vnd.Kinar, application/vnd.MFER,
319
+ application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
320
+ application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
321
+ application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
322
+ application/vnd.Mobius.TXF,
323
+ application/vnd.ms-excel.addin.macroEnabled.12,
324
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12,
325
+ application/vnd.ms-excel.sheet.macroEnabled.12,
326
+ application/vnd.ms-excel.template.macroEnabled.12,
327
+ application/vnd.ms-powerpoint.addin.macroEnabled.12,
328
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12,
329
+ application/vnd.ms-powerpoint.slide.macroEnabled.12,
330
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
331
+ application/vnd.ms-powerpoint.template.macroEnabled.12,
332
+ application/vnd.ms-word.document.macroEnabled.12,
333
+ application/vnd.ms-word.template.macroEnabled.12,
334
+ application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
335
+ application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
336
+ application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
337
+ video/H263, video/H264, video/JPEG, video/MJ2.
338
+
339
+ - Updated the IANA media registry entries as of release date.
340
+ - Registered type person names have been updated from surname only to
341
+ full name.
342
+ - Several types had updated RFC or draft RFC references.
343
+ - Added application/bacnet-xdd+zip, application/cms,
344
+ application/load-control+xml, application/PDX, application/ttml+xml,
345
+ application/vnd.collection.doc+json,
346
+ application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
347
+ text/parameters, text/vnd.a, video/iso.segment
348
+
349
+ ## 2.1 / 2014-01-25
350
+
351
+ - The IANA media type registry format changed, resulting in updates to most
352
+ of the 1,427 registered MIME types.
353
+ - Many registered MIME types have had some metadata updates due to the
354
+ change in the IANA registry format.
355
+ - MIME types having a publicly available registry application now
356
+ include a link to that file in references.
357
+ - Added `xrefs` data as discovered (see the API changes noted above).
358
+ - The Apache mime types configuration has been added to track additional
359
+ common but unregistered MIME types and known extensions for those MIME
360
+ types. This has affected many of the available MIME types.
361
+ - Added newly registered MIME types:
362
+ - application/emotionml+xml, application/ODX, application/prs.hpub+zip,
363
+ application/vcard+json, application/vnd.bekitzur-stech+json,
364
+ application/vnd.etsi.timestamp-token,
365
+ application/vnd.oma.cab-feature-handler+xml,
366
+ application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
367
+ audio/amr-wb, model/x3d+xml, model/x3d-vrml
368
+ - Added 180 unregistered MIME types from the Apache list:
369
+ - application/applixware, application/cu-seeme, application/docbook+xml,
370
+ application/gml+xml, application/gpx+xml, application/gxf,
371
+ application/java-archive, application/java-serialized-object,
372
+ application/java-vm, application/jsonml+json, application/metalink+xml,
373
+ application/omdoc+xml, application/onenote, application/pics-rules,
374
+ application/rsd+xml, application/ssdl+xml,
375
+ application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
376
+ application/vnd.anser-web-funds-transfer-initiation,
377
+ application/vnd.curl.car, application/vnd.curl.pcurl,
378
+ application/vnd.dolby.mlp, application/vnd.ds-keypoint,
379
+ application/vnd.flographit, application/vnd.handheld-entertainment+xml,
380
+ application/vnd.hp-hpgl, application/vnd.hp-pcl,
381
+ application/vnd.hp-pclxl, application/vnd.ibm.minipay,
382
+ application/vnd.kinar, application/vnd.mfer,
383
+ application/vnd.mobius.daf, application/vnd.mobius.dis,
384
+ application/vnd.mobius.mbk, application/vnd.mobius.mqy,
385
+ application/vnd.mobius.msl, application/vnd.mobius.plc,
386
+ application/vnd.mobius.txf,
387
+ application/vnd.ms-excel.addin.macroenabled.12,
388
+ application/vnd.ms-excel.sheet.binary.macroenabled.12,
389
+ application/vnd.ms-excel.sheet.macroenabled.12,
390
+ application/vnd.ms-excel.template.macroenabled.12,
391
+ application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
392
+ application/vnd.ms-powerpoint.addin.macroenabled.12,
393
+ application/vnd.ms-powerpoint.presentation.macroenabled.12,
394
+ application/vnd.ms-powerpoint.slide.macroenabled.12,
395
+ application/vnd.ms-powerpoint.slideshow.macroenabled.12,
396
+ application/vnd.ms-powerpoint.template.macroenabled.12,
397
+ application/vnd.ms-word.document.macroenabled.12,
398
+ application/vnd.ms-word.template.macroenabled.12,
399
+ application/vnd.novadigm.edm, application/vnd.novadigm.edx,
400
+ application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
401
+ application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
402
+ application/vnd.simtech-mindmapper, application/vnd.symbian.install,
403
+ application/winhlp, application/x-abiword,
404
+ application/x-ace-compressed, application/x-authorware-bin,
405
+ application/x-authorware-map, application/x-authorware-seg,
406
+ application/x-bittorrent, application/x-blorb, application/x-bzip,
407
+ application/x-cbr, application/x-cfs-compressed, application/x-chat,
408
+ application/x-conference, application/x-dgc-compressed,
409
+ application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
410
+ application/x-dtbresource+xml, application/x-envoy, application/x-eva,
411
+ application/x-font-bdf, application/x-font-ghostscript,
412
+ application/x-font-linux-psf, application/x-font-otf,
413
+ application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
414
+ application/x-font-type1, application/x-freearc,
415
+ application/x-gca-compressed, application/x-glulx,
416
+ application/x-gnumeric, application/x-gramps-xml,
417
+ application/x-install-instructions, application/x-iso9660-image,
418
+ application/x-lzh-compressed, application/x-mie,
419
+ application/x-ms-application, application/x-ms-shortcut,
420
+ application/x-ms-xbap, application/x-msbinder,
421
+ application/x-mscardfile, application/x-msclip,
422
+ application/x-msmediaview, application/x-msmetafile,
423
+ application/x-msmoney, application/x-mspublisher,
424
+ application/x-msschedule, application/x-msterminal,
425
+ application/x-mswrite, application/x-nzb, application/x-pkcs12,
426
+ application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
427
+ application/x-research-info-systems, application/x-silverlight-app,
428
+ application/x-sql, application/x-stuffitx, application/x-subrip,
429
+ application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
430
+ application/x-tgif, application/x-xfig, application/x-xliff+xml,
431
+ application/x-xz, application/x-zmachine, application/xaml+xml,
432
+ application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
433
+ audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
434
+ audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
435
+ chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
436
+ chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
437
+ image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
438
+ image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
439
+ text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
440
+ text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
441
+ text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
442
+ video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
443
+ video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
444
+ - Merged the non-standard VMS platform text/plain with the standard
445
+ text/plain.
446
+
447
+ [#10]: https://github.com/mime-types/mime-types-data/pull/10
448
+ [#11]: https://github.com/mime-types/mime-types-data/pull/11
449
+ [#12]: https://github.com/mime-types/mime-types-data/pull/12
450
+ [#13]: https://github.com/mime-types/mime-types-data/pull/13
451
+ [#18]: https://github.com/mime-types/mime-types-data/issues/18
452
+ [#20]: https://github.com/mime-types/mime-types-data/pull/20
453
+ [#21]: https://github.com/mime-types/mime-types-data/pull/21
454
+ [#22]: https://github.com/mime-types/mime-types-data/issues/22
455
+ [#23]: https://github.com/mime-types/mime-types-data/pull/23
456
+ [#24]: https://github.com/mime-types/mime-types-data/pull/24
457
+ [#28]: https://github.com/mime-types/mime-types-data/pull/28
458
+ [#29]: https://github.com/mime-types/mime-types-data/pull/29
459
+ [#30]: https://github.com/mime-types/mime-types-data/pull/30
460
+ [#31]: https://github.com/mime-types/mime-types-data/pull/31
461
+ [#32]: https://github.com/mime-types/mime-types-data/issues/32
462
+ [#33]: https://github.com/mime-types/mime-types-data/pull/33
463
+ [#34]: https://github.com/mime-types/mime-types-data/pull/34
464
+ [#35]: https://github.com/mime-types/mime-types-data/pull/35
465
+ [#36]: https://github.com/mime-types/mime-types-data/pull/36
466
+ [#40]: https://github.com/mime-types/mime-types-data/pull/40
467
+ [rmt]: https://github.com/mime-types/ruby-mime-types
468
+ [code of conduct]: Code-of-Conduct.md