vagrant-s3auth 1.3.1 → 1.3.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3adbdc8f59350a96f4eece9858e1b13f134ed75
4
- data.tar.gz: 9e14f73dba07191118cb65f87b2596fab2684759
3
+ metadata.gz: 7271e8b149d7302a4b5620175ab126e30cc01e8f
4
+ data.tar.gz: bb891ddb5fbbc59f65313fc111c5765f900318c2
5
5
  SHA512:
6
- metadata.gz: a20e14ab4c17b1b344ba0c876ef31824453dc62a1c17dac14a970890ab508ea059a9c39fe6d53624519ecb43c611067ff0fac1e209998190ecdb2c598fb923c6
7
- data.tar.gz: fb4896ec968ed38d915b82f625d69e081612d69931777023e7bc1af3af4a784225300e9c79a1845bd49334f0db0643240139711e52199278b67636f2de5749ca
6
+ metadata.gz: f6c1a94468159840cac33999f308c3516dc16c5b91eeb9d80265a8b583253f718ecea1d11fe3e30d5cb448af551ce3f2ddfa82cc7d57ac42854f87fc7425ab41
7
+ data.tar.gz: be2bcd3e7bb8828e8d8b9ecad6c1f17633d5439c1c2aef9912898dd2700a55f97c44c7facb45ffce141dd4a0391256f6ececb42de14e1a75cce547ad7c8a32de
@@ -19,8 +19,12 @@ before_install:
19
19
 
20
20
  # Older versions of Vagrant can't handle the current version of Bundler, which
21
21
  # ships with Travis.
22
- - rvm @default,@global do gem uninstall bundler --all --executables
23
- - gem install bundler -v '~> 1.5.2'
22
+ - |
23
+ if [[ "$BUNDLER_VERSION" ]]
24
+ then
25
+ rvm @default,@global do gem uninstall bundler --all --executables
26
+ gem install bundler -v "$BUNDLER_VERSION"
27
+ fi
24
28
  - bundle --version
25
29
 
26
30
  before_script:
@@ -36,12 +40,12 @@ env:
36
40
  - VAGRANT_S3AUTH_REGION_NONSTANDARD=eu-west-1
37
41
  - VAGRANT_S3AUTH_BOX_BASE=minimal
38
42
  matrix:
39
- - VAGRANT_VERSION=master
40
- - VAGRANT_VERSION=v1.9.1
41
- - VAGRANT_VERSION=v1.8.7
42
- - VAGRANT_VERSION=v1.7.4
43
- - VAGRANT_VERSION=v1.6.5
44
- - VAGRANT_VERSION=v1.5.1
43
+ - VAGRANT_VERSION=master BUNDLER_VERSION=
44
+ - VAGRANT_VERSION=v1.9.1 BUNDLER_VERSION=
45
+ - VAGRANT_VERSION=v1.8.7 BUNDLER_VERSION=1.12.5
46
+ - VAGRANT_VERSION=v1.7.4 BUNDLER_VERSION=1.10.5
47
+ - VAGRANT_VERSION=v1.6.5 BUNDLER_VERSION=1.6.9
48
+ - VAGRANT_VERSION=v1.5.1 BUNDLER_VERSION=1.5.3
45
49
 
46
50
  deploy:
47
51
  provider: rubygems
@@ -1,3 +1,11 @@
1
+ ## 1.3.2
2
+
3
+ **6 January 2016**
4
+
5
+ Enhancements:
6
+
7
+ * upgrade to AWS SDK v2.6.44
8
+
1
9
  ## 1.3.1
2
10
 
3
11
  **30 December 2016**
@@ -30,10 +30,7 @@ module VagrantPlugins
30
30
  end
31
31
 
32
32
  def self.s3_client(region = DEFAULT_REGION)
33
- # Workaround for aws/aws-sdk-ruby#1374. `get_bucket_location`
34
- # causes an incorrect region warning to be printed unless
35
- # path-style requests are forced.
36
- ::Aws::S3::Client.new(region: region, force_path_style: true)
33
+ ::Aws::S3::Client.new(region: region)
37
34
  end
38
35
 
39
36
  def self.s3_resource(region = DEFAULT_REGION)
@@ -1,5 +1,5 @@
1
1
  module VagrantPlugins
2
2
  module S3Auth
3
- VERSION = '1.3.1'.freeze
3
+ VERSION = '1.3.2'.freeze
4
4
  end
5
5
  end
@@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
15
15
  spec.test_files = spec.files.grep(/spec/)
16
16
  spec.require_paths = ['lib']
17
17
 
18
- spec.add_dependency 'aws-sdk', '~> 2.2.10'
18
+ spec.add_dependency 'aws-sdk', '~> 2.6.44'
19
19
 
20
20
  spec.add_development_dependency 'bundler', '~> 1.5'
21
21
  spec.add_development_dependency 'http', '~> 1.0.2'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vagrant-s3auth
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.1
4
+ version: 1.3.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nikhil Benesch
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-12-31 00:00:00.000000000 Z
11
+ date: 2017-01-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 2.2.10
19
+ version: 2.6.44
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 2.2.10
26
+ version: 2.6.44
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement