mime-types-data 3.2024.1001 → 3.2025.0318

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.
data/README.md CHANGED
@@ -1,8 +1,9 @@
1
1
  # mime-types-data
2
2
 
3
3
  - home :: https://github.com/mime-types/mime-types-data/
4
- - code :: https://github.com/mime-types/mime-types-data/
5
4
  - issues :: https://github.com/mime-types/mime-types-data/issues
5
+ - code :: https://github.com/mime-types/mime-types-data/
6
+ - changelog :: https://github.com/mime-types/mime-types-data/blob/main/CHANGELOG.md
6
7
 
7
8
  ## Description
8
9
 
@@ -13,11 +14,11 @@ extensions to look up the likely MIME type definitions.
13
14
 
14
15
  ### About MIME Media Types
15
16
 
16
- MIME media types are used in MIME-compliant communications, as in e-mail or
17
- HTTP traffic, to indicate the type of content which is transmitted. The
18
- registry provided in mime-types-data contains detailed information about MIME
19
- entities. There are many types defined by RFCs and vendors, so the list is long
20
- but invariably; don't hesitate to offer additional type definitions for
17
+ MIME media types are used in MIME-compliant communications, as in e-mail or HTTP
18
+ traffic, to indicate the type of content which is transmitted. The registry
19
+ provided in mime-types-data contains detailed information about MIME entities.
20
+ There are many types defined by RFCs and vendors, so the list is long but
21
+ invariably; don't hesitate to offer additional type definitions for
21
22
  consideration. MIME type definitions found in mime-types are from RFCs, W3C
22
23
  recommendations, the [IANA Media Types registry][registry], and user
23
24
  contributions. It conforms to RFCs 2045 and 2231.
@@ -26,20 +27,20 @@ contributions. It conforms to RFCs 2045 and 2231.
26
27
 
27
28
  This registry contains the MIME media types in four formats:
28
29
 
29
- - A YAML format matching the Ruby mime-types library objects (MIME::Type).
30
- This is the primary user-editable format for developers. It is _not_
31
- shipped with the gem due to size considerations.
30
+ - A YAML format matching the Ruby mime-types library objects (MIME::Type). This
31
+ is the primary user-editable format for developers. It is _not_ shipped with
32
+ the gem due to size considerations.
32
33
  - A JSON format converted from the YAML format. Prior to Ruby mime-types 3.0,
33
34
  this was the main consumption format and is still recommended for any
34
- implementation that does not wish to implement the columnar format, which
35
- has a significant implementation effort cost.
36
- - An encoded text format splitting the data for each MIME type across
37
- multiple files. This columnar data format reduces the minimal data load
38
- substantially, resulting in a performance improvement at the cost of more
39
- complex code for loading the data on-demand. This is the default format for
40
- Ruby mime-types 3.0.
41
- - An encoded text format for use with [`mini_mime`][] (as of 3.2021.1108). This
42
- can be enabled with:
35
+ implementation that does not wish to implement the columnar format, which has
36
+ a significant implementation effort cost.
37
+ - An encoded text format splitting the data for each MIME type across multiple
38
+ files. This columnar data format reduces the minimal data load substantially,
39
+ resulting in a performance improvement at the cost of more complex code for
40
+ loading the data on-demand. This is the default format for Ruby mime-types
41
+ 3.0.
42
+ - An encoded text format for use with [`mini_mime`][minimime]. This can be
43
+ enabled with:
43
44
 
