dry-transaction 0.13.2 → 0.14.0

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
  SHA256:
3
- metadata.gz: 625617cfd08882549ed80e2c6f9fca647b433b3c9b01f141722dd8e5e350ca93
4
- data.tar.gz: 4c4eab3625d39e43ad4d8e867e07d161af1397220cae2ac95022e660f5120149
3
+ metadata.gz: 010cc004830363a29fd3701799a706d8734e37196acdf9e515a87519c7f1aef8
4
+ data.tar.gz: fd9b26e42dd9690c8fc56d372555378f8013a86d8f0b56426b00bccd9220aa10
5
5
  SHA512:
6
- metadata.gz: 400e487b067363922f1c03a218b6d3b078d3a43cecbf47d0d3f8419373c0007926aae5d71848927f8dd17fdb9db9abc398922d968aebee4af16f7a7ccd80307a
7
- data.tar.gz: 1b577f303186b90200f292eca519f4de03b08ab67d5c15ead11f435d9c5a7319be49075f5b253907b05a0595b1cf40d8e4d17036638b323c35100e9774481688
6
+ metadata.gz: 0ccdb31bf78be6abb87c19eca848acbe54120a4308a84c7c498724c7428e2aa91e6f54480ca89fe6674cc08fddc56eaff15015b32afe09b9ffeb9f499d46850d
7
+ data.tar.gz: fe27e8c8fe12217585d333e8263b7c8c3be2d1f74191c68a2ec6c9e9583ca3fb0324b34a91a78e661540b3276c1403c1f9826a2254d4f6ebcc927e008c1f7c2f
data/CHANGELOG.md CHANGED
@@ -1,5 +1,34 @@
1
1
  <!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
2
2
 
