zip_tricks 4.7.0 → 4.7.1
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 +5 -1
- data/lib/zip_tricks/version.rb +1 -1
- data/zip_tricks.gemspec +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f6471bd0f0e024f1eac3dc9159b622805c625a6f
|
|
4
|
+
data.tar.gz: 6d020f6280050a8dc8ffd11156136b931b7d878d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 62303a91e385b96db2179704628e4a464abdf50c5c0347cdfa8e3d165d1a912977056d365d082b868d7efe40c40b1f7349c4dd7492a17539912d625b353f83d8
|
|
7
|
+
data.tar.gz: b8369125b937668393b8ab5285535422ba2f6dca1a33947ed271018b1b76444e87bbb4746f60d5574eab35a91d685e41729ee0cf4b5f33c530f330e303d7b115
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## 4.7.1
|
|
2
|
+
|
|
3
|
+
* Bump rubyzip to 1.2.2 to mitigate CVE-2018-1000544
|
|
4
|
+
|
|
1
5
|
## 4.7.0
|
|
2
6
|
|
|
3
7
|
* Replace `RackBody` with `OutputEnumerator` since we want to provide a generic way of deferring ZIP output, also when using enumerators.
|
|
@@ -8,7 +12,7 @@
|
|
|
8
12
|
|
|
9
13
|
* Add `mtime:` option to all Streamer methods for adding files and directories, to permit setting modification time per-entry
|
|
10
14
|
* Optimize EOCD signature lookup when reading archives
|
|
11
|
-
* Reformat using the [we_transfer_style](https://rubygems.org/gems/we_transfer_style) Rubocop rules and conventions
|
|
15
|
+
* Reformat using the [we_transfer_style](https://rubygems.org/gems/we_transfer_style) Rubocop rules and conventions
|
|
12
16
|
* Add code of conduct and contribution guidelines
|
|
13
17
|
* Reduce the size of the CRC32 buffer to 64KB (backed by a benchmark), extract buffering into a wrapper proxy
|
|
14
18
|
|
data/lib/zip_tricks/version.rb
CHANGED
data/zip_tricks.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |spec|
|
|
|
30
30
|
spec.require_paths = ['lib']
|
|
31
31
|
|
|
32
32
|
spec.add_development_dependency 'bundler', '~> 1'
|
|
33
|
-
spec.add_development_dependency 'rubyzip', '
|
|
33
|
+
spec.add_development_dependency 'rubyzip', '>= 1.2.2'
|
|
34
34
|
spec.add_development_dependency 'terminal-table'
|
|
35
35
|
spec.add_development_dependency 'range_utils'
|
|
36
36
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: zip_tricks
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.7.
|
|
4
|
+
version: 4.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Julik Tarkhanov
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-
|
|
11
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -28,16 +28,16 @@ dependencies:
|
|
|
28
28
|
name: rubyzip
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
30
30
|
requirements:
|
|
31
|
-
- - "
|
|
31
|
+
- - ">="
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version:
|
|
33
|
+
version: 1.2.2
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
|
-
- - "
|
|
38
|
+
- - ">="
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version:
|
|
40
|
+
version: 1.2.2
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: terminal-table
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -259,7 +259,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
259
259
|
version: '0'
|
|
260
260
|
requirements: []
|
|
261
261
|
rubyforge_project:
|
|
262
|
-
rubygems_version: 2.
|
|
262
|
+
rubygems_version: 2.6.11
|
|
263
263
|
signing_key:
|
|
264
264
|
specification_version: 4
|
|
265
265
|
summary: Stream out ZIP files from Ruby
|