mime-types-data 3.2025.0715 → 3.2025.0805
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/CHANGELOG.md +77 -27
- data/data/ext_mime.db +1 -1
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +4 -1
- data/data/mime.docs.column +3 -0
- data/data/mime.encoding.column +3 -0
- data/data/mime.flags.column +25 -22
- data/data/mime.friendly.column +3 -0
- data/data/mime.pext.column +3 -0
- data/data/mime.spri.column +0 -0
- data/data/mime.use_instead.column +3 -0
- data/data/mime.xrefs.column +4 -1
- data/lib/mime/types/data.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a16f8cf546802c56d605eb751cd5e54173eab8227ed8ad73caab184033862936
|
4
|
+
data.tar.gz: b7d1cbf67154868ec7b7b914b919039bc23883e53eb241f9a2cb4ebbd73f3a28
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c8c3fec6f640a5fed6c053ce3e289bbff3d81205f480af28bd43d5cbac3542d77326d3659ade843378e30a94c738eb9fe0706cf5c283e9c27ebfb99a00bb05d
|
7
|
+
data.tar.gz: 70960b07a5823f77a5ab31a2a32b7c85684c258d4cd131deaf2d512549e962617fa429efdef599f797734eff1a48253c0847ef209130a0fc80288f4e94ecadce
|
data/CHANGELOG.md
CHANGED
@@ -2,75 +2,122 @@
|
|
2
2
|
|
3
3
|
<!-- automatic-release -->
|
4
4
|
|
5
|
-
## 3.2025.
|
5
|
+
## 3.2025.0805 / 2025-08-05
|
6
6
|
|
7
7
|
- Updated registry entries from the IANA [media registry][registry] and
|
8
8
|
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
9
9
|
and the [Apache Tika media registry][tika] as of the release date.
|
10
10
|
|
11
11
|
|
12
|
-
## 3.2025.
|
12
|
+
## 3.2025.0729 / 2025-07-29
|
13
13
|
|
14
14
|
- Updated registry entries from the IANA [media registry][registry] and
|
15
15
|
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
16
16
|
and the [Apache Tika media registry][tika] as of the release date.
|
17
17
|
|
18
18
|
|
19
|
-
|
19
|
+
|
20
|
+
- Remove `.doc` from `text/plain`: The use of `.doc` for `text/plain` documents
|
21
|
+
is mostly a holdover from VAX VMS where the default wasn't `.txt` but `.doc`.
|
22
|
+
The world now thinks that `.doc` mostly means `application/msword` even though
|
23
|
+
that format is obsolete by almost twenty years. Closes
|
24
|
+
[ruby-mime-types#224][ruby-mime-types#224] with [#191][pull-191].
|
25
|
+
|
26
|
+
- Handle promoted and withdrawn provisional IANA media types. Closes
|
27
|
+
[#54][issue-54] with [#192][pull-192].
|
28
|
+
|
29
|
+
The logic is three relatively simple phases:
|
30
|
+
|
31
|
+
1. When loading an existing registry grouping (such as
|
32
|
+
`types/application.yaml`), we mark any type that is `provisional` as
|
33
|
+
`obsolete`. This indicates that we consider any provisional type as
|
34
|
+
potentially withdrawn (and therefore obsolete).
|
35
|
+
2. When processing existing regular types, we clear both `provisional` and
|
36
|
+
`obsolete` flags so that a type promoted from provisional is now a regular
|
37
|
+
registry entry.
|
38
|
+
3. After merging the current list of registry entries, we _clear_
|
39
|
+
`provisional` if the type is marked both `provisional` and `obsolete`,
|
40
|
+
indicating that the provisional type has been withdrawn.
|
41
|
+
|
42
|
+
These heuristics match several types which have been promoted and withdrawn
|
43
|
+
since the handling of provisional types was improved with [#53][pull-53].
|
44
|
+
|
45
|
+
## 3.2025.0722 / 2025-07-22
|
20
46
|
|
21
47
|
- Updated registry entries from the IANA [media registry][registry] and
|
22
|
-
[provisional media registry][provisional], the
|
23
|
-
|
48
|
+
[provisional media registry][provisional], the
|
49
|
+
[Apache httpd media registry][httpd], and the
|
50
|
+
[Apache Tika media registry][tika] as of the release date.
|
24
51
|
|
52
|
+
## 3.2025.0715 / 2025-07-15
|
25
53
|
|
26
|
-
|
54
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
55
|
+
[provisional media registry][provisional], the
|
56
|
+
[Apache httpd media registry][httpd], and the
|
57
|
+
[Apache Tika media registry][tika] as of the release date.
|
58
|
+
|
59
|
+
## 3.2025.0708 / 2025-07-08
|
27
60
|
|
28
61
|
- Updated registry entries from the IANA [media registry][registry] and
|
29
|
-
[provisional media registry][provisional], the
|
30
|
-
|
62
|
+
[provisional media registry][provisional], the
|
63
|
+
[Apache httpd media registry][httpd], and the
|
64
|
+
[Apache Tika media registry][tika] as of the release date.
|
31
65
|
|
66
|
+
## 3.2025.0701 / 2025-07-01
|
32
67
|
|
33
|
-
|
68
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
69
|
+
[provisional media registry][provisional], the
|
70
|
+
[Apache httpd media registry][httpd], and the
|
71
|
+
[Apache Tika media registry][tika] as of the release date.
|
72
|
+
|
73
|
+
## 3.2025.0624 / 2025-06-24
|
34
74
|
|
35
75
|
- Updated registry entries from the IANA [media registry][registry] and
|
36
|
-
[provisional media registry][provisional], the
|
37
|
-
|
76
|
+
[provisional media registry][provisional], the
|
77
|
+
[Apache httpd media registry][httpd], and the
|
78
|
+
[Apache Tika media registry][tika] as of the release date.
|
79
|
+
|
80
|
+
## 3.2025.0617 / 2025-06-17
|
38
81
|
|
82
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
83
|
+
[provisional media registry][provisional], the
|
84
|
+
[Apache httpd media registry][httpd], and the
|
85
|
+
[Apache Tika media registry][tika] as of the release date.
|
39
86
|
|
40
87
|
## 3.2025.0610 / 2025-06-10
|
41
88
|
|
42
89
|
- Updated registry entries from the IANA [media registry][registry] and
|
43
|
-
[provisional media registry][provisional], the
|
44
|
-
|
45
|
-
|
90
|
+
[provisional media registry][provisional], the
|
91
|
+
[Apache httpd media registry][httpd], and the
|
92
|
+
[Apache Tika media registry][tika] as of the release date.
|
46
93
|
|
47
94
|
## 3.2025.0603 / 2025-06-03
|
48
95
|
|
49
96
|
- Updated registry entries from the IANA [media registry][registry] and
|
50
|
-
[provisional media registry][provisional], the
|
51
|
-
|
52
|
-
|
97
|
+
[provisional media registry][provisional], the
|
98
|
+
[Apache httpd media registry][httpd], and the
|
99
|
+
[Apache Tika media registry][tika] as of the release date.
|
53
100
|
|
54
101
|
## 3.2025.0527 / 2025-05-27
|
55
102
|
|
56
103
|
- Updated registry entries from the IANA [media registry][registry] and
|
57
|
-
[provisional media registry][provisional], the
|
58
|
-
|
59
|
-
|
104
|
+
[provisional media registry][provisional], the
|
105
|
+
[Apache httpd media registry][httpd], and the
|
106
|
+
[Apache Tika media registry][tika] as of the release date.
|
60
107
|
|
61
108
|
## 3.2025.0520 / 2025-05-20
|
62
109
|
|
63
110
|
- Updated registry entries from the IANA [media registry][registry] and
|
64
|
-
[provisional media registry][provisional], the
|
65
|
-
|
66
|
-
|
111
|
+
[provisional media registry][provisional], the
|
112
|
+
[Apache httpd media registry][httpd], and the
|
113
|
+
[Apache Tika media registry][tika] as of the release date.
|
67
114
|
|
68
115
|
## 3.2025.0514 / 2025-05-14
|
69
116
|
|
70
117
|
- Updated registry entries from the IANA [media registry][registry] and
|
71
|
-
[provisional media registry][provisional], the
|
72
|
-
|
73
|
-
|
118
|
+
[provisional media registry][provisional], the
|
119
|
+
[Apache httpd media registry][httpd], and the
|
120
|
+
[Apache Tika media registry][tika] as of the release date.
|
74
121
|
|
75
122
|
## 3.2025.0507 / 2025-05-07
|
76
123
|
|
@@ -617,12 +664,13 @@
|
|
617
664
|
[issue-55]: https://github.com/mime-types/mime-types-data/issues/55
|
618
665
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
619
666
|
[provisional]: https://www.iana.org/assignments/provisional-standard-media-types/provisional-standard-media-types.xml
|
620
|
-
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
621
667
|
[pull-109]: https://github.com/mime-types/mime-types-data/pull/109
|
622
668
|
[pull-10]: https://github.com/mime-types/mime-types-data/pull/10
|
623
669
|
[pull-11]: https://github.com/mime-types/mime-types-data/pull/11
|
624
670
|
[pull-12]: https://github.com/mime-types/mime-types-data/pull/12
|
625
671
|
[pull-13]: https://github.com/mime-types/mime-types-data/pull/13
|
672
|
+
[pull-191]: https://github.com/mime-types/mime-types-data/pull/191
|
673
|
+
[pull-192]: https://github.com/mime-types/mime-types-data/pull/192
|
626
674
|
[pull-20]: https://github.com/mime-types/mime-types-data/pull/20
|
627
675
|
[pull-21]: https://github.com/mime-types/mime-types-data/pull/21
|
628
676
|
[pull-23]: https://github.com/mime-types/mime-types-data/pull/23
|
@@ -635,6 +683,7 @@
|
|
635
683
|
[pull-34]: https://github.com/mime-types/mime-types-data/pull/34
|
636
684
|
[pull-35]: https://github.com/mime-types/mime-types-data/pull/35
|
637
685
|
[pull-36]: https://github.com/mime-types/mime-types-data/pull/36
|
686
|
+
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
638
687
|
[pull-40]: https://github.com/mime-types/mime-types-data/pull/40
|
639
688
|
[pull-43]: https://github.com/mime-types/mime-types-data/pull/43
|
640
689
|
[pull-45]: https://github.com/mime-types/mime-types-data/pull/45
|
@@ -650,6 +699,7 @@
|
|
650
699
|
[registry]: https://www.iana.org/assignments/media-types/media-types.xml
|
651
700
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
652
701
|
[ruby-mime-types#163]: https://github.com/mime-types/ruby-mime-types/issues/163
|
702
|
+
[ruby-mime-types#224]: https://github.com/mime-types/ruby-mime-types/pull/224
|
653
703
|
[ruby-mime-types#99]: https://github.com/mime-types/ruby-mime-types/pull/99
|
654
704
|
[tika]: https://github.com/apache/tika/blob/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
|
655
705
|
[tp]: https://guides.rubygems.org/trusted-publishing/
|
data/data/ext_mime.db
CHANGED
@@ -284,7 +284,7 @@ dms application/octet-stream
|
|
284
284
|
dna application/vnd.dna base64
|
285
285
|
dng image/x-adobe-dng base64
|
286
286
|
do application/x-stata-do base64
|
287
|
-
doc
|
287
|
+
doc application/msword base64
|
288
288
|
docm application/vnd.ms-word.document.macroEnabled.12 base64
|
289
289
|
docx application/vnd.openxmlformats-officedocument.wordprocessingml.document base64
|
290
290
|
dot application/msword base64
|