44
45
  ```ruby
45
46
  MiniMime::Configuration.ext_db_path =
@@ -50,24 +51,24 @@ This registry contains the MIME media types in four formats:
50
51
 
51
52
  ## mime-types-data Modified Semantic Versioning
52
53
 
53
- mime-types-data uses a heavily modified [Semantic Versioning][] scheme to
54
- indicate that the data formats compatibility based on a `SCHEMA` version and
55
- the date of the data update: `SCHEMA.YEAR.MONTHDAY`.
54
+ mime-types-data uses a heavily modified [Semantic Versioning][semver] scheme to
55
+ indicate that the data formats compatibility based on a `SCHEMA` version and the
56
+ date of the data update: `SCHEMA.YEAR.MONTHDAY`.
56
57
 
57
58
  1. If an incompatible data format change is made to any of the supported
58
- formts, `SCHEMA` will be incremented. The current `SCHEMA` is 3, supporting
59
+ formats, `SCHEMA` will be incremented. The current `SCHEMA` is 3, supporting
59
60
  the YAML, JSON, and columnar formats required for Ruby mime-types 3.0.
60
61
 
61
- 2. When the data is updated, the `YEAR.MONTHDAY` combination will be updated.
62
- An update on the last day of October 2015 would be written as `2015.1031`,
62
+ 2. When the data is updated, the `YEAR.MONTHDAY` combination will be updated. An
63
+ update on the last day of October 2015 would be written as `2015.1031`,
63
64
  resulting in the full version of `3.2015.1031`.
64
65
 
65
66
  3. If multiple versions of the data need to be released on the same day due to
66
- error, there will be an additional `REVISION` field incremented on the end
67
- of the version. Thus, if three revisions need to be published on October
68
- 31st, 2015, the last release would be `3.2015.1031.2` (remember that the
69
- first release has an implied `0`.)
67
+ error, there will be an additional `REVISION` field incremented on the end of
68
+ the version. Thus, if three revisions need to be published on October 31st,
69
+ 2015, the last release would be `3.2015.1031.2` (remember that the first
70
+ release has an implied `0`.)
70
71
 
71
72
  [registry]: https://www.iana.org/assignments/media-types/media-types.xhtml
72
- [semantic versioning]: http://semver.org/
73
- [`mini_mime`]: https://github.com/discourse/mini_mime
73
+ [semver]: http://semver.org/
74
+ [minimime]: https://github.com/discourse/mini_mime
data/Rakefile CHANGED
@@ -4,51 +4,37 @@ require "rubygems"
4
4
  require "hoe"
5
5
  require "rake/clean"
6
6
 
7
- Hoe.plugin :doofus
8
- Hoe.plugin :gemspec2
9
- Hoe.plugin :git2
10
- Hoe.plugin :rubygems
7
+ $LOAD_PATH.unshift("lib")
8
+ $LOAD_PATH.unshift("support")
9
+
10
+ Hoe.plugin :halostatue
11
+
12
+ Hoe.plugins.delete :debug
13
+ Hoe.plugins.delete :newb
14
+ Hoe.plugins.delete :publish
15
+ Hoe.plugins.delete :signing
11
16
 
12
17
  Hoe.spec "mime-types-data" do
13
18
  developer("Austin Ziegler", "halostatue@gmail.com")
14
19
 
15
- self.history_file = "History.md"
16
- self.readme_file = "README.md"
17
-
18
- license "MIT"
20
+ self.trusted_release = ENV["rubygems_release_gem"] == "true"
19
21
 
20
22
  require_ruby_version ">= 2.0"
21
23
 
22
- spec_extras[:metadata] = ->(val) { val["rubygems_mfa_required"] = "true" }
24
+ license "MIT"
25
+
26
+ spec_extras[:metadata] = ->(val) {
27
+ val.merge!({"rubygems_mfa_required" => "true"})
28
+ }
23
29
 
24
30
  extra_dev_deps << ["hoe", "~> 4.0"]
25
- extra_dev_deps << ["hoe-doofus", "~> 1.0"]
26
- extra_dev_deps << ["hoe-gemspec2", "~> 1.1"]
27
- extra_dev_deps << ["hoe-git2", "~> 1.7"]
28
- extra_dev_deps << ["hoe-rubygems", "~> 1.0"]
31
+ extra_dev_deps << ["hoe-halostatue", "~> 2.0"]
29
32
  extra_dev_deps << ["mime-types", ">= 3.4.0", "< 4"]
30
33
  extra_dev_deps << ["nokogiri", "~> 1.6"]
31
34
  extra_dev_deps << ["rake", ">= 10.0", "< 14"]
32
35
  extra_dev_deps << ["standard", "~> 1.0"]
33
36
  end
34
37
 
35
- $LOAD_PATH.unshift "lib"
36
- $LOAD_PATH.unshift "support"
37
-
38
- def new_version
39
- version =
40
- IO.read("lib/mime/types/data.rb").scan(/VERSION = ['"](\d\.\d{4}\.\d{4}(?:\.\d+)?)['"]/).flatten.first
41
-
42
- major = Gem::Version.new(version).canonical_segments.first
43
- minor = Date.today.strftime("%Y.%m%d")
44
-
45
- "#{major}.#{minor}"
46
- end
47
-
48
- def release_header
49
- "#{new_version} / #{Date.today.strftime("%Y-%m-%d")}"
50
- end
51
-
52
38
  namespace :mime do
53
39
  desc "Download the current MIME type registrations from IANA."
54
40
  task :iana, [:destination] do |_, args|
@@ -63,105 +49,45 @@ namespace :mime do
63
49
  end
64
50
  end
65
51
 
52
+ task :version do
53
+ require "mime/types/data"
54
+ puts MIME::Types::Data::VERSION
55
+ end
56
+
66
57
  namespace :release do
67
- task __pull: %w[mime:apache mime:iana convert]
68
- task __prepare: %w[update:version update:history git:manifest]
69
- task :__commit do
70
- history = IO.read("History.md")
71
- message = history.scan(%r{## (#{release_header}.+?)## \d\.\d{4}\.\d{4} /}m).flatten.first
72
-
73
- IO.popen("git commit -a -F -", "w") { |commit|
74
- commit.puts message
75
- }
58
+ desc "Prepare a new release"
59
+ task :prepare do
60
+ require "prepare_release"
61
+
62
+ PrepareRelease.new
63
+ .download_and_convert
64
+ .write_updated_version
65
+ .write_updated_history
66
+ .rake_git_manifest
67
+ .rake_gemspec
76
68
  end
77
69
 
78
70
  desc "Prepare a new release for use with GitHub Actions"
79
71
  task :gha do
80
72
  require "prepare_release"
81
73
 
82
- pr = PrepareRelease.new
83
- pr.download_and_convert
84
- pr.write_updated_version
85
- pr.write_updated_history
86
- pr.rake_git_manifest
87
- pr.rake_gemspec
88
- pr.as_gha_vars
89
- end
90
-
91
- desc "Prepare a new automatic release"
92
- task automatic: :__pull do
93
- if system("git diff --quiet --exit-code") == false
94
- Rake::Task["release:__prepare"].invoke
95
- Rake::Task["gemspec"].invoke
96
- Rake::Task["release:__commit"].invoke
97
- else
98
- warn "No changes detected."
99
- end
74
+ PrepareRelease.new
75
+ .download_and_convert
76
+ .write_updated_version
77
+ .write_updated_history
78
+ .rake_git_manifest
79
+ .rake_gemspec
80
+ .as_gha_vars
100
81
  end
101
82
  end
102
83
 
103
- namespace :convert do
104
- namespace :yaml do
105
- desc "Convert from YAML to JSON"
106
- task :json, [:source, :destination, :multiple_files] do |_, args|
107
- require "convert"
108
- Convert.from_yaml_to_json(from: args.source, to: args.destination, multiple_files: args.multiple_files)
109
- end
110
-
111
- desc "Convert from YAML to Columnar"
112
- task :columnar, [:source, :destination] do |_, args|
113
- require "convert/columnar"
114
- Convert::Columnar.from_yaml_to_columnar(from: args.source, to: args.destination)
115
- end
116
-
117
- desc "Convert from YAML to mini_mime db format"
118
- task :mini_mime, [:source, :destination] do |_, args|
119
- require "convert/mini_mime_db"
120
- Convert::MiniMimeDb.from_yaml_to_mini_mime(from: args.source, to: args.destination)
121
- end
122
- end
123
-
124
- namespace :json do
125
- desc "Convert from JSON to YAML"
126
- task :yaml, [:source, :destination, :multiple_files] do |_, args|
127
- require "convert"
128
- Convert.from_json_to_yaml(from: args.source, to: args.destination, multiple_files: args.multiple_files)
129
- end
130
- end
131
- end
132
-
133
- namespace :update do
134
- desc "Update the release version"
135
- task :version do
136
- file = IO.read("lib/mime/types/data.rb")
137
- updated = file.sub(/VERSION = ['"][.0-9]+['"]/, %(VERSION = "#{new_version}"))
138
-
139
- IO.write("lib/mime/types/data.rb", updated)
140
- end
141
-
142
- desc "Update the history file with automatic release notes"
143
- task :history do
144
- history = IO.read("History.md")
145
-
146
- if !/^## #{release_header}$/.match?(history)
147
- note = <<-NOTE
148
- <!-- automatic-release -->
149
-
150
- ## #{release_header}
151
-
152
- - Updated the Apache and IANA media registry entries as of release date.
153
- NOTE
154
-
155
- updated = history.sub("<!-- automatic-release -->\n", note)
84
+ desc "Default conversion from YAML to JSON and Columnar"
85
+ task :convert do
86
+ require "prepare_release"
156
87
 
157
- IO.write("History.md", updated)
158
- end
159
- end
88
+ PrepareRelease.new.convert_types
160
89
  end
161
90
 
162
- desc "Default conversion from YAML to JSON and Columnar"
163
- task convert: ["convert:yaml:json", "convert:yaml:columnar", "convert:yaml:mini_mime"]
164
-
165
91
  Rake::Task["gem"].prerequisites.unshift("convert")
166
92
  Rake::Task["gem"].prerequisites.unshift("git:manifest")
167
93
  Rake::Task["gem"].prerequisites.unshift("gemspec")
data/SECURITY.md CHANGED
@@ -1,4 +1,4 @@
1
- # mime-types Security
1
+ # mime-types-data Security
2
2
 
3
3
  ## Security contact information
4
4