mime-types-data 3.2025.0715 → 3.2025.0729
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 +72 -29
- data/data/ext_mime.db +1 -1
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +2 -1
- data/data/mime.docs.column +1 -0
- data/data/mime.encoding.column +1 -0
- data/data/mime.flags.column +23 -22
- data/data/mime.friendly.column +1 -0
- data/data/mime.pext.column +1 -0
- data/data/mime.spri.column +0 -0
- data/data/mime.use_instead.column +1 -0
- data/data/mime.xrefs.column +1 -0
- 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: 5338384775dfb99da645cef596734c0d444e290ec62b835485e0ad4facb6beb8
|
4
|
+
data.tar.gz: 7d289e615e29934c8b3a87c5cdd72eedcfa0bee555e2bff1ef6140842974c605
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 62d2e602bfb907592130816740a78add66600373deacbb355875461a0261225609da6b04f3d84d29779f9a203e07af2c18f92c643505490b4da569add299b54a
|
7
|
+
data.tar.gz: 712f468e18a50fa1a4b46a5da3e180c874cd9aed46583924ac17fdc0f0a1a1a7bf8a9e914049635a319d14d2a111c3d4dc6c0d24cb8ea6cc9479bb15d2463e35
|
data/CHANGELOG.md
CHANGED
@@ -2,75 +2,115 @@
|
|
2
2
|
|
3
3
|
<!-- automatic-release -->
|
4
4
|
|
5
|
-
## 3.2025.
|
5
|
+
## 3.2025.0729 / 2025-07-29
|
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
|
-
|
12
|
+
|
13
|
+
- Remove `.doc` from `text/plain`: The use of `.doc` for `text/plain` documents
|
14
|
+
is mostly a holdover from VAX VMS where the default wasn't `.txt` but `.doc`.
|
15
|
+
The world now thinks that `.doc` mostly means `application/msword` even though
|
16
|
+
that format is obsolete by almost twenty years. Closes
|
17
|
+
[ruby-mime-types#224][ruby-mime-types#224] with [#191][pull-191].
|
18
|
+
|
19
|
+
- Handle promoted and withdrawn provisional IANA media types. Closes
|
20
|
+
[#54][issue-54] with [#192][pull-192].
|
21
|
+
|
22
|
+
The logic is three relatively simple phases:
|
23
|
+
|
24
|
+
1. When loading an existing registry grouping (such as
|
25
|
+
`types/application.yaml`), we mark any type that is `provisional` as
|
26
|
+
`obsolete`. This indicates that we consider any provisional type as
|
27
|
+
potentially withdrawn (and therefore obsolete).
|
28
|
+
2. When processing existing regular types, we clear both `provisional` and
|
29
|
+
`obsolete` flags so that a type promoted from provisional is now a regular
|
30
|
+
registry entry.
|
31
|
+
3. After merging the current list of registry entries, we _clear_
|
32
|
+
`provisional` if the type is marked both `provisional` and `obsolete`,
|
33
|
+
indicating that the provisional type has been withdrawn.
|
34
|
+
|
35
|
+
These heuristics match several types which have been promoted and withdrawn
|
36
|
+
since the handling of provisional types was improved with [#53][pull-53].
|
37
|
+
|
38
|
+
## 3.2025.0722 / 2025-07-22
|
13
39
|
|
14
40
|
- Updated registry entries from the IANA [media registry][registry] and
|
15
|
-
[provisional media registry][provisional], the
|
16
|
-
|
41
|
+
[provisional media registry][provisional], the
|
42
|
+
[Apache httpd media registry][httpd], and the
|
43
|
+
[Apache Tika media registry][tika] as of the release date.
|
44
|
+
|
45
|
+
## 3.2025.0715 / 2025-07-15
|
17
46
|
|
47
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
18
51
|
|
19
|
-
## 3.2025.
|
52
|
+
## 3.2025.0708 / 2025-07-08
|
20
53
|
|
21
54
|
- Updated registry entries from the IANA [media registry][registry] and
|
22
|
-
[provisional media registry][provisional], the
|
23
|
-
|
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.
|
24
58
|
|
59
|
+
## 3.2025.0701 / 2025-07-01
|
60
|
+
|
61
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
25
65
|
|
26
66
|
## 3.2025.0624 / 2025-06-24
|
27
67
|
|
28
68
|
- Updated registry entries from the IANA [media registry][registry] and
|
29
|
-
[provisional media registry][provisional], the
|
30
|
-
|
31
|
-
|
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.
|
32
72
|
|
33
73
|
## 3.2025.0617 / 2025-06-17
|
34
74
|
|
35
75
|
- Updated registry entries from the IANA [media registry][registry] and
|
36
|
-
[provisional media registry][provisional], the
|
37
|
-
|
38
|
-
|
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.
|
39
79
|
|
40
80
|
## 3.2025.0610 / 2025-06-10
|
41
81
|
|
42
82
|
- Updated registry entries from the IANA [media registry][registry] and
|
43
|
-
[provisional media registry][provisional], the
|
44
|
-
|
45
|
-
|
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.
|
46
86
|
|
47
87
|
## 3.2025.0603 / 2025-06-03
|
48
88
|
|
49
89
|
- Updated registry entries from the IANA [media registry][registry] and
|
50
|
-
[provisional media registry][provisional], the
|
51
|
-
|
52
|
-
|
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.
|
53
93
|
|
54
94
|
## 3.2025.0527 / 2025-05-27
|
55
95
|
|
56
96
|
- Updated registry entries from the IANA [media registry][registry] and
|
57
|
-
[provisional media registry][provisional], the
|
58
|
-
|
59
|
-
|
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.
|
60
100
|
|
61
101
|
## 3.2025.0520 / 2025-05-20
|
62
102
|
|
63
103
|
- Updated registry entries from the IANA [media registry][registry] and
|
64
|
-
[provisional media registry][provisional], the
|
65
|
-
|
66
|
-
|
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.
|
67
107
|
|
68
108
|
## 3.2025.0514 / 2025-05-14
|
69
109
|
|
70
110
|
- Updated registry entries from the IANA [media registry][registry] and
|
71
|
-
[provisional media registry][provisional], the
|
72
|
-
|
73
|
-
|
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.
|
74
114
|
|
75
115
|
## 3.2025.0507 / 2025-05-07
|
76
116
|
|
@@ -617,12 +657,13 @@
|
|
617
657
|
[issue-55]: https://github.com/mime-types/mime-types-data/issues/55
|
618
658
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
619
659
|
[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
660
|
[pull-109]: https://github.com/mime-types/mime-types-data/pull/109
|
622
661
|
[pull-10]: https://github.com/mime-types/mime-types-data/pull/10
|
623
662
|
[pull-11]: https://github.com/mime-types/mime-types-data/pull/11
|
624
663
|
[pull-12]: https://github.com/mime-types/mime-types-data/pull/12
|
625
664
|
[pull-13]: https://github.com/mime-types/mime-types-data/pull/13
|
665
|
+
[pull-191]: https://github.com/mime-types/mime-types-data/pull/191
|
666
|
+
[pull-192]: https://github.com/mime-types/mime-types-data/pull/192
|
626
667
|
[pull-20]: https://github.com/mime-types/mime-types-data/pull/20
|
627
668
|
[pull-21]: https://github.com/mime-types/mime-types-data/pull/21
|
628
669
|
[pull-23]: https://github.com/mime-types/mime-types-data/pull/23
|
@@ -635,6 +676,7 @@
|
|
635
676
|
[pull-34]: https://github.com/mime-types/mime-types-data/pull/34
|
636
677
|
[pull-35]: https://github.com/mime-types/mime-types-data/pull/35
|
637
678
|
[pull-36]: https://github.com/mime-types/mime-types-data/pull/36
|
679
|
+
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
638
680
|
[pull-40]: https://github.com/mime-types/mime-types-data/pull/40
|
639
681
|
[pull-43]: https://github.com/mime-types/mime-types-data/pull/43
|
640
682
|
[pull-45]: https://github.com/mime-types/mime-types-data/pull/45
|
@@ -650,6 +692,7 @@
|
|
650
692
|
[registry]: https://www.iana.org/assignments/media-types/media-types.xml
|
651
693
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
652
694
|
[ruby-mime-types#163]: https://github.com/mime-types/ruby-mime-types/issues/163
|
695
|
+
[ruby-mime-types#224]: https://github.com/mime-types/ruby-mime-types/pull/224
|
653
696
|
[ruby-mime-types#99]: https://github.com/mime-types/ruby-mime-types/pull/99
|
654
697
|
[tika]: https://github.com/apache/tika/blob/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
|
655
698
|
[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
|