mime-types-data 3.2025.0520 → 3.2025.0819
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 +123 -3
- data/data/ext_mime.db +1 -1
- data/data/mime-types.json +1 -1
- data/data/mime.content_type.column +18 -1
- data/data/mime.docs.column +17 -0
- data/data/mime.encoding.column +17 -0
- data/data/mime.flags.column +39 -22
- data/data/mime.friendly.column +17 -0
- data/data/mime.pext.column +17 -0
- data/data/mime.spri.column +0 -0
- data/data/mime.use_instead.column +17 -0
- data/data/mime.xrefs.column +30 -13
- data/lib/mime/types/data.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8f4c9a6421e2fb3283e3d716dc1913c197d1d08027ab75b64478e6b9a0e86274
|
4
|
+
data.tar.gz: 66aa8ce048423be8d40e3c71b0010824ea63b8ac446521805b7886bf52bf9ee9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 85bff89d2d8c2b33e9f2fb52f40a1f6db3da290e0d171961700e4acd254522d630985ebbb61c34eb6d47e6864635867d5d4e94aa816c4c01575cf7d085cc3042
|
7
|
+
data.tar.gz: ad045f996a2b0385c1a8f9084526f1113427bfda8f9baf6158fd35b9b2dc7972563b7cb1807d414ba78c93dd38989bdb1bf7248b5dedec16dedece78c5722fbb
|
data/CHANGELOG.md
CHANGED
@@ -2,20 +2,137 @@
|
|
2
2
|
|
3
3
|
<!-- automatic-release -->
|
4
4
|
|
5
|
-
## 3.2025.
|
5
|
+
## 3.2025.0819 / 2025-08-19
|
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.0812 / 2025-08-12
|
13
|
+
|
14
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
15
|
+
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
16
|
+
and the [Apache Tika media registry][tika] as of the release date.
|
17
|
+
|
18
|
+
|
19
|
+
## 3.2025.0805 / 2025-08-05
|
13
20
|
|
14
21
|
- Updated registry entries from the IANA [media registry][registry] and
|
15
22
|
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
16
23
|
and the [Apache Tika media registry][tika] as of the release date.
|
17
24
|
|
18
25
|
|
26
|
+
## 3.2025.0729 / 2025-07-29
|
27
|
+
|
28
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
29
|
+
[provisional media registry][provisional], the [Apache httpd media registry][httpd],
|
30
|
+
and the [Apache Tika media registry][tika] as of the release date.
|
31
|
+
|
32
|
+
|
33
|
+
|
34
|
+
- Remove `.doc` from `text/plain`: The use of `.doc` for `text/plain` documents
|
35
|
+
is mostly a holdover from VAX VMS where the default wasn't `.txt` but `.doc`.
|
36
|
+
The world now thinks that `.doc` mostly means `application/msword` even though
|
37
|
+
that format is obsolete by almost twenty years. Closes
|
38
|
+
[ruby-mime-types#224][ruby-mime-types#224] with [#191][pull-191].
|
39
|
+
|
40
|
+
- Handle promoted and withdrawn provisional IANA media types. Closes
|
41
|
+
[#54][issue-54] with [#192][pull-192].
|
42
|
+
|
43
|
+
The logic is three relatively simple phases:
|
44
|
+
|
45
|
+
1. When loading an existing registry grouping (such as
|
46
|
+
`types/application.yaml`), we mark any type that is `provisional` as
|
47
|
+
`obsolete`. This indicates that we consider any provisional type as
|
48
|
+
potentially withdrawn (and therefore obsolete).
|
49
|
+
2. When processing existing regular types, we clear both `provisional` and
|
50
|
+
`obsolete` flags so that a type promoted from provisional is now a regular
|
51
|
+
registry entry.
|
52
|
+
3. After merging the current list of registry entries, we _clear_
|
53
|
+
`provisional` if the type is marked both `provisional` and `obsolete`,
|
54
|
+
indicating that the provisional type has been withdrawn.
|
55
|
+
|
56
|
+
These heuristics match several types which have been promoted and withdrawn
|
57
|
+
since the handling of provisional types was improved with [#53][pull-53].
|
58
|
+
|
59
|
+
## 3.2025.0722 / 2025-07-22
|
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.
|
65
|
+
|
66
|
+
## 3.2025.0715 / 2025-07-15
|
67
|
+
|
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.0708 / 2025-07-08
|
74
|
+
|
75
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.0701 / 2025-07-01
|
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.
|
86
|
+
|
87
|
+
## 3.2025.0624 / 2025-06-24
|
88
|
+
|
89
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
93
|
+
|
94
|
+
## 3.2025.0617 / 2025-06-17
|
95
|
+
|
96
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
100
|
+
|
101
|
+
## 3.2025.0610 / 2025-06-10
|
102
|
+
|
103
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
107
|
+
|
108
|
+
## 3.2025.0603 / 2025-06-03
|
109
|
+
|
110
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
114
|
+
|
115
|
+
## 3.2025.0527 / 2025-05-27
|
116
|
+
|
117
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
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.
|
121
|
+
|
122
|
+
## 3.2025.0520 / 2025-05-20
|
123
|
+
|
124
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
125
|
+
[provisional media registry][provisional], the
|
126
|
+
[Apache httpd media registry][httpd], and the
|
127
|
+
[Apache Tika media registry][tika] as of the release date.
|
128
|
+
|
129
|
+
## 3.2025.0514 / 2025-05-14
|
130
|
+
|
131
|
+
- Updated registry entries from the IANA [media registry][registry] and
|
132
|
+
[provisional media registry][provisional], the
|
133
|
+
[Apache httpd media registry][httpd], and the
|
134
|
+
[Apache Tika media registry][tika] as of the release date.
|
135
|
+
|
19
136
|
## 3.2025.0507 / 2025-05-07
|
20
137
|
|
21
138
|
- Added new data for pre-computed priority sorting. This new data requires Ruby
|
@@ -561,12 +678,13 @@
|
|
561
678
|
[issue-55]: https://github.com/mime-types/mime-types-data/issues/55
|
562
679
|
[mini_mime]: https://github.com/discourse/mini_mime/issues/41
|
563
680
|
[provisional]: https://www.iana.org/assignments/provisional-standard-media-types/provisional-standard-media-types.xml
|
564
|
-
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
565
681
|
[pull-109]: https://github.com/mime-types/mime-types-data/pull/109
|
566
682
|
[pull-10]: https://github.com/mime-types/mime-types-data/pull/10
|
567
683
|
[pull-11]: https://github.com/mime-types/mime-types-data/pull/11
|
568
684
|
[pull-12]: https://github.com/mime-types/mime-types-data/pull/12
|
569
685
|
[pull-13]: https://github.com/mime-types/mime-types-data/pull/13
|
686
|
+
[pull-191]: https://github.com/mime-types/mime-types-data/pull/191
|
687
|
+
[pull-192]: https://github.com/mime-types/mime-types-data/pull/192
|
570
688
|
[pull-20]: https://github.com/mime-types/mime-types-data/pull/20
|
571
689
|
[pull-21]: https://github.com/mime-types/mime-types-data/pull/21
|
572
690
|
[pull-23]: https://github.com/mime-types/mime-types-data/pull/23
|
@@ -579,6 +697,7 @@
|
|
579
697
|
[pull-34]: https://github.com/mime-types/mime-types-data/pull/34
|
580
698
|
[pull-35]: https://github.com/mime-types/mime-types-data/pull/35
|
581
699
|
[pull-36]: https://github.com/mime-types/mime-types-data/pull/36
|
700
|
+
[pull-3]: https://github.com/mime-types/mime-types-data/pull/3
|
582
701
|
[pull-40]: https://github.com/mime-types/mime-types-data/pull/40
|
583
702
|
[pull-43]: https://github.com/mime-types/mime-types-data/pull/43
|
584
703
|
[pull-45]: https://github.com/mime-types/mime-types-data/pull/45
|
@@ -594,6 +713,7 @@
|
|
594
713
|
[registry]: https://www.iana.org/assignments/media-types/media-types.xml
|
595
714
|
[rmt]: https://github.com/mime-types/ruby-mime-types
|
596
715
|
[ruby-mime-types#163]: https://github.com/mime-types/ruby-mime-types/issues/163
|
716
|
+
[ruby-mime-types#224]: https://github.com/mime-types/ruby-mime-types/pull/224
|
597
717
|
[ruby-mime-types#99]: https://github.com/mime-types/ruby-mime-types/pull/99
|
598
718
|
[tika]: https://github.com/apache/tika/blob/main/tika-core/src/main/resources/org/apache/tika/mime/tika-mimetypes.xml
|
599
719
|
[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
|