vagrant-unbundled 2.2.18.0 → 2.2.19.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (176) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +15 -0
  3. data/Gemfile.lock +6 -6
  4. data/contrib/zsh/generate_zsh_completion.rb +2 -2
  5. data/lib/vagrant/errors.rb +8 -0
  6. data/plugins/commands/upload/command.rb +1 -1
  7. data/plugins/guests/atomic/guest.rb +1 -1
  8. data/plugins/guests/coreos/cap/configure_networks.rb +65 -0
  9. data/plugins/guests/darwin/cap/mount_smb_shared_folder.rb +6 -3
  10. data/plugins/guests/suse/cap/halt.rb +5 -1
  11. data/plugins/guests/windows/cap/rsync.rb +5 -1
  12. data/plugins/hosts/darwin/cap/path.rb +4 -0
  13. data/plugins/hosts/darwin/cap/version.rb +23 -0
  14. data/plugins/hosts/darwin/plugin.rb +5 -0
  15. data/plugins/hosts/windows/cap/ssh.rb +1 -1
  16. data/plugins/providers/virtualbox/action/network.rb +39 -2
  17. data/plugins/provisioners/chef/cap/freebsd/chef_installed.rb +5 -3
  18. data/plugins/provisioners/chef/cap/linux/chef_installed.rb +5 -3
  19. data/plugins/provisioners/chef/cap/omnios/chef_installed.rb +7 -5
  20. data/plugins/provisioners/chef/cap/windows/chef_installed.rb +3 -2
  21. data/templates/locales/en.yml +25 -0
  22. data/vagrant.gemspec +1 -1
  23. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTING.md +23 -0
  24. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/CONTRIBUTORS.md +140 -0
  25. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/LICENSE.md +20 -0
  26. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/README.md +492 -0
  27. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/data/cacert.pem +3232 -0
  28. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/excon.gemspec +45 -0
  29. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/connection.rb +599 -0
  30. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/constants.rb +172 -0
  31. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/error.rb +229 -0
  32. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/extensions/uri.rb +34 -0
  33. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/headers.rb +85 -0
  34. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/logging_instrumentor.rb +48 -0
  35. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/instrumentors/standard_instrumentor.rb +21 -0
  36. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/base.rb +31 -0
  37. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/capture_cookies.rb +32 -0
  38. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/decompress.rb +44 -0
  39. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/escape_path.rb +12 -0
  40. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/expects.rb +25 -0
  41. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/idempotent.rb +57 -0
  42. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/instrumentor.rb +49 -0
  43. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/mock.rb +61 -0
  44. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/redirect_follower.rb +87 -0
  45. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/middlewares/response_parser.rb +16 -0
  46. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/pretty_printer.rb +39 -0
  47. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/response.rb +234 -0
  48. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/socket.rb +297 -0
  49. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/ssl_socket.rb +194 -0
  50. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/exec.rb +26 -0
  51. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/puma.rb +23 -0
  52. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/unicorn.rb +40 -0
  53. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/plugin/server/webrick.rb +26 -0
  54. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/test/server.rb +106 -0
  55. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/unix_socket.rb +42 -0
  56. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/utils.rb +143 -0
  57. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon/version.rb +4 -0
  58. data/vendor/bundle/ruby/3.0.0/gems/excon-0.89.0/lib/excon.rb +255 -0
  59. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/MIT-LICENSE +20 -0
  60. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/README.md +122 -0
  61. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/base.rb +289 -0
  62. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache.rb +113 -0
  63. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cache_file.rb +36 -0
  64. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/cascade.rb +56 -0
  65. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/chain.rb +130 -0
  66. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/fallbacks.rb +97 -0
  67. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/flatten.rb +118 -0
  68. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/gettext.rb +85 -0
  69. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/interpolation_compiler.rb +123 -0
  70. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/key_value.rb +206 -0
  71. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/memoize.rb +54 -0
  72. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/metadata.rb +71 -0
  73. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/pluralization.rb +55 -0
  74. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/simple.rb +108 -0
  75. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend/transliterator.rb +108 -0
  76. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/backend.rb +21 -0
  77. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/config.rb +165 -0
  78. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/core_ext/hash.rb +59 -0
  79. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/exceptions.rb +111 -0
  80. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/helpers.rb +75 -0
  81. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext/po_parser.rb +329 -0
  82. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/gettext.rb +28 -0
  83. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/interpolate/ruby.rb +39 -0
  84. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/fallbacks.rb +99 -0
  85. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/parents.rb +24 -0
  86. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/rfc4646.rb +74 -0
  87. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag/simple.rb +39 -0
  88. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale/tag.rb +28 -0
  89. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/locale.rb +8 -0
  90. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/middleware.rb +17 -0
  91. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/basics.rb +60 -0
  92. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/defaults.rb +52 -0
  93. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/interpolation.rb +163 -0
  94. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/link.rb +66 -0
  95. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date.rb +117 -0
  96. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/date_time.rb +103 -0
  97. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/procs.rb +117 -0
  98. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization/time.rb +103 -0
  99. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/localization.rb +19 -0
  100. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/lookup.rb +81 -0
  101. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/pluralization.rb +35 -0
  102. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests/procs.rb +60 -0
  103. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/tests.rb +14 -0
  104. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n/version.rb +5 -0
  105. data/vendor/bundle/ruby/3.0.0/gems/i18n-1.8.11/lib/i18n.rb +415 -0
  106. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Code-of-Conduct.md +73 -0
  107. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Contributing.md +132 -0
  108. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/History.md +269 -0
  109. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Licence.md +25 -0
  110. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Manifest.txt +31 -0
  111. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/README.rdoc +194 -0
  112. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/Rakefile +270 -0
  113. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type/columnar.rb +57 -0
  114. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/type.rb +634 -0
  115. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/_columnar.rb +137 -0
  116. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/cache.rb +58 -0
  117. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/columnar.rb +3 -0
  118. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/container.rb +96 -0
  119. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/deprecations.rb +36 -0
  120. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/full.rb +19 -0
  121. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/loader.rb +159 -0
  122. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/logger.rb +37 -0
  123. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types/registry.rb +90 -0
  124. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime/types.rb +233 -0
  125. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/lib/mime-types.rb +3 -0
  126. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/bad-fixtures/malformed +9 -0
  127. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/json.json +1 -0
  128. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/old-data +9 -0
  129. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/fixture/yaml.yaml +55 -0
  130. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/minitest_helper.rb +11 -0
  131. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_type.rb +621 -0
  132. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types.rb +169 -0
  133. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_cache.rb +118 -0
  134. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_class.rb +159 -0
  135. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_lazy.rb +49 -0
  136. data/vendor/bundle/ruby/3.0.0/gems/mime-types-3.4.1/test/test_mime_types_loader.rb +32 -0
  137. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Code-of-Conduct.md +75 -0
  138. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Contributing.md +241 -0
  139. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/History.md +494 -0
  140. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Licence.md +24 -0
  141. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Manifest.txt +34 -0
  142. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/README.md +73 -0
  143. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/Rakefile +155 -0
  144. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/content_type_mime.db +878 -0
  145. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/ext_mime.db +1198 -0
  146. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime-types.json +1 -0
  147. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.content_type.column +2376 -0
  148. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.docs.column +2376 -0
  149. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.encoding.column +2376 -0
  150. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.flags.column +2376 -0
  151. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.friendly.column +2376 -0
  152. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.pext.column +2376 -0
  153. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.use_instead.column +2376 -0
  154. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/data/mime.xrefs.column +2376 -0
  155. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime/types/data.rb +21 -0
  156. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/lib/mime-types-data.rb +3 -0
  157. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/application.yaml +17254 -0
  158. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/audio.yaml +1716 -0
  159. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/chemical.yaml +71 -0
  160. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/conference.yaml +9 -0
  161. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/drawing.yaml +15 -0
  162. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/font.yaml +65 -0
  163. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/image.yaml +1251 -0
  164. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/message.yaml +200 -0
  165. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/model.yaml +390 -0
  166. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/multipart.yaml +179 -0
  167. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/provisional-standard-types.yaml +129 -0
  168. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/text.yaml +1166 -0
  169. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/video.yaml +1121 -0
  170. data/vendor/bundle/ruby/3.0.0/gems/mime-types-data-3.2021.1115/types/world.yaml +8 -0
  171. data/vendor/bundle/ruby/3.0.0/specifications/excon-0.89.0.gemspec +58 -0
  172. data/vendor/bundle/ruby/3.0.0/specifications/i18n-1.8.11.gemspec +32 -0
  173. data/vendor/bundle/ruby/3.0.0/specifications/mime-types-3.4.1.gemspec +63 -0
  174. data/vendor/bundle/ruby/3.0.0/specifications/mime-types-data-3.2021.1115.gemspec +54 -0
  175. data/version.txt +1 -1
  176. metadata +157 -4
@@ -0,0 +1,494 @@
1
+ # MIME Types Changes by Version
2
+
3
+ <!-- automatic-release -->
4
+
5
+ ## 3.2021.1115 / 2021-11-15
6
+
7
+ - Updated the Apache and IANA media registry entries as of release date.
8
+
9
+ - Added conversion utilities that support the `mini_mime` data format. These
10
+ have been ported from the [mini_mime] repository. [#47]
11
+
12
+ - Added IANA provisional media registries. Added some notes to Contributing.md
13
+ about the transient nature of the provisional registration data. This was
14
+ triggered in part by a pull request by Jon Sneyers. Thanks! [#45], [#43]
15
+
16
+ ## 3.2021.0901 / 2021-09-01
17
+
18
+ - Updated the Apache and IANA media registry entries as of release date.
19
+
20
+ - Added file extension for WebVTT text format. [#46]
21
+
22
+ ## 3.2021.0704 / 2021-07-04
23
+
24
+ - Updated the Apache and IANA media registry entries as of release date.
25
+
26
+ ## 3.2021.0225 / 2021-02-25
27
+
28
+ - Updated the Apache and IANA media registry entries as of release date.
29
+
30
+ - Added file extension for AVIF video format. [#40]
31
+
32
+ ## 3.2021.0212 / 2021-02-12
33
+
34
+ - Updated the IANA media registry entries as of release date.
35
+
36
+ - Added a new rake task (`release:automatic`) that downloads and converts the
37
+ data from Apache and IANA; if there are changes detected, it updates the
38
+ release version, changelog, manifest, and gemspec and commits the changes
39
+ to git.
40
+
41
+ ## 3.2020.1104 / 2020-11-04
42
+
43
+ - Updated the IANA media registry entries as of release date.
44
+
45
+ - Added `application/x-zip-compressed`. [#36]
46
+
47
+ - Updated the contributing guide to include information about the release
48
+ process as described in [#18]
49
+
50
+ - Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35]
51
+
52
+ ## 3.2020.0512 / 2020-05-12
53
+
54
+ - Updated the IANA media registry entries as of release date.
55
+
56
+ - Added file extensions for HEIC image types. [#34]
57
+
58
+ ## 3.2020.0425 / 2020-04-25
59
+
60
+ - Updated the IANA media registry entries as of release date.
61
+
62
+ - Added several RAW image types based on data from GNOME RAW Thumbnailer.
63
+ [#33] fixing [#32]
64
+
65
+ - Added `audio/wav`. [#31]
66
+
67
+ - Added a type for Smarttech notebook files. [#30]
68
+
69
+ - Added an alias for audio/m4a files. [#29]
70
+
71
+ - Added application/x-ms-dos-executable. [#28]
72
+
73
+ ## 3.2019.1009 / 2019-10-09
74
+
75
+ - Updated the IANA media registry entries as of release date.
76
+
77
+ - Reordered the `.ai` extension so that it is not the preferred extension for
78
+ `application/pdf` [#24]
79
+
80
+ ## 3.2019.0904 / 2019-09-04
81
+
82
+ - Updated the IANA media registry entries as of release date.
83
+
84
+ - Moved the `.ai` extension from `application/postscript` to `application/pdf`.
85
+ [#23] fixing [#22]
86
+
87
+ ## 3.2019.0331 / 2019-03-31
88
+
89
+ - Updated the IANA media registry entries as of release date.
90
+
91
+ - Added support for `application/wasm` with extension `.wasm`. [#21]
92
+
93
+ - Fixed `application/ecmascript` extensions. [#20]
94
+
95
+ ## 3.2018.0812 / 2018-08-12
96
+
97
+ - Added `.xsd` extension to `text/xml`. [#10]
98
+
99
+ - Added `.js` and `.mjs` extensions to `text/ecmascript` and
100
+ `text/javascript`. [#11]
101
+
102
+ - Added `.ipa` extension to `application/octet-stream`. [#12]
103
+
104
+ - Moved extensions `.markdown` and `.md` and added `.mkd` extension to
105
+ `text/markdown`. [#13]
106
+
107
+ - Because of a bug found with mime-types 3 before 3.2.1, this version
108
+ requires mime-types 3.1 or later to manage data.
109
+
110
+ - Updated the IANA media registry entries as of release date. The biggest
111
+ major change here is the addition of the `font/` top-level media type.
112
+
113
+ - MIME type changes not introduced by pull requests will no longer be
114
+ individually tracked.
115
+
116
+ - Clarified that the YAML editable format is not shipped with the Ruby gem
117
+ for size considerations.
118
+
119
+ ## 3.2016.0521 / 2016-05-21
120
+
121
+ - Updated the known extension list for application/octet-stream and
122
+ application/pgp-encrypted to include gpg as an extension. Fixes
123
+ [#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
124
+ (@taoza).
125
+ - Updated the IANA media registry entries as of release date:
126
+
127
+ - Updated metadata for application/EmergencyCallData.Comment+xml,
128
+ application/EmergencyCallData.DeviceInfo+xml,
129
+ application/EmergencyCallData.ProviderInfo+xml,
130
+ application/EmergencyCallData.ServiceInfo+xml,
131
+ application/EmergencyCallData.SubscriberInfo+xml,
132
+ application/ogg, application/problem+json, application/problem+xml,
133
+ audio/ogg, text/markdown, video/H265, video/ogg.
134
+ - Added application/efi, application/vnd.3gpp.sms+xml,
135
+ application/vnd.3lightssoftware.imagescal,
136
+ application/vnd.coreos.ignition+json, application/vnd.oma.lwm2m+json,
137
+ application/vnd.onepager, application/vnd.quarantainenet,
138
+ application/vnd.vel+json, image/emf, image/wmf, text/prs.prop.logic.
139
+ - image/bmp has a draft RFC which would make it official; it has been
140
+ finally been registered. As such, this version _reverses_ the
141
+ use-instead relationship of image/bmp and image/x-bmp.
142
+
143
+ - This version requires mime-types 3.1 or later to manage data because of an
144
+ issue with JSON data encoding for the `xrefs` field.
145
+
146
+ ## 3.2016.0221 / 2016-02-21
147
+
148
+ - Updated the known extensions list for audio/mp4.
149
+ - Updated the IANA media registry entries as of release date:
150
+
151
+ - Updated metadata for 3GPP-defined types (there are many),
152
+ application/cdni, and application/rfc+xml.
153
+ - Added application/EmergencyCallData.Comment+xml,
154
+ application/EmergencyCallData.DeviceInfo+xml,
155
+ application/EmergencyCallData.ProviderInfo+xml,
156
+ application/EmergencyCallData.ServiceInfo+xml,
157
+ application/ppsp-tracker+json, application/problem+json,
158
+ application/problem+xml, application/vnd.filmit.zfc,
159
+ application/vnd.hdt, application/vnd.mapbox-vector-tile,
160
+ application/vnd.ms-PrintDeviceCapabilities+xml,
161
+ application/vnd.ms-PrintSchemaTicket+xml,
162
+ application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
163
+ model/vnd.rosette.annotated-data-model, and video/H265.
164
+
165
+ - Updated to [Contributor Covenant 1.4][code of conduct].
166
+ - Shift the support code in this repository to be developed with Ruby 2.3.
167
+ This involves:
168
+
169
+ - Adding `frozen_string_literal: true` to all Ruby files.
170
+ - Applied some recommended readability and performance suggestions from
171
+ Rubocop. Ignored some style recommendations, too.
172
+ - Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
173
+
174
+ ## 3.2015.1120 / 2015-11-20
175
+
176
+ - Extracted from [ruby-mime-types][rmt].
177
+ - Added a [Code of Conduct].
178
+ - The versioning has changed to be semantic on format plus date in two parts.
179
+
180
+ - All registry formats have been updated to remove deprecated data.
181
+ - The columnar format has been updated to store three boolean flags in a
182
+ single flags file.
183
+
184
+ - Updated the conversion and management utilities to work with
185
+ ruby-mime-types 3.x.
186
+
187
+ - Updated the IANA media registry entries as of release date:
188
+
189
+ - Updated metadata for application/scim+json, audio/G711-0, text/markdown.
190
+
191
+ - Added application/cdni, application/csvm+json, application/rfc+xml,
192
+ application/vnd.3gpp.access-transfer-events+xml,
193
+ application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
194
+ application/vnd.ms-windows.devicepairing,
195
+ application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
196
+ application/vnd.pagerduty+json, video/VP8.
197
+
198
+ ## 2.6.2 / 2015-09-13
199
+
200
+ - Updated the IANA media registry entries as of release date:
201
+
202
+ - Updated metadata for application/cals-1840, application/index.obj,
203
+ application/ocsp-response, application/vnd.dtg.local.html,
204
+ application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
205
+
206
+ - Added application/pkcs12, application/scim+json, multipart/form-data.
207
+ application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
208
+ application/vnd.3gpp.mid-call+xml,
209
+ application/vnd.3gpp-state-and-event-info+xml,
210
+ application.3gpp.ussd+xml, application/vnd.anki,
211
+ application/vnd.biopax.rdf+xml, application/vnd.drive+json,
212
+ application/vnd.firemonkeys.cloudcell,
213
+ application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
214
+ application/vnd.openblox.game-binary, application/vnd.uri-map,
215
+ audio/G711-0, image/vnd.mozilla.apng.
216
+
217
+ ## 2.6 / 2015-05-25
218
+
219
+ - Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
220
+ to application/font-woff,
221
+ [ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
222
+ - Updated the IANA media registry entries as of release date:
223
+ - Updated metadata for application/jose, application/jose+json,
224
+ application/jwk+json, application/jwk-set+json, application/jwt to
225
+ reflect the adoption of RFC7519.
226
+ - Added application/vnd.balsamiq.bmpr.
227
+
228
+ ## 2.5 / 2015-04-25
229
+
230
+ - Updated the IANA media registry entries as of release date:
231
+ - Added MIME types: application/A2L, application/AML, application/ATFX,
232
+ application/ATXML, application/CDFX+XML, application/CEA,
233
+ application/DII, application/DIT, application/jose,
234
+ application/jose+json, application/json-seq, application/jwk+json,
235
+ application/jwk-set+json, application/jwt, application/LXF,
236
+ application/MF4, application/rdap+json,
237
+ application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
238
+ application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
239
+ application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
240
+ application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
241
+ application/vnd.gov.sk.e-form+zip,
242
+ application/vnd.gov.sk.xmldatacontainer+xml,
243
+ application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
244
+ application/vnd.ims.imsccv1p3, application/vnd.micro+json,
245
+ application/vnd.microsoft.portable-executable,
246
+ application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
247
+ application/vnd.tmd.mediaflex.api+xml, audio/opus,
248
+ image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
249
+ TEMPORARY).
250
+ - Updated metadata for application/coap-group+json (RFC7390),
251
+ application/epub+zip (now registered), application/merge-patch+json
252
+ (RFC7396), application/smil, application/vnd.arastra.swi,
253
+ application/vnd.geocube+xml, application/vnd.gmx,
254
+ application/xhtml+xml, text/directory.
255
+ - Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
256
+ text/tab-separated-values,
257
+ [ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
258
+ - Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
259
+ image/x-ms-bmp with the extension `bmp`,
260
+ [ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
261
+
262
+ ## 2.4.2 / 2014-10-15
263
+
264
+ - Added application/vnd.ms-outlook as an unregistered MIME type with the
265
+ extension `msg`. Provided by @keerthisiv in
266
+ [ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
267
+
268
+ ## 2.4.1 / 2014-10-07
269
+
270
+ - Changed the sort order of many of the extensions to restore behaviour from
271
+ mime-types 1.25.1.
272
+ - Added `friendly` MIME::Type descriptions where known.
273
+ - Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
274
+ application/x-msdownload.
275
+ - Updated the IANA media registry entries as of release date.
276
+ - Several MIME types had updated metadata (application/alto-\*, RFC7285;
277
+ application/calendar+json, RFC7265; application/http, RFC7230;
278
+ application/xml, RFC7303; application/xml-dtd, RFC7303;
279
+ application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
280
+ audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
281
+ RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
282
+ - MIME::Type application/EDI-Consent was renamed to
283
+ application/EDI-consent.
284
+ - Obsoleted application/vnd.informix-visionary in favour of
285
+ application/vnd.visionary. Obsoleted
286
+ application/vnd.nokia.n-gage.symbian.install with no replacement.
287
+ - Added MIME types: application/ATF, application/coap-group+json,
288
+ application/DCD, application/merge-patch+json, application/scaip+xml,
289
+ application/vnd.apache.thrift.binary, application/vnd.artsquare,
290
+ application/vnd.doremir.scorecloud-binary-document,
291
+ application/vnd.dzr, application/vnd.maxmind.maxmind-db,
292
+ application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
293
+ image/vnd.tencent.tap.
294
+
295
+ ## 2.3 / 2014-05-23
296
+
297
+ - Updated the IANA media registry entries as of release date.
298
+ - Several MIME types had additional metadata added on the most recent
299
+ import.
300
+ - MIME::Type application/pidfxml was renamed to application/pidf+xml.
301
+ - Added MIME types: application/3gpdash-qoe-report+xml,
302
+ application/alto-costmap+json, application/alto-costmapfilter+json,
303
+ application/alto-directory+json, application/alto-endpointcost+json,
304
+ application/alto-endpointcostparams+json,
305
+ application/alto-endpointprop+json,
306
+ application/alto-endpointpropparams+json, application/alto-error+json,
307
+ application/alto-networkmap+json,
308
+ application/alto-networkmapfilter+json, application/calendar+json,
309
+ application/vnd.debian.binary-package, application/vnd.geo+json,
310
+ application/vnd.ims.lis.v2.result+json,
311
+ application/vnd.ims.lti.v2.toolconsumerprofile+json,
312
+ application/vnd.ims.lti.v2.toolproxy+json,
313
+ application/vnd.ims.lti.v2.toolproxy.id+json,
314
+ application/vnd.ims.lti.v2.toolsettings+json,
315
+ application/vnd.ims.lti.v2.toolsettings.simple+json,
316
+ application/vnd.mason+json, application/vnd.miele+json,
317
+ application/vnd.ms-3mfdocument, application/vnd.panoply,
318
+ application/vnd.valve.source.material, application/vnd.yaoweme,
319
+ audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
320
+ model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
321
+ text/cache-manifest
322
+
323
+ ## 2.2 / 2014-03-14
324
+
325
+ - Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
326
+ Galbraith (@brandongalbraith) in
327
+ [ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
328
+ - Marked application/excel and application/x-excel as obsolete in favour of
329
+ application/vnd.ms-excel per
330
+ [ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
331
+ - Merged duplicate MIME types into the registered MIME type. The only
332
+ difference between the MIME types was capitalization; the MIME type
333
+ registry is case-preserving.
334
+
335
+ - Affected MIME types: application/vnd.3M.Post-it-Notes,
336
+ application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
337
+ application/vnd.hp-HPGL, application/vnd.hp-PCL,
338
+ application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
339
+ application/vnd.Kinar, application/vnd.MFER,
340
+ application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
341
+ application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
342
+ application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
343
+ application/vnd.Mobius.TXF,
344
+ application/vnd.ms-excel.addin.macroEnabled.12,
345
+ application/vnd.ms-excel.sheet.binary.macroEnabled.12,
346
+ application/vnd.ms-excel.sheet.macroEnabled.12,
347
+ application/vnd.ms-excel.template.macroEnabled.12,
348
+ application/vnd.ms-powerpoint.addin.macroEnabled.12,
349
+ application/vnd.ms-powerpoint.presentation.macroEnabled.12,
350
+ application/vnd.ms-powerpoint.slide.macroEnabled.12,
351
+ application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
352
+ application/vnd.ms-powerpoint.template.macroEnabled.12,
353
+ application/vnd.ms-word.document.macroEnabled.12,
354
+ application/vnd.ms-word.template.macroEnabled.12,
355
+ application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
356
+ application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
357
+ application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
358
+ video/H263, video/H264, video/JPEG, video/MJ2.
359
+
360
+ - Updated the IANA media registry entries as of release date.
361
+ - Registered type person names have been updated from surname only to
362
+ full name.
363
+ - Several types had updated RFC or draft RFC references.
364
+ - Added application/bacnet-xdd+zip, application/cms,
365
+ application/load-control+xml, application/PDX, application/ttml+xml,
366
+ application/vnd.collection.doc+json,
367
+ application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
368
+ text/parameters, text/vnd.a, video/iso.segment
369
+
370
+ ## 2.1 / 2014-01-25
371
+
372
+ - The IANA media type registry format changed, resulting in updates to most
373
+ of the 1,427 registered MIME types.
374
+ - Many registered MIME types have had some metadata updates due to the
375
+ change in the IANA registry format.
376
+ - MIME types having a publicly available registry application now
377
+ include a link to that file in references.
378
+ - Added `xrefs` data as discovered (see the API changes noted above).
379
+ - The Apache mime types configuration has been added to track additional
380
+ common but unregistered MIME types and known extensions for those MIME
381
+ types. This has affected many of the available MIME types.
382
+ - Added newly registered MIME types:
383
+ - application/emotionml+xml, application/ODX, application/prs.hpub+zip,
384
+ application/vcard+json, application/vnd.bekitzur-stech+json,
385
+ application/vnd.etsi.timestamp-token,
386
+ application/vnd.oma.cab-feature-handler+xml,
387
+ application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
388
+ audio/amr-wb, model/x3d+xml, model/x3d-vrml
389
+ - Added 180 unregistered MIME types from the Apache list:
390
+ - application/applixware, application/cu-seeme, application/docbook+xml,
391
+ application/gml+xml, application/gpx+xml, application/gxf,
392
+ application/java-archive, application/java-serialized-object,
393
+ application/java-vm, application/jsonml+json, application/metalink+xml,
394
+ application/omdoc+xml, application/onenote, application/pics-rules,
395
+ application/rsd+xml, application/ssdl+xml,
396
+ application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
397
+ application/vnd.anser-web-funds-transfer-initiation,
398
+ application/vnd.curl.car, application/vnd.curl.pcurl,
399
+ application/vnd.dolby.mlp, application/vnd.ds-keypoint,
400
+ application/vnd.flographit, application/vnd.handheld-entertainment+xml,
401
+ application/vnd.hp-hpgl, application/vnd.hp-pcl,
402
+ application/vnd.hp-pclxl, application/vnd.ibm.minipay,
403
+ application/vnd.kinar, application/vnd.mfer,
404
+ application/vnd.mobius.daf, application/vnd.mobius.dis,
405
+ application/vnd.mobius.mbk, application/vnd.mobius.mqy,
406
+ application/vnd.mobius.msl, application/vnd.mobius.plc,
407
+ application/vnd.mobius.txf,
408
+ application/vnd.ms-excel.addin.macroenabled.12,
409
+ application/vnd.ms-excel.sheet.binary.macroenabled.12,
410
+ application/vnd.ms-excel.sheet.macroenabled.12,
411
+ application/vnd.ms-excel.template.macroenabled.12,
412
+ application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
413
+ application/vnd.ms-powerpoint.addin.macroenabled.12,
414
+ application/vnd.ms-powerpoint.presentation.macroenabled.12,
415
+ application/vnd.ms-powerpoint.slide.macroenabled.12,
416
+ application/vnd.ms-powerpoint.slideshow.macroenabled.12,
417
+ application/vnd.ms-powerpoint.template.macroenabled.12,
418
+ application/vnd.ms-word.document.macroenabled.12,
419
+ application/vnd.ms-word.template.macroenabled.12,
420
+ application/vnd.novadigm.edm, application/vnd.novadigm.edx,
421
+ application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
422
+ application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
423
+ application/vnd.simtech-mindmapper, application/vnd.symbian.install,
424
+ application/winhlp, application/x-abiword,
425
+ application/x-ace-compressed, application/x-authorware-bin,
426
+ application/x-authorware-map, application/x-authorware-seg,
427
+ application/x-bittorrent, application/x-blorb, application/x-bzip,
428
+ application/x-cbr, application/x-cfs-compressed, application/x-chat,
429
+ application/x-conference, application/x-dgc-compressed,
430
+ application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
431
+ application/x-dtbresource+xml, application/x-envoy, application/x-eva,
432
+ application/x-font-bdf, application/x-font-ghostscript,
433
+ application/x-font-linux-psf, application/x-font-otf,
434
+ application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
435
+ application/x-font-type1, application/x-freearc,
436
+ application/x-gca-compressed, application/x-glulx,
437
+ application/x-gnumeric, application/x-gramps-xml,
438
+ application/x-install-instructions, application/x-iso9660-image,
439
+ application/x-lzh-compressed, application/x-mie,
440
+ application/x-ms-application, application/x-ms-shortcut,
441
+ application/x-ms-xbap, application/x-msbinder,
442
+ application/x-mscardfile, application/x-msclip,
443
+ application/x-msmediaview, application/x-msmetafile,
444
+ application/x-msmoney, application/x-mspublisher,
445
+ application/x-msschedule, application/x-msterminal,
446
+ application/x-mswrite, application/x-nzb, application/x-pkcs12,
447
+ application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
448
+ application/x-research-info-systems, application/x-silverlight-app,
449
+ application/x-sql, application/x-stuffitx, application/x-subrip,
450
+ application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
451
+ application/x-tgif, application/x-xfig, application/x-xliff+xml,
452
+ application/x-xz, application/x-zmachine, application/xaml+xml,
453
+ application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
454
+ audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
455
+ audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
456
+ chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
457
+ chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
458
+ image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
459
+ image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
460
+ text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
461
+ text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
462
+ text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
463
+ video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
464
+ video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
465
+ - Merged the non-standard VMS platform text/plain with the standard
466
+ text/plain.
467
+
468
+ [#10]: https://github.com/mime-types/mime-types-data/pull/10
469
+ [#11]: https://github.com/mime-types/mime-types-data/pull/11
470
+ [#12]: https://github.com/mime-types/mime-types-data/pull/12
471
+ [#13]: https://github.com/mime-types/mime-types-data/pull/13
472
+ [#18]: https://github.com/mime-types/mime-types-data/issues/18
473
+ [#20]: https://github.com/mime-types/mime-types-data/pull/20
474
+ [#21]: https://github.com/mime-types/mime-types-data/pull/21
475
+ [#22]: https://github.com/mime-types/mime-types-data/issues/22
476
+ [#23]: https://github.com/mime-types/mime-types-data/pull/23
477
+ [#24]: https://github.com/mime-types/mime-types-data/pull/24
478
+ [#28]: https://github.com/mime-types/mime-types-data/pull/28
479
+ [#29]: https://github.com/mime-types/mime-types-data/pull/29
480
+ [#30]: https://github.com/mime-types/mime-types-data/pull/30
481
+ [#31]: https://github.com/mime-types/mime-types-data/pull/31
482
+ [#32]: https://github.com/mime-types/mime-types-data/issues/32
483
+ [#33]: https://github.com/mime-types/mime-types-data/pull/33
484
+ [#34]: https://github.com/mime-types/mime-types-data/pull/34
485
+ [#35]: https://github.com/mime-types/mime-types-data/pull/35
486
+ [#36]: https://github.com/mime-types/mime-types-data/pull/36
487
+ [#40]: https://github.com/mime-types/mime-types-data/pull/40
488
+ [#43]: https://github.com/mime-types/mime-types-data/pull/43
489
+ [#45]: https://github.com/mime-types/mime-types-data/pull/45
490
+ [#46]: https://github.com/mime-types/mime-types-data/pull/46
491
+ [#47]: https://github.com/mime-types/mime-types-data/pull/47
492
+ [rmt]: https://github.com/mime-types/ruby-mime-types
493
+ [code of conduct]: Code-of-Conduct.md
494
+ [mini_mime]: https://github.com/discourse/mini_mime/issues/41
@@ -0,0 +1,24 @@
1
+ ## Licence
2
+
3
+ - Copyright 2003–2021 Austin Ziegler and other contributors.
4
+
5
+ The software in this repository is made available under the MIT license.
6
+
7
+ ### MIT License
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
10
+ this software and associated documentation files (the "Software"), to deal in
11
+ the Software without restriction, including without limitation the rights to
12
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
13
+ the Software, and to permit persons to whom the Software is furnished to do so,
14
+ subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in all
17
+ copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
21
+ FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
22
+ COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
23
+ IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
24
+ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,34 @@
1
+ Code-of-Conduct.md
2
+ Contributing.md
3
+ History.md
4
+ Licence.md
5
+ Manifest.txt
6
+ README.md
7
+ Rakefile
8
+ data/content_type_mime.db
9
+ data/ext_mime.db
10
+ data/mime-types.json
11
+ data/mime.content_type.column
12
+ data/mime.docs.column
13
+ data/mime.encoding.column
14
+ data/mime.flags.column
15
+ data/mime.friendly.column
16
+ data/mime.pext.column
17
+ data/mime.use_instead.column
18
+ data/mime.xrefs.column
19
+ lib/mime-types-data.rb
20
+ lib/mime/types/data.rb
21
+ types/application.yaml
22
+ types/audio.yaml
23
+ types/chemical.yaml
24
+ types/conference.yaml
25
+ types/drawing.yaml
26
+ types/font.yaml
27
+ types/image.yaml
28
+ types/message.yaml
29
+ types/model.yaml
30
+ types/multipart.yaml
31
+ types/provisional-standard-types.yaml
32
+ types/text.yaml
33
+ types/video.yaml
34
+ types/world.yaml
@@ -0,0 +1,73 @@
1
+ # mime-types-data
2
+
3
+ - home :: https://github.com/mime-types/mime-types-data/
4
+ - code :: https://github.com/mime-types/mime-types-data/
5
+ - issues :: https://github.com/mime-types/mime-types-data/issues
6
+
7
+ ## Description
8
+
9
+ mime-types-data provides a registry for information about MIME media type
10
+ definitions. It can be used with the Ruby mime-types library or other software
11
+ to determine defined filename extensions for MIME types, or to use filename
12
+ extensions to look up the likely MIME type definitions.
13
+
14
+ ### About MIME Media Types
15
+
16
+ MIME media types are used in MIME-compliant communications, as in e-mail or
17
+ HTTP traffic, to indicate the type of content which is transmitted. The
18
+ registry provided in mime-types-data contains detailed information about MIME
19
+ entities. There are many types defined by RFCs and vendors, so the list is long
20
+ but invariably; don't hesitate to offer additional type definitions for
21
+ consideration. MIME type definitions found in mime-types are from RFCs, W3C
22
+ recommendations, the [IANA Media Types registry][registry], and user
23
+ contributions. It conforms to RFCs 2045 and 2231.
24
+
25
+ ### Data Formats Supported in this Registry
26
+
27
+ This registry contains the MIME media types in four formats:
28
+
29
+ - A YAML format matching the Ruby mime-types library objects (MIME::Type).
30
+ This is the primary user-editable format for developers. It is _not_
31
+ shipped with the gem due to size considerations.
32
+ - A JSON format converted from the YAML format. Prior to Ruby mime-types 3.0,
33
+ this was the main consumption format and is still recommended for any
34
+ implementation that does not wish to implement the columnar format, which
35
+ has a significant implementation effort cost.
36
+ - An encoded text format splitting the data for each MIME type across
37
+ multiple files. This columnar data format reduces the minimal data load
38
+ substantially, resulting in a performance improvement at the cost of more
39
+ complex code for loading the data on-demand. This is the default format for
40
+ Ruby mime-types 3.0.
41
+ - An encoded text format for use with [`mini_mime`][] (as of 3.2021.1108). This
42
+ can be enabled with:
43
+
44
+ ```ruby
45
+ MiniMime::Configuration.ext_db_path =
46
+ File.join(MIME::Types::Data::PATH, "ext_mime.db")
47
+ MiniMime::Configuration.content_type_db_path =
48
+ File.join(MIME::Types::Data::PATH, "content_type_mime.db")
49
+ ```
50
+
51
+ ## mime-types-data Modified Semantic Versioning
52
+
53
+ mime-types-data uses a heavily modified [Semantic Versioning][] scheme to
54
+ indicate that the data formats compatibility based on a `SCHEMA` version and
55
+ the date of the data update: `SCHEMA.YEAR.MONTHDAY`.
56
+
57
+ 1. If an incompatible data format change is made to any of the supported
58
+ formts, `SCHEMA` will be incremented. The current `SCHEMA` is 3, supporting
59
+ the YAML, JSON, and columnar formats required for Ruby mime-types 3.0.
60
+
61
+ 2. When the data is updated, the `YEAR.MONTHDAY` combination will be updated.
62
+ An update on the last day of October 2015 would be written as `2015.1031`,
63
+ resulting in the full version of `3.2015.1031`.
64
+
65
+ 3. If multiple versions of the data need to be released on the same day due to
66
+ error, there will be an additional `REVISION` field incremented on the end
67
+ of the version. Thus, if three revisions need to be published on October
68
+ 31st, 2015, the last release would be `3.2015.1031.2` (remember that the
69
+ first release has an implied `0`.)
70
+
71
+ [registry]: https://www.iana.org/assignments/media-types/media-types.xhtml
72
+ [semantic versioning]: http://semver.org/
73
+ [`mini_mime`]: https://github.com/discourse/mini_mime