fog-aws 3.21.0 → 3.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: a70dcf9f73be47287b3b3b0180e9b8b43fd1743e67a6b56d8c44cc17e5e7e1f2
4
- data.tar.gz: 0aa01c7969f747964e13d3404c4d35b91e7b12c77a0071c70dd21b144508014c
3
+ metadata.gz: 66b579a49596f0f9f8e7c7b5b5b84384dd3a657d9ec814c358e9c2818e25dd29
4
+ data.tar.gz: 94fd6086d0c669c7472a41c2131fe83fe4506c034d3eff9fdbb670cef4c89035
5
5
  SHA512:
6
- metadata.gz: 513c9d361abc77fba5540afccc11026788e6d1ee6df6f9134d8360d431db41dd50a395c476bdfba5c32d1ca2b35b4c81151aa1a82b0e8405976b49b7ac023582
7
- data.tar.gz: 5cb4615882c96c20aeda02f9e68bbd10f2e1f9fc5fdfb9e3a916573f74cc45ca1df57fd9dc7c5b2231b2d258a4221ae5a75301341eb5013eb04f53936e6184fc
6
+ metadata.gz: ad3f5bfd182766e145b3d87c36d64d6dcb562a0303dcd09f12543f17a24414c4d99358c9e60a0adc50a42f0b727fd3ec98fb4887c644f626c20fcd8821dcb31a
7
+ data.tar.gz: 7974df1a5305997236051f32262f10039e59b7c08109bdd9d5461e5ccfe5445c1a42ddd9f27930981ae187a4cd984ad27127e96bb31e155b3c32deb71db8f598
data/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  # Changelog
2
2
 
3
+ ## [v3.22.0](https://github.com/fog/fog-aws/tree/v3.22.0) (2024-03-18)
4
+
5
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.21.1...HEAD)
6
+
7
+ **Closed issues:**
8
+
9
+ - S3 copy\_object won't be retried. [\#704](https://github.com/fog/fog-aws/issues/704)
10
+
11
+ **Merged pull requests:**
12
+
13
+ - mark copy\_object as idempotent [\#706](https://github.com/fog/fog-aws/pull/706) ([geemus](https://github.com/geemus))
14
+
15
+ ## [v3.21.1](https://github.com/fog/fog-aws/tree/v3.21.1) (2024-03-12)
16
+
17
+ [Full Changelog](https://github.com/fog/fog-aws/compare/v3.21.0...HEAD)
18
+
19
+ **Closed issues:**
20
+
21
+ - Missing AWS Region - ca-west-1 \(Calgary\) [\#701](https://github.com/fog/fog-aws/issues/701)
22
+
23
+ **Merged pull requests:**
24
+
25
+ - Add ca-west-1 region [\#703](https://github.com/fog/fog-aws/pull/703) ([jgrammen-agilitypr](https://github.com/jgrammen-agilitypr))
26
+ - Bump actions/dependency-review-action from 3 to 4 [\#699](https://github.com/fog/fog-aws/pull/699) ([dependabot[bot]](https://github.com/apps/dependabot))
27
+ - Add Ruby 3.3 to CI matrix [\#698](https://github.com/fog/fog-aws/pull/698) ([m-nakamura145](https://github.com/m-nakamura145))
28
+ - Bump github/codeql-action from 2 to 3 [\#697](https://github.com/fog/fog-aws/pull/697) ([dependabot[bot]](https://github.com/apps/dependabot))
29
+ - Bump actions/stale from 8 to 9 [\#696](https://github.com/fog/fog-aws/pull/696) ([dependabot[bot]](https://github.com/apps/dependabot))
30
+ - Fix broken format in CHANGELOG [\#692](https://github.com/fog/fog-aws/pull/692) ([y-yagi](https://github.com/y-yagi))
31
+
3
32
  ## [v3.21.0](https://github.com/fog/fog-aws/tree/v3.21.0) (2023-09-29)
4
33
 
5
34
  [Full Changelog](https://github.com/fog/fog-aws/compare/v3.20.0...v3.21.0)
@@ -10,7 +39,7 @@
10
39
 
11
40
  **Merged pull requests:**
12
41
 
13
- - Fog::AWS::Storage don't retry client errors [\#691]((https://github.com/fog/fog-aws/pull/691) ([rahim](https://github.com/rahim))
42
+ - Fog::AWS::Storage don't retry client errors [\#691](https://github.com/fog/fog-aws/pull/691) ([rahim](https://github.com/rahim))
14
43
 
15
44
  ## [v3.20.0](https://github.com/fog/fog-aws/tree/v3.20.0) (2023-09-27)
16
45
 
data/README.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Fog::Aws
2
2
 
3
3
  ![Gem Version](https://badge.fury.io/rb/fog-aws.svg)
4
- [![Build Status](https://github.com/fog/fog-aws/actions/workflows/ruby.yml/badge.svg)](https://github.com/fog/fog-aws/actions/workflows/ruby.yml)
4
+ [![Build Status](https://github.com/fog/fog-aws/actions/workflows/ci.yml/badge.svg)](https://github.com/fog/fog-aws/actions/workflows/ci.yml)
5
5
  [![Test Coverage](https://codeclimate.com/github/fog/fog-aws/badges/coverage.svg)](https://codeclimate.com/github/fog/fog-aws)
6
6
  [![Code Climate](https://codeclimate.com/github/fog/fog-aws.svg)](https://codeclimate.com/github/fog/fog-aws)
7
7
 
@@ -34,6 +34,7 @@ module Fog
34
34
  :headers => headers,
35
35
  :bucket_name => target_bucket_name,
36
36
  :object_name => target_object_name,
37
+ :idempotent => true,
37
38
  :method => 'PUT',
38
39
  :parser => Fog::Parsers::AWS::Storage::CopyObject.new,
39
40
  })
@@ -1,5 +1,5 @@
1
1
  module Fog
2
2
  module AWS
3
- VERSION = "3.21.0"
3
+ VERSION = "3.22.0"
4
4
  end
5
5
  end
data/lib/fog/aws.rb CHANGED
@@ -225,7 +225,7 @@ module Fog
225
225
  'ap-northeast-1', 'ap-northeast-2', 'ap-northeast-3',
226
226
  'ap-south-1',
227
227
  'ap-southeast-1', 'ap-southeast-2', 'ap-southeast-3', 'ap-southeast-4',
228
- 'ca-central-1',
228
+ 'ca-central-1', 'ca-west-1',
229
229
  'cn-north-1',
230
230
  'cn-northwest-1',
231
231
  'eu-central-1',
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fog-aws
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.21.0
4
+ version: 3.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Josh Lane
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-09-29 00:00:00.000000000 Z
12
+ date: 2024-03-18 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: bundler
@@ -1458,7 +1458,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1458
1458
  - !ruby/object:Gem::Version
1459
1459
  version: '0'
1460
1460
  requirements: []
1461
- rubygems_version: 3.3.26
1461
+ rubygems_version: 3.4.22
1462
1462
  signing_key:
1463
1463
  specification_version: 4
1464
1464
  summary: Module for the 'fog' gem to support Amazon Web Services.