3
+ ## 0.14.0 2022-10-21
4
+
5
+
6
+ ### Changed
7
+
8
+ - Updated to work with latest dry-events and dry-monads using Zeitwerk for auto-loading (see #142) (@kzaitsev)
9
+
10
+ [Compare v0.13.3...v0.14.0](https://github.com/dry-rb/dry-transaction/compare/v0.13.3...v0.14.0)
11
+
12
+ ## 0.13.3 2021-06-07
13
+
14
+
15
+ ### Fixed
16
+
17
+ - Fix deprecation warning on Ruby 3.0 when there are empty hash-like args (via #137) (@bestwebua)
18
+
19
+
20
+ [Compare v0.13.2...v0.13.3](https://github.com/dry-rb/dry-transaction/compare/v0.13.2...v0.13.3)
21
+
22
+ ## 0.13.2 2021-02-08
23
+
24
+
25
+ ### Fixed
26
+
27
+ - Re-allow Hash-like parameters to be passed to steps, e.g. `HashWithIndifferentAccess` and other `Hash` subclasses (this was broken with the Ruby 2.7/3.0 fixes in 0.13.1) (@trammel in #136)
28
+
29
+
30
+ [Compare v0.13.1...v0.13.2](https://github.com/dry-rb/dry-transaction/compare/v0.13.1...v0.13.2)
31
+
3
32
  ## 0.13.1 2021-01-31
4
33
 
5
34
 
data/README.md CHANGED
@@ -1,3 +1,4 @@
1
+ <!--- this file is synced from dry-rb/template-gem project -->
1
2
  [gem]: https://rubygems.org/gems/dry-transaction
2
3
  [actions]: https://github.com/dry-rb/dry-transaction/actions
3
4
  [codacy]: https://www.codacy.com/gh/dry-rb/dry-transaction
@@ -10,19 +11,19 @@
10
11
  [![CI Status](https://github.com/dry-rb/dry-transaction/workflows/ci/badge.svg)][actions]
11
12
  [![Codacy Badge](https://api.codacy.com/project/badge/Grade/f2c8f3f2e96a477faee00109cfb2090d)][codacy]
12
13
  [![Codacy Badge](https://api.codacy.com/project/badge/Coverage/f2c8f3f2e96a477faee00109cfb2090d)][codacy]
13
- [![Inline docs](http://inch-ci.org/github/dry-rb/dry-transaction.svg?branch=master)][inchpages]
14
+ [![Inline docs](http://inch-ci.org/github/dry-rb/dry-transaction.svg?branch=main)][inchpages]
14
15
 
15
16
  ## Links
16
17
 
17
- * [User documentation](http://dry-rb.org/gems/dry-transaction)
18
+ * [User documentation](https://dry-rb.org/gems/dry-transaction)
18
19
  * [API documentation](http://rubydoc.info/gems/dry-transaction)
19
20
 
20
21
  ## Supported Ruby versions
21
22
 
22
23
  This library officially supports the following Ruby versions:
23
24
 
24
- * MRI >= `2.5`
25
- * jruby >= `9.2`
25
+ * MRI `>= 2.7.0`
26
+ * jruby `>= 9.3` (postponed until 2.7 is supported)
26
27
 
27
28
  ## License
28
29
 
@@ -1,35 +1,37 @@
1
1
  # frozen_string_literal: true
2
- # this file is managed by dry-rb/devtools project
3
2
 
4
- lib = File.expand_path('lib', __dir__)
3
+ # this file is synced from dry-rb/template-gem project
4
+
5
+ lib = File.expand_path("lib", __dir__)
5
6
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
- require 'dry/transaction/version'
7
+ require "dry/transaction/version"
7
8
 
8
9
  Gem::Specification.new do |spec|
9
- spec.name = 'dry-transaction'
10
+ spec.name = "dry-transaction"
10
11
  spec.authors = ["Tim Riley"]
11
12
  spec.email = ["tim@icelab.com.au"]
12
- spec.license = 'MIT'
13
+ spec.license = "MIT"
13
14
  spec.version = Dry::Transaction::VERSION.dup
14
15
 
15
16
  spec.summary = "Business Transaction Flow DSL"
16
17
  spec.description = spec.summary
17
- spec.homepage = 'https://dry-rb.org/gems/dry-transaction'
18
+ spec.homepage = "https://dry-rb.org/gems/dry-transaction"
18
19
  spec.files = Dir["CHANGELOG.md", "LICENSE", "README.md", "dry-transaction.gemspec", "lib/**/*"]
19
- spec.bindir = 'bin'
20
+ spec.bindir = "bin"
20
21
  spec.executables = []
21
- spec.require_paths = ['lib']
22
+ spec.require_paths = ["lib"]
22
23
 
23
- spec.metadata['allowed_push_host'] = 'https://rubygems.org'
24
- spec.metadata['changelog_uri'] = 'https://github.com/dry-rb/dry-transaction/blob/master/CHANGELOG.md'
25
- spec.metadata['source_code_uri'] = 'https://github.com/dry-rb/dry-transaction'
26
- spec.metadata['bug_tracker_uri'] = 'https://github.com/dry-rb/dry-transaction/issues'
24
+ spec.metadata["allowed_push_host"] = "https://rubygems.org"
25
+ spec.metadata["changelog_uri"] = "https://github.com/dry-rb/dry-transaction/blob/master/CHANGELOG.md"
26
+ spec.metadata["source_code_uri"] = "https://github.com/dry-rb/dry-transaction"
27
+ spec.metadata["bug_tracker_uri"] = "https://github.com/dry-rb/dry-transaction/issues"
27
28
 
28
- spec.required_ruby_version = ">= 2.5.0"
29
+ spec.required_ruby_version = ">= 2.7.0"
29
30
 
30
31
  # to update dependencies edit project.yml
31
32
  spec.add_runtime_dependency "dry-container", ">= 0.2.8"
32
- spec.add_runtime_dependency "dry-events", ">= 0.1.0"
33
+ spec.add_runtime_dependency "dry-events", ">= 0.4.0"
33
34
  spec.add_runtime_dependency "dry-matcher", ">= 0.7.0"
34
- spec.add_runtime_dependency "dry-monads", ">= 0.4.0"
35
+ spec.add_runtime_dependency "dry-monads", ">= 0.5.0"
36
+
35
37
  end
@@ -14,8 +14,7 @@ module Dry
14
14
  end
15
15
  end
16
16
 
17
- attr_reader :operation
18
- attr_reader :arity
17
+ attr_reader :operation, :arity
19
18
 
20
19
  def initialize(operation)
21
20
  @operation = case operation
@@ -49,7 +48,10 @@ module Dry
49
48
  # In this case, it's better to leave the object as it's existing type, rather than implicitly
50
49
  # convert it in to a hash with the double-splat (**) operator.
51
50
  def ruby_27_last_arg_hash?(args)
52
- args.last.instance_of?(Hash) && Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
51
+ kwargs = args.last
52
+ kwargs.instance_of?(Hash) &&
53
+ !kwargs.empty? &&
54
+ Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("2.7.0")
53
55
  end
54
56
  end
55
57
  end
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'dry/monads/result'
4
- require 'dry/events/publisher'
3
+ require 'dry/monads'
4
+ require 'dry/events'
5
5
  require 'dry/transaction/step_failure'
6
6
  require 'dry/transaction/step_adapter'
7
7
 
@@ -3,6 +3,6 @@
3
3
  module Dry
4
4
  # Business transaction DSL.
5
5
  module Transaction
6
- VERSION = '0.13.2'.freeze
6
+ VERSION = '0.14.0'.freeze
7
7
  end
8
8
  end
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "dry/monads/result"
3
+ require "dry/monads"
4
4
  require "dry/transaction/version"
5
5
  require "dry/transaction/step_adapters"
6
6
  require "dry/transaction/builder"
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dry-transaction
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.13.2
4
+ version: 0.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tim Riley
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-02-08 00:00:00.000000000 Z
11
+ date: 2022-10-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dry-container
@@ -30,14 +30,14 @@ dependencies:
30
30
  requirements:
31
31
  - - ">="
32
32
  - !ruby/object:Gem::Version
33
- version: 0.1.0
33
+ version: 0.4.0
34
34
  type: :runtime
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: 0.1.0
40
+ version: 0.4.0
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: dry-matcher
43
43
  requirement: !ruby/object:Gem::Requirement
@@ -58,14 +58,14 @@ dependencies:
58
58
  requirements:
59
59
  - - ">="
60
60
  - !ruby/object:Gem::Version
61
- version: 0.4.0
61
+ version: 0.5.0
62
62
  type: :runtime
63
63
  prerelease: false
64
64
  version_requirements: !ruby/object:Gem::Requirement
65
65
  requirements:
66
66
  - - ">="
67
67
  - !ruby/object:Gem::Version
68
- version: 0.4.0
68
+ version: 0.5.0
69
69
  description: Business Transaction Flow DSL
70
70
  email:
71
71
  - tim@icelab.com.au
@@ -115,14 +115,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
115
115
  requirements:
116
116
  - - ">="
117
117
  - !ruby/object:Gem::Version
118
- version: 2.5.0
118
+ version: 2.7.0
119
119
  required_rubygems_version: !ruby/object:Gem::Requirement
120
120
  requirements:
121
121
  - - ">="
122
122
  - !ruby/object:Gem::Version
123
123
  version: '0'
124
124
  requirements: []
125
- rubygems_version: 3.1.4
125
+ rubygems_version: 3.1.6
126
126
  signing_key:
127
127
  specification_version: 4
128
128
  summary: Business Transaction Flow DSL