mime-types-data 3.2022.0105 → 3.2023.0218
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Contributing.md +2 -0
- data/History.md +60 -34
- data/Manifest.txt +0 -1
- data/Rakefile +2 -2
- data/data/content_type_mime.db +1 -0
- data/data/ext_mime.db +3 -2
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +78 -2
- data/data/mime.docs.column +76 -0
- data/data/mime.encoding.column +76 -0
- data/data/mime.flags.column +82 -6
- data/data/mime.friendly.column +76 -0
- data/data/mime.pext.column +76 -0
- data/data/mime.use_instead.column +77 -1
- data/data/mime.xrefs.column +125 -49
- data/lib/mime/types/data.rb +1 -1
- data/types/application.yaml +777 -41
- data/types/audio.yaml +2 -2
- data/types/image.yaml +45 -3
- data/types/message.yaml +11 -2
- data/types/model.yaml +57 -6
- data/types/multipart.yaml +2 -2
- data/types/text.yaml +41 -6
- data/types/video.yaml +9 -0
- metadata +8 -9
- data/types/provisional-standard-types.yaml +0 -145
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7914be7c09c4fcfd34d40f2e3991ca4e0b86169f5f30123eceff2e9eb2d8f8a0
|
4
|
+
data.tar.gz: 03bee6680fc16ce0f8d79626790646dc6fa93a77d527d9d6df76c0efaf81cb1a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 932b7f5d6039afc142ad3d0c755a4acecb8866257937ce1b6f25884cb7995de7b14044acae7a12f1a6428ec92f3530bbffc56959c05f5e7862fb4a1c6f55c959
|
7
|
+
data.tar.gz: 56693fcc37138c83a18d293a0bc4712bb26577ce572bf9598d20e41188a71732fd5347b0c7b49d04b191fda225789ff1cc666e4e06d3371fa0ee2a99dac38ca7
|
data/Contributing.md
CHANGED
@@ -204,6 +204,7 @@ Thanks to everyone else who has contributed to mime-types:
|
|
204
204
|
- Bradley Meck
|
205
205
|
- Brandon Galbraith
|
206
206
|
- Chris Gat
|
207
|
+
- Chris Salzberg
|
207
208
|
- David Genord
|
208
209
|
- Eric Marden
|
209
210
|
- Garret Alfert
|
@@ -222,6 +223,7 @@ Thanks to everyone else who has contributed to mime-types:
|
|
222
223
|
- Lucia
|
223
224
|
- Martin d'Allens
|
224
225
|
- Mauricio Linhares
|
226
|
+
- Mohammed Gad
|
225
227
|
- Myk Klemme
|
226
228
|
- nycvotes-dev
|
227
229
|
- Postmodern
|
data/History.md
CHANGED
@@ -2,29 +2,49 @@
|
|
2
2
|
|
3
3
|
<!-- automatic-release -->
|
4
4
|
|
5
|
+
## 3.2023.0218 / 2023-02-18
|
6
|
+
|
7
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
8
|
+
|
9
|
+
- Mohammed Gad added the `jfif` file extension for `image/jpeg` text format.
|
10
|
+
[#52][]
|
11
|
+
|
12
|
+
- Reworked the loading of IANA provisional media registries to merge them
|
13
|
+
into the top-level media-type registries instead of a standalone registry
|
14
|
+
file. [#53][] originally identified by Chris Salzberg in [#50][].
|
15
|
+
|
16
|
+
It is worth noting that this is an _imperfect_ solution as if a media type
|
17
|
+
is provisionally registered and withdrawn, it will linger in the registry
|
18
|
+
with no clean way of identifying them at the moment. See [#54][].
|
19
|
+
|
20
|
+
This release also fixes [ruby-mime-types#163][], where logs show "Type
|
21
|
+
application/netcdf is already registered as a variant of
|
22
|
+
application/netcdf".
|
23
|
+
|
5
24
|
## 3.2022.0105 / 2022-01-05
|
6
25
|
|
7
26
|
- Updated the Apache and IANA media registry entries as of release date.
|
8
27
|
|
9
|
-
- Fixed an incorrect definition of `image/bmp`, which had been marked
|
10
|
-
and later registered. Fixed [#48], found by William T. Nelson.
|
28
|
+
- Fixed an incorrect definition of `image/bmp`, which had been marked
|
29
|
+
obsolete and later registered. Fixed [#48][], found by William T. Nelson.
|
11
30
|
|
12
31
|
## 3.2021.1115 / 2021-11-15
|
13
32
|
|
14
33
|
- Updated the Apache and IANA media registry entries as of release date.
|
15
34
|
|
16
35
|
- Added conversion utilities that support the `mini_mime` data format. These
|
17
|
-
have been ported from the [mini_mime] repository. [#47]
|
36
|
+
have been ported from the [mini_mime][] repository. [#47][]
|
18
37
|
|
19
|
-
- Added IANA provisional media registries. Added some notes to
|
20
|
-
about the transient nature of the provisional registration
|
21
|
-
triggered in part by a pull request by Jon Sneyers. Thanks!
|
38
|
+
- Added IANA provisional media registries. Added some notes to
|
39
|
+
Contributing.md about the transient nature of the provisional registration
|
40
|
+
data. This was triggered in part by a pull request by Jon Sneyers. Thanks!
|
41
|
+
[#45][], [#43][]
|
22
42
|
|
23
43
|
## 3.2021.0901 / 2021-09-01
|
24
44
|
|
25
45
|
- Updated the Apache and IANA media registry entries as of release date.
|
26
46
|
|
27
|
-
- Added file extension for WebVTT text format. [#46]
|
47
|
+
- Added file extension for WebVTT text format. [#46][]
|
28
48
|
|
29
49
|
## 3.2021.0704 / 2021-07-04
|
30
50
|
|
@@ -34,82 +54,82 @@
|
|
34
54
|
|
35
55
|
- Updated the Apache and IANA media registry entries as of release date.
|
36
56
|
|
37
|
-
- Added file extension for AVIF video format. [#40]
|
57
|
+
- Added file extension for AVIF video format. [#40][]
|
38
58
|
|
39
59
|
## 3.2021.0212 / 2021-02-12
|
40
60
|
|
41
61
|
- Updated the IANA media registry entries as of release date.
|
42
62
|
|
43
|
-
- Added a new rake task (`release:automatic`) that downloads and converts
|
44
|
-
data from Apache and IANA; if there are changes detected, it updates
|
45
|
-
release version, changelog, manifest, and gemspec and commits the
|
46
|
-
to git.
|
63
|
+
- Added a new rake task (`release:automatic`) that downloads and converts
|
64
|
+
the data from Apache and IANA; if there are changes detected, it updates
|
65
|
+
the release version, changelog, manifest, and gemspec and commits the
|
66
|
+
changes to git.
|
47
67
|
|
48
68
|
## 3.2020.1104 / 2020-11-04
|
49
69
|
|
50
70
|
- Updated the IANA media registry entries as of release date.
|
51
71
|
|
52
|
-
- Added `application/x-zip-compressed`. [#36]
|
72
|
+
- Added `application/x-zip-compressed`. [#36][]
|
53
73
|
|
54
74
|
- Updated the contributing guide to include information about the release
|
55
|
-
process as described in [#18]
|
75
|
+
process as described in [#18][]
|
56
76
|
|
57
|
-
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35]
|
77
|
+
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35][]
|
58
78
|
|
59
79
|
## 3.2020.0512 / 2020-05-12
|
60
80
|
|
61
81
|
- Updated the IANA media registry entries as of release date.
|
62
82
|
|
63
|
-
- Added file extensions for HEIC image types. [#34]
|
83
|
+
- Added file extensions for HEIC image types. [#34][]
|
64
84
|
|
65
85
|
## 3.2020.0425 / 2020-04-25
|
66
86
|
|
67
87
|
- Updated the IANA media registry entries as of release date.
|
68
88
|
|
69
89
|
- Added several RAW image types based on data from GNOME RAW Thumbnailer.
|
70
|
-
[#33] fixing [#32]
|
90
|
+
[#33][] fixing [#32][]
|
71
91
|
|
72
|
-
- Added `audio/wav`. [#31]
|
92
|
+
- Added `audio/wav`. [#31][]
|
73
93
|
|
74
|
-
- Added a type for Smarttech notebook files. [#30]
|
94
|
+
- Added a type for Smarttech notebook files. [#30][]
|
75
95
|
|
76
|
-
- Added an alias for audio/m4a files. [#29]
|
96
|
+
- Added an alias for audio/m4a files. [#29][]
|
77
97
|
|
78
|
-
- Added application/x-ms-dos-executable. [#28]
|
98
|
+
- Added application/x-ms-dos-executable. [#28][]
|
79
99
|
|
80
100
|
## 3.2019.1009 / 2019-10-09
|
81
101
|
|
82
102
|
- Updated the IANA media registry entries as of release date.
|
83
103
|
|
84
|
-
- Reordered the `.ai` extension so that it is not the preferred extension
|
85
|
-
`application/pdf` [#24]
|
104
|
+
- Reordered the `.ai` extension so that it is not the preferred extension
|
105
|
+
for `application/pdf` [#24][]
|
86
106
|
|
87
107
|
## 3.2019.0904 / 2019-09-04
|
88
108
|
|
89
109
|
- Updated the IANA media registry entries as of release date.
|
90
110
|
|
91
|
-
- Moved the `.ai` extension from `application/postscript` to
|
92
|
-
[#23] fixing [#22]
|
111
|
+
- Moved the `.ai` extension from `application/postscript` to
|
112
|
+
`application/pdf`. [#23][] fixing [#22][]
|
93
113
|
|
94
114
|
## 3.2019.0331 / 2019-03-31
|
95
115
|
|
96
116
|
- Updated the IANA media registry entries as of release date.
|
97
117
|
|
98
|
-
- Added support for `application/wasm` with extension `.wasm`. [#21]
|
118
|
+
- Added support for `application/wasm` with extension `.wasm`. [#21][]
|
99
119
|
|
100
|
-
- Fixed `application/ecmascript` extensions. [#20]
|
120
|
+
- Fixed `application/ecmascript` extensions. [#20][]
|
101
121
|
|
102
122
|
## 3.2018.0812 / 2018-08-12
|
103
123
|
|
104
|
-
- Added `.xsd` extension to `text/xml`. [#10]
|
124
|
+
- Added `.xsd` extension to `text/xml`. [#10][]
|
105
125
|
|
106
126
|
- Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
107
|
-
`text/javascript`. [#11]
|
127
|
+
`text/javascript`. [#11][]
|
108
128
|
|
109
|
-
- Added `.ipa` extension to `application/octet-stream`. [#12]
|
129
|
+
- Added `.ipa` extension to `application/octet-stream`. [#12][]
|
110
130
|
|
111
131
|
- Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
112
|
-
`text/markdown`. [#13]
|
132
|
+
`text/markdown`. [#13][]
|
113
133
|
|
114
134
|
- Because of a bug found with mime-types 3 before 3.2.1, this version
|
115
135
|
requires mime-types 3.1 or later to manage data.
|
@@ -182,7 +202,8 @@
|
|
182
202
|
|
183
203
|
- Extracted from [ruby-mime-types][rmt].
|
184
204
|
- Added a [Code of Conduct].
|
185
|
-
- The versioning has changed to be semantic on format plus date in two
|
205
|
+
- The versioning has changed to be semantic on format plus date in two
|
206
|
+
parts.
|
186
207
|
|
187
208
|
- All registry formats have been updated to remove deprecated data.
|
188
209
|
- The columnar format has been updated to store three boolean flags in a
|
@@ -224,8 +245,7 @@
|
|
224
245
|
## 2.6 / 2015-05-25
|
225
246
|
|
226
247
|
- Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
227
|
-
to application/font-woff,
|
228
|
-
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
248
|
+
to application/font-woff, [ruby-mime-types#99][].
|
229
249
|
- Updated the IANA media registry entries as of release date:
|
230
250
|
- Updated metadata for application/jose, application/jose+json,
|
231
251
|
application/jwk+json, application/jwk-set+json, application/jwt to
|
@@ -497,6 +517,12 @@
|
|
497
517
|
[#46]: https://github.com/mime-types/mime-types-data/pull/46
|
498
518
|
[#47]: https://github.com/mime-types/mime-types-data/pull/47
|
499
519
|
[#48]: https://github.com/mime-types/mime-types-data/issues/48
|
520
|
+
[#50]: https://github.com/mime-types/mime-types-data/pull/50
|
521
|
+
[#52]: https://github.com/mime-types/mime-types-data/pull/52
|
522
|
+
[#53]: https://github.com/mime-types/mime-types-data/pull/53
|
523
|
+
[#54]: https://github.com/mime-types/mime-types-data/issues/54
|
500
524
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
501
525
|
[code of conduct]: Code-of-Conduct.md
|
502
526
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
527
|
+
[ruby-mime-types#99]: https://github.com/mime-types/ruby-mime-types/pull/99
|
528
|
+
[ruby-mime-types#163]: https://github.com/mime-types/ruby-mime-types/issues/163
|
data/Manifest.txt
CHANGED
data/Rakefile
CHANGED
@@ -23,7 +23,7 @@ Hoe.spec "mime-types-data" do
|
|
23
23
|
extra_dev_deps << ["nokogiri", "~> 1.6"]
|
24
24
|
extra_dev_deps << ["hoe-doofus", "~> 1.0"]
|
25
25
|
extra_dev_deps << ["hoe-gemspec2", "~> 1.1"]
|
26
|
-
extra_dev_deps << ["hoe-
|
26
|
+
extra_dev_deps << ["hoe-git2", "~> 1.7"]
|
27
27
|
extra_dev_deps << ["hoe-rubygems", "~> 1.0"]
|
28
28
|
extra_dev_deps << ["rake", ">= 10.0", "< 14"]
|
29
29
|
extra_dev_deps << ["mime-types", ">= 3.4.0", "< 4"]
|
@@ -120,7 +120,7 @@ namespace :update do
|
|
120
120
|
desc "Update the release version"
|
121
121
|
task :version do
|
122
122
|
file = IO.read("lib/mime/types/data.rb")
|
123
|
-
updated = file.sub(/VERSION = ['"][.0-9]+['"]/, %
|
123
|
+
updated = file.sub(/VERSION = ['"][.0-9]+['"]/, %(VERSION = "#{new_version}"))
|
124
124
|
|
125
125
|
IO.write("lib/mime/types/data.rb", updated)
|
126
126
|
end
|
data/data/content_type_mime.db
CHANGED
data/data/ext_mime.db
CHANGED
@@ -408,6 +408,7 @@ jad text/vnd.sun.j2me.app-descriptor
|
|
408
408
|
jam application/vnd.jam base64
|
409
409
|
jar application/java-archive base64
|
410
410
|
java text/x-java-source quoted-printable
|
411
|
+
jfif image/jpeg base64
|
411
412
|
jisp application/vnd.jisp base64
|
412
413
|
jlt application/vnd.hp-jlyt base64
|
413
414
|
jnlp application/x-java-jnlp-file base64
|
@@ -422,7 +423,7 @@ jpgm image/jpm
|
|
422
423
|
jpgv video/JPEG base64
|
423
424
|
jpm image/jpm base64
|
424
425
|
jpx image/jpx base64
|
425
|
-
js
|
426
|
+
js text/javascript quoted-printable
|
426
427
|
json application/json 8bit
|
427
428
|
jsonml application/jsonml+json base64
|
428
429
|
k25 image/x-kodak-k25 base64
|
@@ -521,7 +522,7 @@ mj2 video/MJ2
|
|
521
522
|
mjp2 video/MJ2 base64
|
522
523
|
mjpeg video/x-motion-jpeg base64
|
523
524
|
mjpg video/x-motion-jpeg base64
|
524
|
-
mjs
|
525
|
+
mjs text/javascript quoted-printable
|
525
526
|
mk3d video/x-matroska base64
|
526
527
|
mka audio/x-matroska base64
|
527
528
|
mkd text/markdown quoted-printable
|