kinetic_sdk 5.0.14 → 5.0.19
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +30 -0
- data/gems/{mime-types-3.1/Code-of-Conduct.rdoc → mime-types-3.3.1/Code-of-Conduct.md} +19 -20
- data/gems/{mime-types-3.1/Contributing.rdoc → mime-types-3.3.1/Contributing.md} +67 -54
- data/gems/mime-types-3.3.1/History.md +240 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-3.3.1}/Licence.md +1 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/Manifest.txt +4 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/README.rdoc +5 -14
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/Rakefile +43 -13
- data/gems/mime-types-3.3.1/lib/mime-types.rb +3 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type.rb +60 -46
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/type/columnar.rb +4 -2
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types.rb +11 -8
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/_columnar.rb +10 -9
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/cache.rb +7 -5
- data/gems/mime-types-3.3.1/lib/mime/types/columnar.rb +3 -0
- data/gems/mime-types-3.3.1/lib/mime/types/container.rb +96 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/deprecations.rb +3 -3
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/full.rb +2 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/loader.rb +2 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/logger.rb +3 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/lib/mime/types/registry.rb +12 -3
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/bad-fixtures/malformed +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/json.json +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/old-data +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/fixture/yaml.yaml +0 -0
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/minitest_helper.rb +1 -1
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_type.rb +33 -26
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types.rb +33 -25
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_cache.rb +15 -6
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_class.rb +18 -14
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_lazy.rb +10 -4
- data/gems/{mime-types-3.1 → mime-types-3.3.1}/test/test_mime_types_loader.rb +1 -1
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Code-of-Conduct.md +10 -10
- data/gems/mime-types-data-3.2021.0225/Contributing.md +224 -0
- data/gems/mime-types-data-3.2021.0225/History.md +468 -0
- data/gems/{mime-types-3.1/Licence.rdoc → mime-types-data-3.2021.0225/Licence.md} +3 -3
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/Manifest.txt +13 -0
- data/gems/mime-types-data-3.2021.0225/README.md +63 -0
- data/gems/mime-types-data-3.2021.0225/Rakefile +159 -0
- data/gems/mime-types-data-3.2021.0225/data/mime-types.json +1 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.content_type.column +364 -13
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.docs.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.encoding.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.flags.column +352 -1
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.friendly.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.pext.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.use_instead.column +351 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/data/mime.xrefs.column +480 -129
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime-types-data.rb +0 -0
- data/gems/{mime-types-data-3.2016.0521 → mime-types-data-3.2021.0225}/lib/mime/types/data.rb +1 -1
- data/gems/mime-types-data-3.2021.0225/types/application.yaml +16933 -0
- data/gems/mime-types-data-3.2021.0225/types/audio.yaml +1714 -0
- data/gems/mime-types-data-3.2021.0225/types/chemical.yaml +71 -0
- data/gems/mime-types-data-3.2021.0225/types/conference.yaml +9 -0
- data/gems/mime-types-data-3.2021.0225/types/drawing.yaml +15 -0
- data/gems/mime-types-data-3.2021.0225/types/font.yaml +65 -0
- data/gems/mime-types-data-3.2021.0225/types/image.yaml +1251 -0
- data/gems/mime-types-data-3.2021.0225/types/message.yaml +200 -0
- data/gems/mime-types-data-3.2021.0225/types/model.yaml +331 -0
- data/gems/mime-types-data-3.2021.0225/types/multipart.yaml +179 -0
- data/gems/mime-types-data-3.2021.0225/types/text.yaml +1145 -0
- data/gems/mime-types-data-3.2021.0225/types/video.yaml +1094 -0
- data/gems/mime-types-data-3.2021.0225/types/world.yaml +8 -0
- data/kinetic_sdk.gemspec +3 -3
- data/lib/kinetic_sdk.rb +2 -2
- data/lib/kinetic_sdk/core/lib/teams.rb +12 -0
- data/lib/kinetic_sdk/core/lib/users.rb +12 -1
- data/lib/kinetic_sdk/utils/kinetic-http.rb +2 -4
- data/lib/kinetic_sdk/version.rb +1 -1
- metadata +72 -59
- data/gems/mime-types-3.1/History.rdoc +0 -658
- data/gems/mime-types-3.1/lib/mime-types.rb +0 -1
- data/gems/mime-types-3.1/lib/mime/types/columnar.rb +0 -1
- data/gems/mime-types-3.1/lib/mime/types/container.rb +0 -30
- data/gems/mime-types-data-3.2016.0521/Contributing.md +0 -157
- data/gems/mime-types-data-3.2016.0521/History.md +0 -351
- data/gems/mime-types-data-3.2016.0521/README.md +0 -61
- data/gems/mime-types-data-3.2016.0521/Rakefile +0 -80
- data/gems/mime-types-data-3.2016.0521/data/mime-types.json +0 -1
@@ -1 +0,0 @@
|
|
1
|
-
require 'mime/types'
|
@@ -1 +0,0 @@
|
|
1
|
-
require 'mime/types'
|
@@ -1,30 +0,0 @@
|
|
1
|
-
require 'set'
|
2
|
-
|
3
|
-
# MIME::Types requires a container Hash with a default values for keys
|
4
|
-
# resulting in an empty array (<tt>[]</tt>), but this cannot be dumped through
|
5
|
-
# Marshal because of the presence of that default Proc. This class exists
|
6
|
-
# solely to satisfy that need.
|
7
|
-
class MIME::Types::Container < Hash # :nodoc:
|
8
|
-
def initialize
|
9
|
-
super
|
10
|
-
self.default_proc = ->(h, k) { h[k] = Set.new }
|
11
|
-
end
|
12
|
-
|
13
|
-
def marshal_dump
|
14
|
-
{}.merge(self)
|
15
|
-
end
|
16
|
-
|
17
|
-
def marshal_load(hash)
|
18
|
-
self.default_proc = ->(h, k) { h[k] = Set.new }
|
19
|
-
merge!(hash)
|
20
|
-
end
|
21
|
-
|
22
|
-
def encode_with(coder)
|
23
|
-
each { |k, v| coder[k] = v.to_a }
|
24
|
-
end
|
25
|
-
|
26
|
-
def init_with(coder)
|
27
|
-
self.default_proc = ->(h, k) { h[k] = Set.new }
|
28
|
-
coder.map.each { |k, v| self[k] = Set[*v] }
|
29
|
-
end
|
30
|
-
end
|
@@ -1,157 +0,0 @@
|
|
1
|
-
## Contributing
|
2
|
-
|
3
|
-
Contributions to mime-types-data is encouraged in any form: a bug report, new
|
4
|
-
MIME type defintions, or additional code to help manage the MIME types. As with
|
5
|
-
many of my projects, I have a few suggestions for improving the chance of
|
6
|
-
acceptance of your code contributions:
|
7
|
-
|
8
|
-
* The support files are written in Ruby and should remain in the coding style
|
9
|
-
that already exists, and I use hoe for releasing the mime-types-data RubyGem.
|
10
|
-
* Use a thoughtfully-named topic branch that contains your change. Rebase your
|
11
|
-
commits into logical chunks as necessary.
|
12
|
-
* Use [quality commit messages][qcm].
|
13
|
-
* Do not change the version number; when your patch is accepted and a release
|
14
|
-
is made, the version will be updated at that point.
|
15
|
-
* Submit a GitHub pull request with your changes.
|
16
|
-
* New or changed behaviours require new or updated documentation.
|
17
|
-
|
18
|
-
Although mime-types-data was extracted from the [Ruby mime-types][rmt] gem and
|
19
|
-
the support files are written in Ruby, the *target* of mime-types-data is any
|
20
|
-
implementation that wishes to use the data as a MIME types registry, so I am
|
21
|
-
particularly interested in tools that will create a mime-types-data package for
|
22
|
-
other languages.
|
23
|
-
|
24
|
-
### Adding or Modifying MIME Types
|
25
|
-
|
26
|
-
The Ruby mime-types gem loads its data from files encoded in the `data`
|
27
|
-
directory in this gem by loading `mime-types-data` and reading
|
28
|
-
MIME::Types::Data::PATH. These files are compiled files from the collection of
|
29
|
-
data in the `types` directory. Pull requests that include changes to these
|
30
|
-
files will require amendment to revert these files.
|
31
|
-
|
32
|
-
New or modified MIME types should be edited in the appropriate YAML file under
|
33
|
-
`types`. The format is as shown below for the `application/xml` MIME type
|
34
|
-
in `types/application.yml`.
|
35
|
-
|
36
|
-
```yaml
|
37
|
-
- !ruby/object:MIME::Type
|
38
|
-
content-type: application/xml
|
39
|
-
encoding: 8bit
|
40
|
-
extensions:
|
41
|
-
- xml
|
42
|
-
- xsl
|
43
|
-
references:
|
44
|
-
- IANA
|
45
|
-
- RFC3023
|
46
|
-
xrefs: !ruby/hash:MIME::Types::Container
|
47
|
-
rfc:
|
48
|
-
- rfc3023
|
49
|
-
registered: true
|
50
|
-
```
|
51
|
-
|
52
|
-
There are other fields that can be added, matching the fields discussed in the
|
53
|
-
documentation for MIME::Type. Pull requests for MIME types should just contain
|
54
|
-
the changes to the YAML files for the new or modified MIME types; I will
|
55
|
-
convert the YAML files to JSON prior to a new release. I would rather not have
|
56
|
-
to verify that the JSON matches the YAML changes, which is why it is not
|
57
|
-
necessary to convert for the pull request.
|
58
|
-
|
59
|
-
If you are making a change for a private fork, use `rake convert:yaml:json` to
|
60
|
-
convert the YAML to JSON, or `rake convert:yaml:columnar` to convert it to the
|
61
|
-
new columnar format.
|
62
|
-
|
63
|
-
#### Updating Types from the IANA or Apache Lists
|
64
|
-
|
65
|
-
If you are maintaining a private fork and wish to update your copy of the MIME
|
66
|
-
types registry used by this gem, you can do this with the rake tasks:
|
67
|
-
|
68
|
-
$ rake mime:iana
|
69
|
-
$ rake mime:apache
|
70
|
-
|
71
|
-
### Development Dependencies
|
72
|
-
|
73
|
-
mime-types-data uses Ryan Davis’s {Hoe}[https://github.com/seattlerb/hoe] to
|
74
|
-
manage the release process, and it adds a number of rake tasks. You will mostly
|
75
|
-
be interested in:
|
76
|
-
|
77
|
-
$ rake
|
78
|
-
|
79
|
-
which runs the tests the same way that:
|
80
|
-
|
81
|
-
$ rake test
|
82
|
-
$ rake travis
|
83
|
-
|
84
|
-
will do.
|
85
|
-
|
86
|
-
To assist with the installation of the development dependencies for
|
87
|
-
mime-types-data, I have provided the simplest possible Gemfile pointing to the
|
88
|
-
(generated) `mime-types-data.gemspec` file. This will permit you to do:
|
89
|
-
|
90
|
-
$ bundle install
|
91
|
-
|
92
|
-
to get the development dependencies. If you aleady have `hoe` installed, you
|
93
|
-
can accomplish the same thing with:
|
94
|
-
|
95
|
-
$ rake newb
|
96
|
-
|
97
|
-
This task will install any missing dependencies, run the tests/specs, and
|
98
|
-
generate the RDoc.
|
99
|
-
|
100
|
-
You can run tests with code coverage analysis by running:
|
101
|
-
|
102
|
-
$ rake test:coverage
|
103
|
-
|
104
|
-
### Workflow
|
105
|
-
|
106
|
-
Here's the most direct way to get your work merged into the project:
|
107
|
-
|
108
|
-
* Fork the project.
|
109
|
-
* Clone down your fork (`git clone
|
110
|
-
git://github.com/<username>/mime-types-data.git`).
|
111
|
-
* Create a topic branch to contain your change (`git checkout -b
|
112
|
-
my\_awesome\_feature`).
|
113
|
-
* Hack away, add tests. Not necessarily in that order.
|
114
|
-
* Make sure everything still passes by running `rake`.
|
115
|
-
* If necessary, rebase your commits into logical chunks, without errors.
|
116
|
-
* Push the branch up (`git push origin my\_awesome\_feature`).
|
117
|
-
* Create a pull request against mime-types/mime-types-data and describe what
|
118
|
-
your change does and the why you think it should be merged.
|
119
|
-
|
120
|
-
### Contributors
|
121
|
-
|
122
|
-
* Austin Ziegler created mime-types.
|
123
|
-
|
124
|
-
Thanks to everyone else who has contributed to mime-types:
|
125
|
-
|
126
|
-
* Aaron Patterson
|
127
|
-
* Aggelos Avgerinos
|
128
|
-
* Andre Pankratz
|
129
|
-
* Andy Brody
|
130
|
-
* Arnaud Meuret
|
131
|
-
* Brandon Galbraith
|
132
|
-
* Chris Gat
|
133
|
-
* David Genord
|
134
|
-
* Eric Marden
|
135
|
-
* Garret Alfert
|
136
|
-
* Godfrey Chan
|
137
|
-
* Greg Brockman
|
138
|
-
* Hans de Graaff
|
139
|
-
* Henrik Hodne
|
140
|
-
* Jeremy Evans
|
141
|
-
* Juanito Fatas
|
142
|
-
* Łukasz Śliwa
|
143
|
-
* Keerthi Siva
|
144
|
-
* Ken Ip
|
145
|
-
* Martin d'Allens
|
146
|
-
* Mauricio Linhares
|
147
|
-
* nycvotes-dev
|
148
|
-
* Postmodern
|
149
|
-
* Richard Hirner
|
150
|
-
* Richard Hurt
|
151
|
-
* Richard Schneeman
|
152
|
-
* Tao Guo
|
153
|
-
* Tibor Szolár
|
154
|
-
* Todd Carrico
|
155
|
-
|
156
|
-
[qcm]: http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
|
157
|
-
[rmt]: https://github.com/mime-types/ruby-mime-types/
|
@@ -1,351 +0,0 @@
|
|
1
|
-
# MIME Types Changes by Version
|
2
|
-
|
3
|
-
## 3.2016.0521 / 2016-05-21
|
4
|
-
|
5
|
-
* Updated the known extension list for application/octet-stream and
|
6
|
-
application/pgp-encrypted to include gpg as an extension. Fixes
|
7
|
-
[#3](https://github.com/mime-types/mime-types-data/pull/3) by Tao Guo
|
8
|
-
(@taoza).
|
9
|
-
* Updated the IANA media registry entries as of release date:
|
10
|
-
|
11
|
-
* Updated metadata for application/EmergencyCallData.Comment\+xml,
|
12
|
-
application/EmergencyCallData.DeviceInfo\+xml,
|
13
|
-
application/EmergencyCallData.ProviderInfo\+xml,
|
14
|
-
application/EmergencyCallData.ServiceInfo\+xml,
|
15
|
-
application/EmergencyCallData.SubscriberInfo\+xml,
|
16
|
-
application/ogg, application/problem\+json, application/problem\+xml,
|
17
|
-
audio/ogg, text/markdown, video/H265, video/ogg.
|
18
|
-
* Added application/efi, application/vnd.3gpp.sms\+xml,
|
19
|
-
application/vnd.3lightssoftware.imagescal,
|
20
|
-
application/vnd.coreos.ignition\+json, application/vnd.oma.lwm2m\+json,
|
21
|
-
application/vnd.onepager, application/vnd.quarantainenet,
|
22
|
-
application/vnd.vel\+json, image/emf, image/wmf, text/prs.prop.logic.
|
23
|
-
* image/bmp has a draft RFC which would make it official; it has been
|
24
|
-
finally been registered. As such, this version *reverses* the
|
25
|
-
use-instead relationship of image/bmp and image/x-bmp.
|
26
|
-
|
27
|
-
* This version requires mime-types 3.1 or later to manage data because of an
|
28
|
-
issue with JSON data encoding for the `xrefs` field.
|
29
|
-
|
30
|
-
## 3.2016.0221 / 2016-02-21
|
31
|
-
|
32
|
-
* Updated the known extensions list for audio/mp4.
|
33
|
-
* Updated the IANA media registry entries as of release date:
|
34
|
-
|
35
|
-
* Updated metadata for 3GPP-defined types (there are many),
|
36
|
-
application/cdni, and application/rfc+xml.
|
37
|
-
* Added application/EmergencyCallData.Comment+xml,
|
38
|
-
application/EmergencyCallData.DeviceInfo+xml,
|
39
|
-
application/EmergencyCallData.ProviderInfo+xml,
|
40
|
-
application/EmergencyCallData.ServiceInfo+xml,
|
41
|
-
application/ppsp-tracker+json, application/problem+json,
|
42
|
-
application/problem+xml, application/vnd.filmit.zfc,
|
43
|
-
application/vnd.hdt, application/vnd.mapbox-vector-tile,
|
44
|
-
application/vnd.ms-PrintDeviceCapabilities+xml,
|
45
|
-
application/vnd.ms-PrintSchemaTicket+xml,
|
46
|
-
application/vnd.ms-windows.nwprinting.oob, application/vnd.tml,
|
47
|
-
model/vnd.rosette.annotated-data-model, and video/H265.
|
48
|
-
|
49
|
-
* Updated to [Contributor Covenant 1.4][Code of Conduct].
|
50
|
-
* Shift the support code in this repository to be developed with Ruby 2.3.
|
51
|
-
This involves:
|
52
|
-
|
53
|
-
* Adding `frozen_string_literal: true` to all Ruby files.
|
54
|
-
* Applied some recommended readability and performance suggestions from
|
55
|
-
Rubocop. Ignored some style recommendations, too.
|
56
|
-
* Replaced some cases of `foo.bar rescue nil` with `foo&.bar`.
|
57
|
-
|
58
|
-
## 3.2015.1120 / 2015-11-20
|
59
|
-
|
60
|
-
* Extracted from [ruby-mime-types][rmt].
|
61
|
-
* Added a [Code of Conduct][].
|
62
|
-
* The versioning has changed to be semantic on format plus date in two parts.
|
63
|
-
|
64
|
-
* All registry formats have been updated to remove deprecated data.
|
65
|
-
* The columnar format has been updated to store three boolean flags in a
|
66
|
-
single flags file.
|
67
|
-
|
68
|
-
* Updated the conversion and management utilities to work with
|
69
|
-
ruby-mime-types 3.x.
|
70
|
-
|
71
|
-
* Updated the IANA media registry entries as of release date:
|
72
|
-
|
73
|
-
* Updated metadata for application/scim+json, audio/G711-0, text/markdown.
|
74
|
-
|
75
|
-
* Added application/cdni, application/csvm+json, application/rfc+xml,
|
76
|
-
application/vnd.3gpp.access-transfer-events+xml,
|
77
|
-
application/vnd.3gpp.srvcc-ext+xml, application/vnd.3gpp.SRVCC-info+xml,
|
78
|
-
application/vnd.ms-windows.devicepairing,
|
79
|
-
application/vnd.ms-windows.wsd.oob, application/vnd.oxli.countgraph,
|
80
|
-
application/vnd.pagerduty+json, video/VP8.
|
81
|
-
|
82
|
-
## 2.6.2 / 2015-09-13
|
83
|
-
|
84
|
-
* Updated the IANA media registry entries as of release date:
|
85
|
-
|
86
|
-
* Updated metadata for application/cals-1840, application/index.obj,
|
87
|
-
application/ocsp-response, application/vnd.dtg.local.html,
|
88
|
-
application/vnd.pwg-multiplexed, audio/G7221, audio/opus.
|
89
|
-
|
90
|
-
* Added application/pkcs12, application/scim+json, multipart/form-data.
|
91
|
-
application/vnd.3gpp-prose+xml, application/vnd.3gpp-prose-pc3ch+xml,
|
92
|
-
application/vnd.3gpp.mid-call+xml,
|
93
|
-
application/vnd.3gpp-state-and-event-info+xml,
|
94
|
-
application.3gpp.ussd+xml, application/vnd.anki,
|
95
|
-
application/vnd.biopax.rdf+xml, application/vnd.drive+json,
|
96
|
-
application/vnd.firemonkeys.cloudcell,
|
97
|
-
application/vnd.hyperdrive+json, application/vnd.openblox.game+xml,
|
98
|
-
application/vnd.openblox.game-binary, application/vnd.uri-map,
|
99
|
-
audio/G711-0, image/vnd.mozilla.apng.
|
100
|
-
|
101
|
-
## 2.6 / 2015-05-25
|
102
|
-
|
103
|
-
* Steven Michael Thomas (@stevenmichaelthomas) added `woff2` as an extension
|
104
|
-
to application/font-woff,
|
105
|
-
[ruby-mime-types#99](https://github.com/mime-types/ruby-mime-types/pull/99).
|
106
|
-
* Updated the IANA media registry entries as of release date:
|
107
|
-
* Updated metadata for application/jose, application/jose+json,
|
108
|
-
application/jwk+json, application/jwk-set+json, application/jwt to
|
109
|
-
reflect the adoption of RFC7519.
|
110
|
-
* Added application/vnd.balsamiq.bmpr.
|
111
|
-
|
112
|
-
## 2.5 / 2015-04-25
|
113
|
-
|
114
|
-
* Updated the IANA media registry entries as of release date:
|
115
|
-
* Added MIME types: application/A2L, application/AML, application/ATFX,
|
116
|
-
application/ATXML, application/CDFX+XML, application/CEA,
|
117
|
-
application/DII, application/DIT, application/jose,
|
118
|
-
application/jose+json, application/json-seq, application/jwk+json,
|
119
|
-
application/jwk-set+json, application/jwt, application/LXF,
|
120
|
-
application/MF4, application/rdap+json,
|
121
|
-
application/vnd.apache.thrift.compact, vnd.apache.thrift.json,
|
122
|
-
application/vnd.citationstyles.style+xml, application/vnd.coffeescript,
|
123
|
-
application/vnd.enphase.envoy, application/vnd.fastcopy-disk-image,
|
124
|
-
application/vnd.gerber, application/vnd.gov.sk.e-form+xml,
|
125
|
-
application/vnd.gov.sk.e-form+zip,
|
126
|
-
application/vnd.gov.sk.xmldatacontainer+xml,
|
127
|
-
application/vnd.ims.imsccv1p1, application/vnd.ims.imsccv1p2,
|
128
|
-
application/vnd.ims.imsccv1p3, application/vnd.micro+json,
|
129
|
-
application/vnd.microsoft.portable-executable,
|
130
|
-
application/vnd.msa-disk-image, application/vnd.oracle.resource+json,
|
131
|
-
application/vnd.tmd.mediaflex.api+xml, audio/opus,
|
132
|
-
image/vnd.zbrush.pcx, text/csv-schema, text/markdown (marked as
|
133
|
-
TEMPORARY).
|
134
|
-
* Updated metadata for application/coap-group+json (RFC7390),
|
135
|
-
application/epub+zip (now registered), application/merge-patch+json
|
136
|
-
(RFC7396), application/smil, application/vnd.arastra.swi,
|
137
|
-
application/vnd.geocube+xml, application/vnd.gmx,
|
138
|
-
application/xhtml+xml, text/directory.
|
139
|
-
* Andy Brody (@ab) fixed a pair of embarrassing typos in text/csv and
|
140
|
-
text/tab-separated-values,
|
141
|
-
[ruby-mime-types#89](https://github.com/mime-types/ruby-mime-types/pull/89).
|
142
|
-
* Aggelos Avgerinos (@eavgerinos) added the unregistered MIME type
|
143
|
-
image/x-ms-bmp with the extension `bmp`,
|
144
|
-
[ruby-mime-types#90](https://github.com/mime-types/ruby-mime-types/pull/90).
|
145
|
-
|
146
|
-
## 2.4.2 / 2014-10-15
|
147
|
-
|
148
|
-
* Added application/vnd.ms-outlook as an unregistered MIME type with the
|
149
|
-
extension `msg`. Provided by @keerthisiv in
|
150
|
-
[ruby-mime-types#72](https://github.com/mime-types/ruby-mime-types/pull/72).
|
151
|
-
|
152
|
-
## 2.4.1 / 2014-10-07
|
153
|
-
|
154
|
-
* Changed the sort order of many of the extensions to restore behaviour from
|
155
|
-
mime-types 1.25.1.
|
156
|
-
* Added `friendly` MIME::Type descriptions where known.
|
157
|
-
* Added `reg`, `ps1`, and `vbs` extensions to application/x-msdos-program and
|
158
|
-
application/x-msdownload.
|
159
|
-
* Updated the IANA media registry entries as of release date.
|
160
|
-
* Several MIME types had updated metadata (application/alto-*, RFC7285;
|
161
|
-
application/calendar+json, RFC7265; application/http, RFC7230;
|
162
|
-
application/xml, RFC7303; application/xml-dtd, RFC7303;
|
163
|
-
application/xml-external-parsed-entity, RFC7303; audio/AMR-WB, RFC4867;
|
164
|
-
audio/aptx, RFC7310; message/http, RFC7230; multipart/byteranges,
|
165
|
-
RFC7233; text/xml, RFC7303; text/xml-external-parsed-entity, RFC7303)
|
166
|
-
* MIME::Type application/EDI-Consent was renamed to
|
167
|
-
application/EDI-consent.
|
168
|
-
* Obsoleted application/vnd.informix-visionary in favour of
|
169
|
-
application/vnd.visionary. Obsoleted
|
170
|
-
application/vnd.nokia.n-gage.symbian.install with no replacement.
|
171
|
-
* Added MIME types: application/ATF, application/coap-group+json,
|
172
|
-
application/DCD, application/merge-patch+json, application/scaip+xml,
|
173
|
-
application/vnd.apache.thrift.binary, application/vnd.artsquare,
|
174
|
-
application/vnd.doremir.scorecloud-binary-document,
|
175
|
-
application/vnd.dzr, application/vnd.maxmind.maxmind-db,
|
176
|
-
application/vnd.ntt-local.ogw_remote-access, application/xml-patch+xml,
|
177
|
-
image/vnd.tencent.tap.
|
178
|
-
|
179
|
-
## 2.3 / 2014-05-23
|
180
|
-
|
181
|
-
* Updated the IANA media registry entries as of release date.
|
182
|
-
* Several MIME types had additional metadata added on the most recent
|
183
|
-
import.
|
184
|
-
* MIME::Type application/pidfxml was renamed to application/pidf+xml.
|
185
|
-
* Added MIME types: application/3gpdash-qoe-report+xml,
|
186
|
-
application/alto-costmap+json, application/alto-costmapfilter+json,
|
187
|
-
application/alto-directory+json, application/alto-endpointcost+json,
|
188
|
-
application/alto-endpointcostparams+json,
|
189
|
-
application/alto-endpointprop+json,
|
190
|
-
application/alto-endpointpropparams+json, application/alto-error+json,
|
191
|
-
application/alto-networkmap+json,
|
192
|
-
application/alto-networkmapfilter+json, application/calendar+json,
|
193
|
-
application/vnd.debian.binary-package, application/vnd.geo+json,
|
194
|
-
application/vnd.ims.lis.v2.result+json,
|
195
|
-
application/vnd.ims.lti.v2.toolconsumerprofile+json,
|
196
|
-
application/vnd.ims.lti.v2.toolproxy+json,
|
197
|
-
application/vnd.ims.lti.v2.toolproxy.id+json,
|
198
|
-
application/vnd.ims.lti.v2.toolsettings+json,
|
199
|
-
application/vnd.ims.lti.v2.toolsettings.simple+json,
|
200
|
-
application/vnd.mason+json, application/vnd.miele+json,
|
201
|
-
application/vnd.ms-3mfdocument, application/vnd.panoply,
|
202
|
-
application/vnd.valve.source.material, application/vnd.yaoweme,
|
203
|
-
audio/aptx, image/vnd.valve.source.texture, model/vnd.opengex,
|
204
|
-
model/vnd.valve.source.compiled-map, model/x3d+fastinfoset,
|
205
|
-
text/cache-manifest
|
206
|
-
|
207
|
-
## 2.2 / 2014-03-14
|
208
|
-
* Added <tt>.sj</tt> to `application/javascript` as provided by Brandon
|
209
|
-
Galbraith (@brandongalbraith) in
|
210
|
-
[ruby-mime-types#58](https://github.com/mime-types/ruby-mime-types/pull/58).
|
211
|
-
* Marked application/excel and application/x-excel as obsolete in favour of
|
212
|
-
application/vnd.ms-excel per
|
213
|
-
[ruby-mime-types#60](https://github.com/mime-types/ruby-mime-types/pull/60).
|
214
|
-
* Merged duplicate MIME types into the registered MIME type. The only
|
215
|
-
difference between the MIME types was capitalization; the MIME type
|
216
|
-
registry is case-preserving.
|
217
|
-
* Affected MIME types: application/vnd.3M.Post-it-Notes,
|
218
|
-
application/vnd.FloGraphIt, application/vnd.HandHeld-Entertainment+xml,
|
219
|
-
application/vnd.hp-HPGL, application/vnd.hp-PCL,
|
220
|
-
application/vnd.hp-PCLXL, application/vnd.ibm.MiniPay,
|
221
|
-
application/vnd.Kinar, application/vnd.MFER,
|
222
|
-
application/vnd.Mobius.DAF, application/vnd.Mobius.DIS,
|
223
|
-
application/vnd.Mobius.MBK, application/vnd.Mobius.MSL,
|
224
|
-
application/vnd.Mobius.MQY, application/vnd.Mobius.PLC,
|
225
|
-
application/vnd.Mobius.TXF,
|
226
|
-
application/vnd.ms-excel.addin.macroEnabled.12,
|
227
|
-
application/vnd.ms-excel.sheet.binary.macroEnabled.12,
|
228
|
-
application/vnd.ms-excel.sheet.macroEnabled.12,
|
229
|
-
application/vnd.ms-excel.template.macroEnabled.12,
|
230
|
-
application/vnd.ms-powerpoint.addin.macroEnabled.12,
|
231
|
-
application/vnd.ms-powerpoint.presentation.macroEnabled.12,
|
232
|
-
application/vnd.ms-powerpoint.slide.macroEnabled.12,
|
233
|
-
application/vnd.ms-powerpoint.slideshow.macroEnabled.12,
|
234
|
-
application/vnd.ms-powerpoint.template.macroEnabled.12,
|
235
|
-
application/vnd.ms-word.document.macroEnabled.12,
|
236
|
-
application/vnd.ms-word.template.macroEnabled.12,
|
237
|
-
application/vnd.novadigm.EDM, application/vnd.novadigm.EDX,
|
238
|
-
application/vnd.novadigm.EXT, application/vnd.Quark.QuarkXPress,
|
239
|
-
application/vnd.SimTech-MindMapper, audio/AMR-WB, video/H261,
|
240
|
-
video/H263, video/H264, video/JPEG, video/MJ2.
|
241
|
-
|
242
|
-
* Updated the IANA media registry entries as of release date.
|
243
|
-
* Registered type person names have been updated from surname only to
|
244
|
-
full name.
|
245
|
-
* Several types had updated RFC or draft RFC references.
|
246
|
-
* Added application/bacnet-xdd+zip, application/cms,
|
247
|
-
application/load-control+xml, application/PDX, application/ttml+xml,
|
248
|
-
application/vnd.collection.doc+json,
|
249
|
-
application/vnd.iptc.g2.catalogitem+xml, application/vnd.pcos,
|
250
|
-
text/parameters, text/vnd.a, video/iso.segment
|
251
|
-
|
252
|
-
## 2.1 / 2014-01-25
|
253
|
-
|
254
|
-
* The IANA media type registry format changed, resulting in updates to most
|
255
|
-
of the 1,427 registered MIME types.
|
256
|
-
* Many registered MIME types have had some metadata updates due to the
|
257
|
-
change in the IANA registry format.
|
258
|
-
* MIME types having a publicly available registry application now
|
259
|
-
include a link to that file in references.
|
260
|
-
* Added `xrefs` data as discovered (see the API changes noted above).
|
261
|
-
* The Apache mime types configuration has been added to track additional
|
262
|
-
common but unregistered MIME types and known extensions for those MIME
|
263
|
-
types. This has affected many of the available MIME types.
|
264
|
-
* Added newly registered MIME types:
|
265
|
-
* application/emotionml+xml, application/ODX, application/prs.hpub+zip,
|
266
|
-
application/vcard+json, application/vnd.bekitzur-stech+json,
|
267
|
-
application/vnd.etsi.timestamp-token,
|
268
|
-
application/vnd.oma.cab-feature-handler+xml,
|
269
|
-
application/vnd.openeye.oeb, application/vnd.tcpdump.pcap,
|
270
|
-
audio/amr-wb, model/x3d+xml, model/x3d-vrml
|
271
|
-
* Added 180 unregistered MIME types from the Apache list:
|
272
|
-
* application/applixware, application/cu-seeme, application/docbook+xml,
|
273
|
-
application/gml+xml, application/gpx+xml, application/gxf,
|
274
|
-
application/java-archive, application/java-serialized-object,
|
275
|
-
application/java-vm, application/jsonml+json, application/metalink+xml,
|
276
|
-
application/omdoc+xml, application/onenote, application/pics-rules,
|
277
|
-
application/rsd+xml, application/ssdl+xml,
|
278
|
-
application/vnd.3m.post-it-notes, application/vnd.amazon.ebook,
|
279
|
-
application/vnd.anser-web-funds-transfer-initiation,
|
280
|
-
application/vnd.curl.car, application/vnd.curl.pcurl,
|
281
|
-
application/vnd.dolby.mlp, application/vnd.ds-keypoint,
|
282
|
-
application/vnd.flographit, application/vnd.handheld-entertainment+xml,
|
283
|
-
application/vnd.hp-hpgl, application/vnd.hp-pcl,
|
284
|
-
application/vnd.hp-pclxl, application/vnd.ibm.minipay,
|
285
|
-
application/vnd.kinar, application/vnd.mfer,
|
286
|
-
application/vnd.mobius.daf, application/vnd.mobius.dis,
|
287
|
-
application/vnd.mobius.mbk, application/vnd.mobius.mqy,
|
288
|
-
application/vnd.mobius.msl, application/vnd.mobius.plc,
|
289
|
-
application/vnd.mobius.txf,
|
290
|
-
application/vnd.ms-excel.addin.macroenabled.12,
|
291
|
-
application/vnd.ms-excel.sheet.binary.macroenabled.12,
|
292
|
-
application/vnd.ms-excel.sheet.macroenabled.12,
|
293
|
-
application/vnd.ms-excel.template.macroenabled.12,
|
294
|
-
application/vnd.ms-pki.seccat, application/vnd.ms-pki.stl,
|
295
|
-
application/vnd.ms-powerpoint.addin.macroenabled.12,
|
296
|
-
application/vnd.ms-powerpoint.presentation.macroenabled.12,
|
297
|
-
application/vnd.ms-powerpoint.slide.macroenabled.12,
|
298
|
-
application/vnd.ms-powerpoint.slideshow.macroenabled.12,
|
299
|
-
application/vnd.ms-powerpoint.template.macroenabled.12,
|
300
|
-
application/vnd.ms-word.document.macroenabled.12,
|
301
|
-
application/vnd.ms-word.template.macroenabled.12,
|
302
|
-
application/vnd.novadigm.edm, application/vnd.novadigm.edx,
|
303
|
-
application/vnd.novadigm.ext, application/vnd.quark.quarkxpress,
|
304
|
-
application/vnd.rim.cod, application/vnd.rn-realmedia-vbr,
|
305
|
-
application/vnd.simtech-mindmapper, application/vnd.symbian.install,
|
306
|
-
application/winhlp, application/x-abiword,
|
307
|
-
application/x-ace-compressed, application/x-authorware-bin,
|
308
|
-
application/x-authorware-map, application/x-authorware-seg,
|
309
|
-
application/x-bittorrent, application/x-blorb, application/x-bzip,
|
310
|
-
application/x-cbr, application/x-cfs-compressed, application/x-chat,
|
311
|
-
application/x-conference, application/x-dgc-compressed,
|
312
|
-
application/x-doom, application/x-dtbncx+xml, application/x-dtbook+xml,
|
313
|
-
application/x-dtbresource+xml, application/x-envoy, application/x-eva,
|
314
|
-
application/x-font-bdf, application/x-font-ghostscript,
|
315
|
-
application/x-font-linux-psf, application/x-font-otf,
|
316
|
-
application/x-font-pcf, application/x-font-snf, application/x-font-ttf,
|
317
|
-
application/x-font-type1, application/x-freearc,
|
318
|
-
application/x-gca-compressed, application/x-glulx,
|
319
|
-
application/x-gnumeric, application/x-gramps-xml,
|
320
|
-
application/x-install-instructions, application/x-iso9660-image,
|
321
|
-
application/x-lzh-compressed, application/x-mie,
|
322
|
-
application/x-ms-application, application/x-ms-shortcut,
|
323
|
-
application/x-ms-xbap, application/x-msbinder,
|
324
|
-
application/x-mscardfile, application/x-msclip,
|
325
|
-
application/x-msmediaview, application/x-msmetafile,
|
326
|
-
application/x-msmoney, application/x-mspublisher,
|
327
|
-
application/x-msschedule, application/x-msterminal,
|
328
|
-
application/x-mswrite, application/x-nzb, application/x-pkcs12,
|
329
|
-
application/x-pkcs7-certificates, application/x-pkcs7-certreqresp,
|
330
|
-
application/x-research-info-systems, application/x-silverlight-app,
|
331
|
-
application/x-sql, application/x-stuffitx, application/x-subrip,
|
332
|
-
application/x-t3vm-image, application/x-tads, application/x-tex-tfm,
|
333
|
-
application/x-tgif, application/x-xfig, application/x-xliff+xml,
|
334
|
-
application/x-xz, application/x-zmachine, application/xaml+xml,
|
335
|
-
application/xproc+xml, application/xspf+xml, audio/adpcm, audio/amr-wb,
|
336
|
-
audio/AMR-WB, audio/midi, audio/s3m, audio/silk, audio/x-caf,
|
337
|
-
audio/x-flac, audio/x-matroska, audio/x-mpegurl, audio/xm,
|
338
|
-
chemical/x-cdx, chemical/x-cif, chemical/x-cmdf, chemical/x-cml,
|
339
|
-
chemical/x-csml, image/sgi, image/vnd.ms-photo, image/x-3ds,
|
340
|
-
image/x-cmx, image/x-freehand, image/x-icon, image/x-mrsid-image,
|
341
|
-
image/x-pcx, image/x-tga, model/x3d+binary, model/x3d+vrml, text/plain,
|
342
|
-
text/vnd.curl.dcurl, text/vnd.curl.mcurl, text/vnd.curl.scurl,
|
343
|
-
text/x-asm, text/x-c, text/x-fortran, text/x-java-source, text/x-nfo,
|
344
|
-
text/x-opml, text/x-pascal, text/x-sfv, text/x-uuencode, video/h261,
|
345
|
-
video/h263, video/h264, video/jpeg, video/jpm, video/mj2, video/x-f4v,
|
346
|
-
video/x-m4v, video/x-mng, video/x-ms-vob, video/x-smv
|
347
|
-
* Merged the non-standard VMS platform text/plain with the standard
|
348
|
-
text/plain.
|
349
|
-
|
350
|
-
[rmt]: https://github.com/mime-types/ruby-mime-types
|
351
|
-
[Code of Conduct]: Code-of-Conduct.md
|