mime-types-data 3.2021.1115 → 3.2023.0218
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Contributing.md +2 -0
- data/History.md +66 -32
- data/Manifest.txt +0 -1
- data/Rakefile +2 -2
- data/data/content_type_mime.db +2 -1
- data/data/ext_mime.db +4 -3
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +84 -1
- data/data/mime.docs.column +83 -0
- data/data/mime.encoding.column +83 -0
- data/data/mime.flags.column +92 -9
- data/data/mime.friendly.column +83 -0
- data/data/mime.pext.column +83 -0
- data/data/mime.use_instead.column +87 -4
- data/data/mime.xrefs.column +148 -65
- data/lib/mime/types/data.rb +1 -1
- data/types/application.yaml +836 -55
- data/types/audio.yaml +2 -2
- data/types/image.yaml +49 -6
- data/types/message.yaml +18 -4
- data/types/model.yaml +57 -6
- data/types/multipart.yaml +2 -2
- data/types/text.yaml +42 -7
- data/types/video.yaml +9 -0
- metadata +8 -9
- data/types/provisional-standard-types.yaml +0 -129
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,22 +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
|
+
|
24
|
+
## 3.2022.0105 / 2022-01-05
|
25
|
+
|
26
|
+
- Updated the Apache and IANA media registry entries as of release date.
|
27
|
+
|
28
|
+
- Fixed an incorrect definition of `image/bmp`, which had been marked
|
29
|
+
obsolete and later registered. Fixed [#48][], found by William T. Nelson.
|
30
|
+
|
5
31
|
## 3.2021.1115 / 2021-11-15
|
6
32
|
|
7
33
|
- Updated the Apache and IANA media registry entries as of release date.
|
8
34
|
|
9
35
|
- Added conversion utilities that support the `mini_mime` data format. These
|
10
|
-
have been ported from the [mini_mime] repository. [#47]
|
36
|
+
have been ported from the [mini_mime][] repository. [#47][]
|
11
37
|
|
12
|
-
- Added IANA provisional media registries. Added some notes to
|
13
|
-
about the transient nature of the provisional registration
|
14
|
-
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][]
|
15
42
|
|
16
43
|
## 3.2021.0901 / 2021-09-01
|
17
44
|
|
18
45
|
- Updated the Apache and IANA media registry entries as of release date.
|
19
46
|
|
20
|
-
- Added file extension for WebVTT text format. [#46]
|
47
|
+
- Added file extension for WebVTT text format. [#46][]
|
21
48
|
|
22
49
|
## 3.2021.0704 / 2021-07-04
|
23
50
|
|
@@ -27,82 +54,82 @@
|
|
27
54
|
|
28
55
|
- Updated the Apache and IANA media registry entries as of release date.
|
29
56
|
|
30
|
-
- Added file extension for AVIF video format. [#40]
|
57
|
+
- Added file extension for AVIF video format. [#40][]
|
31
58
|
|
32
59
|
## 3.2021.0212 / 2021-02-12
|
33
60
|
|
34
61
|
- Updated the IANA media registry entries as of release date.
|
35
62
|
|
36
|
-
- Added a new rake task (`release:automatic`) that downloads and converts
|
37
|
-
data from Apache and IANA; if there are changes detected, it updates
|
38
|
-
release version, changelog, manifest, and gemspec and commits the
|
39
|
-
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.
|
40
67
|
|
41
68
|
## 3.2020.1104 / 2020-11-04
|
42
69
|
|
43
70
|
- Updated the IANA media registry entries as of release date.
|
44
71
|
|
45
|
-
- Added `application/x-zip-compressed`. [#36]
|
72
|
+
- Added `application/x-zip-compressed`. [#36][]
|
46
73
|
|
47
74
|
- Updated the contributing guide to include information about the release
|
48
|
-
process as described in [#18]
|
75
|
+
process as described in [#18][]
|
49
76
|
|
50
|
-
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35]
|
77
|
+
- Corrected a misspelling of Yoran Brondsema’s name. Sorry, Yoran. [#35][]
|
51
78
|
|
52
79
|
## 3.2020.0512 / 2020-05-12
|
53
80
|
|
54
81
|
- Updated the IANA media registry entries as of release date.
|
55
82
|
|
56
|
-
- Added file extensions for HEIC image types. [#34]
|
83
|
+
- Added file extensions for HEIC image types. [#34][]
|
57
84
|
|
58
85
|
## 3.2020.0425 / 2020-04-25
|
59
86
|
|
60
87
|
- Updated the IANA media registry entries as of release date.
|
61
88
|
|
62
89
|
- Added several RAW image types based on data from GNOME RAW Thumbnailer.
|
63
|
-
[#33] fixing [#32]
|
90
|
+
[#33][] fixing [#32][]
|
64
91
|
|
65
|
-
- Added `audio/wav`. [#31]
|
92
|
+
- Added `audio/wav`. [#31][]
|
66
93
|
|
67
|
-
- Added a type for Smarttech notebook files. [#30]
|
94
|
+
- Added a type for Smarttech notebook files. [#30][]
|
68
95
|
|
69
|
-
- Added an alias for audio/m4a files. [#29]
|
96
|
+
- Added an alias for audio/m4a files. [#29][]
|
70
97
|
|
71
|
-
- Added application/x-ms-dos-executable. [#28]
|
98
|
+
- Added application/x-ms-dos-executable. [#28][]
|
72
99
|
|
73
100
|
## 3.2019.1009 / 2019-10-09
|
74
101
|
|
75
102
|
- Updated the IANA media registry entries as of release date.
|
76
103
|
|
77
|
-
- Reordered the `.ai` extension so that it is not the preferred extension
|
78
|
-
`application/pdf` [#24]
|
104
|
+
- Reordered the `.ai` extension so that it is not the preferred extension
|
105
|
+
for `application/pdf` [#24][]
|
79
106
|
|
80
107
|
## 3.2019.0904 / 2019-09-04
|
81
108
|
|
82
109
|
- Updated the IANA media registry entries as of release date.
|
83
110
|
|
84
|
-
- Moved the `.ai` extension from `application/postscript` to
|
85
|
-
[#23] fixing [#22]
|
111
|
+
- Moved the `.ai` extension from `application/postscript` to
|
112
|
+
`application/pdf`. [#23][] fixing [#22][]
|
86
113
|
|
87
114
|
## 3.2019.0331 / 2019-03-31
|
88
115
|
|
89
116
|
- Updated the IANA media registry entries as of release date.
|
90
117
|
|
91
|
-
- Added support for `application/wasm` with extension `.wasm`. [#21]
|
118
|
+
- Added support for `application/wasm` with extension `.wasm`. [#21][]
|
92
119
|
|
93
|
-
- Fixed `application/ecmascript` extensions. [#20]
|
120
|
+
- Fixed `application/ecmascript` extensions. [#20][]
|
94
121
|
|
95
122
|
## 3.2018.0812 / 2018-08-12
|
96
123
|
|
97
|
-
- Added `.xsd` extension to `text/xml`. [#10]
|
124
|
+
- Added `.xsd` extension to `text/xml`. [#10][]
|
98
125
|
|
99
126
|
- Added `.js` and `.mjs` extensions to `text/ecmascript` and
|
100
|
-
`text/javascript`. [#11]
|
127
|
+
`text/javascript`. [#11][]
|
101
128
|
|
102
|
-
- Added `.ipa` extension to `application/octet-stream`. [#12]
|
129
|
+
- Added `.ipa` extension to `application/octet-stream`. [#12][]
|
103
130
|
|
104
131
|
- Moved extensions `.markdown` and `.md` and added `.mkd` extension to
|
105
|
-
`text/markdown`. [#13]
|
132
|
+
`text/markdown`. [#13][]
|
106
133
|
|
107
134
|
- Because of a bug found with mime-types 3 before 3.2.1, this version
|
108
135
|
requires mime-types 3.1 or later to manage data.
|
@@ -175,7 +202,8 @@
|
|
175
202
|
|
176
203
|
- Extracted from [ruby-mime-types][rmt].
|
177
204
|
- Added a [Code of Conduct].
|
178
|
-
- 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.
|
179
207
|
|
180
208
|
- All registry formats have been updated to remove deprecated data.
|
181
209
|
- The columnar format has been updated to store three boolean flags in a
|
@@ -217,8 +245,7 @@
|
|
217
245
|
## 2.6 / 2015-05-25
|
218
246
|
|
219
247
|
- 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).
|
248
|
+
to application/font-woff, [ruby-mime-types#99][].
|
222
249
|
- Updated the IANA media registry entries as of release date:
|
223
250
|
- Updated metadata for application/jose, application/jose+json,
|
224
251
|
application/jwk+json, application/jwk-set+json, application/jwt to
|
@@ -489,6 +516,13 @@
|
|
489
516
|
[#45]: https://github.com/mime-types/mime-types-data/pull/45
|
490
517
|
[#46]: https://github.com/mime-types/mime-types-data/pull/46
|
491
518
|
[#47]: https://github.com/mime-types/mime-types-data/pull/47
|
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
|
492
524
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
493
525
|
[code of conduct]: Code-of-Conduct.md
|
494
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
@@ -692,6 +692,7 @@ ttf font/ttf
|
|
692
692
|
woff font/woff base64
|
693
693
|
woff2 font/woff2 base64
|
694
694
|
avif image/avif base64
|
695
|
+
bmp image/bmp base64
|
695
696
|
cgm image/cgm base64
|
696
697
|
g3 image/g3fax base64
|
697
698
|
gif image/gif base64
|
@@ -731,7 +732,6 @@ xif image/vnd.xiff
|
|
731
732
|
webp image/webp base64
|
732
733
|
3ds image/x-3ds base64
|
733
734
|
dng image/x-adobe-dng base64
|
734
|
-
bmp image/x-bmp base64
|
735
735
|
cr2 image/x-canon-cr2 base64
|
736
736
|
crw image/x-canon-crw base64
|
737
737
|
ras image/x-cmu-raster base64
|
@@ -787,6 +787,7 @@ ics text/calendar
|
|
787
787
|
css text/css 8bit
|
788
788
|
csv text/csv 8bit
|
789
789
|
html text/html 8bit
|
790
|
+
js text/javascript quoted-printable
|
790
791
|
markdown text/markdown quoted-printable
|
791
792
|
n3 text/n3 quoted-printable
|
792
793
|
txt text/plain quoted-printable
|
data/data/ext_mime.db
CHANGED
@@ -70,7 +70,7 @@ blb application/x-blorb
|
|
70
70
|
bleep application/x-bleeper base64
|
71
71
|
blorb application/x-blorb base64
|
72
72
|
bmi application/vnd.bmi base64
|
73
|
-
bmp image/
|
73
|
+
bmp image/bmp base64
|
74
74
|
book application/vnd.framemaker base64
|
75
75
|
box application/vnd.previewsystems.box base64
|
76
76
|
boz application/x-bzip2 base64
|
@@ -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
|