alchemy-dragonfly-s3 5.2.0 → 6.0.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: af1ac6f6e94915b4f4109740dc57784db1d23ea7e143e3f0baeed2d3cbc98444
4
- data.tar.gz: 11a260d68a5557e38e58ee134eb757c7ceb7e394acf6236de15c14815fb8d3a6
3
+ metadata.gz: 8731b036311b3a669e0644fe5fd9e0301bc981bdc431c102979961aa4db3671e
4
+ data.tar.gz: dbddcab7948012fe5d9a12a140fbc203dadac20157b039d74d82d86abb3a7390
5
5
  SHA512:
6
- metadata.gz: 991203f9ad893a0f9d67357b48cc5dbccc612e0aa2d0d1e2332bead56972b54d5e2d4058463a5eb895e5a8f6be2e02afea376e4feeb327dab9e01e268ae48a05
7
- data.tar.gz: 41ebab2ea26481a01e1866da5ab9de1538da882c42472df0477c2251bc61338bca5b4803116b5b2de4ee357b4c47f90c9298f4771b4bc1997b246d4678f2e083
6
+ metadata.gz: b0ca6b6a588e561c9c154853d4393e67aeaa7950810347f84d04cf3b61a6e7621c6d228c977d6bd9c3df02c07014e632fabf579392d82687828136b70cef3c75
7
+ data.tar.gz: cd8f538c29407ba748d89f6a6b71960b0e9f9812b4924a19151909b42ddad41a3ab14edb43f04b09d546bba3124ce2b4f9c152112f599bcadf04320ce0f52eaa
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ ## v6.0.0
2
+
3
+ - Allow Alchemy 6.1
4
+ - Drop support for Alchemy 5.x
5
+
1
6
  ## v5.2.0
2
7
 
3
8
  - Fix loading of Alchemy factories
data/README.md CHANGED
@@ -6,8 +6,9 @@ Provides classes for storing Alchemy pictures and file attachments on Amazon AWS
6
6
 
7
7
  ## Alchemy Version
8
8
 
9
- This branch works with Alchemy 5.1 and above.
9
+ This branch works with Alchemy 6.0 and above.
10
10
 
11
+ - For a Alchemy 5.2/5.3 compatible version use the `5.2-stable` branch.
11
12
  - For a Alchemy 5.0 compatible version use the `alchemy-5` branch.
12
13
  - For a Alchemy 4 compatible version use the `alchemy-4` branch.
13
14
  - For a Alchemy 3 compatible version use the `alchemy-3` branch.
@@ -24,7 +24,7 @@ Gem::Specification.new do |s|
24
24
  "README.md",
25
25
  ]
26
26
 
27
- s.add_dependency "alchemy_cms", [">= 5.1.0", "< 6.1"]
27
+ s.add_dependency "alchemy_cms", [">= 6.0.0", "< 7"]
28
28
  s.add_dependency "dragonfly-s3_data_store", "~> 1.3"
29
29
 
30
30
  s.add_development_dependency "rspec-rails", "~> 4.0"
@@ -7,20 +7,23 @@ module Alchemy
7
7
  def self.call(variant, signature, uid)
8
8
  # create the thumb before uploading
9
9
  # to prevent db race conditions
10
- thumb = variant.picture.thumbs.create!(
11
- picture: variant.picture,
12
- signature: signature,
13
- uid: uid,
14
- )
10
+ thumb = nil
11
+ if variant.picture.valid?
12
+ thumb = Alchemy::PictureThumb.create!(
13
+ picture: variant.picture,
14
+ signature: signature,
15
+ uid: uid,
16
+ )
17
+ end
15
18
  begin
16
19
  # fetch and process the image
17
20
  image = variant.image
18
21
  # upload the processed image
19
22
  image.store(path: uid)
20
23
  rescue RuntimeError, Excon::Error => e
21
- Rails.logger.warn(e)
24
+ ErrorTracking.notification_handler.call(e)
22
25
  # destroy the thumb if processing or upload fails
23
- thumb.destroy
26
+ thumb&.destroy
24
27
  end
25
28
  end
26
29
  end
@@ -3,7 +3,7 @@
3
3
  module Alchemy
4
4
  module Dragonfly
5
5
  module S3
6
- VERSION = "5.2.0"
6
+ VERSION = "6.0.0"
7
7
  end
8
8
  end
9
9
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alchemy-dragonfly-s3
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.2.0
4
+ version: 6.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Thomas von Deyen
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-18 00:00:00.000000000 Z
11
+ date: 2023-01-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: alchemy_cms
@@ -16,20 +16,20 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 5.1.0
19
+ version: 6.0.0
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
- version: '6.1'
22
+ version: '7'
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 5.1.0
29
+ version: 6.0.0
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
- version: '6.1'
32
+ version: '7'
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: dragonfly-s3_data_store
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -122,7 +122,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 3.1.6
125
+ rubygems_version: 3.3.26
126
126
  signing_key:
127
127
  specification_version: 4
128
128
  summary: AlchemyCMS Dragonfly S3.