rails-transactional-outbox 1.1.0 → 1.2.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: 7d730c069808243b30123a8dbd33c701bd778f42f2911544fabd9042125bb8ed
4
- data.tar.gz: e9af76cb075537856068c8d677ebe646d81f10315cbd910806a2acc2be566344
3
+ metadata.gz: 264e9188ed71b9b22938e42ca151bb3c47fdc42d11fb1a99441e8662d5e91f69
4
+ data.tar.gz: 8a4d7511d12a7c4182bb20f0b5eb0d45190e3cbcf4b5bbadf4b1f2c993e69573
5
5
  SHA512:
6
- metadata.gz: b6ffcf4b7801ade3779ad221ab777fdaf5231eeadc3215ae65b11295799c646dc4124430281f9ce013c1d3207688a23de3f9fa35722a547a4751d965f95181b7
7
- data.tar.gz: 4da8c107563ec5279805e6e10febcbf7f9a3f71872b28f5df77f897e9b807e634eabb6b182a4c1ad2d29a7a0cbcc75d68322c66c3adcc27d009b419492d76dc7
6
+ metadata.gz: b55a0e50b820058cc03b3365809017015bad91211aa7697956923e7d95ef37fc36f16fe75726fa2509abcf339094667a63dd26e0aa0542805f0efb91c7f5de89
7
+ data.tar.gz: c3544e78566e7a899d59a1517a4281e286b2cff50b28f43f30764feac99abc8368a3e776ba7f6b9370eb858fd3dc970fa01188da364db0a92fe7cf3a35668525
@@ -9,14 +9,14 @@ jobs:
9
9
  - uses: actions/checkout@v2
10
10
  - uses: ruby/setup-ruby@v1
11
11
  with:
12
- ruby-version: 3.1
12
+ ruby-version: 3.2
13
13
  bundler-cache: true
14
14
  - run: bundle exec rubocop
15
15
  rspec:
16
16
  strategy:
17
17
  fail-fast: false
18
18
  matrix:
19
- ruby: ['3.1', '3.2', '3.3']
19
+ ruby: ['3.2', '3.3']
20
20
  runs-on: ubuntu-latest
21
21
  env:
22
22
  DATABASE_URL: "postgresql://postgres:postgres@127.0.0.1:5432/rails-transactional-outbox-test"
data/.rubocop.yml CHANGED
@@ -9,7 +9,7 @@ inherit_mode:
9
9
 
10
10
  AllCops:
11
11
  NewCops: enable
12
- TargetRubyVersion: 3.1
12
+ TargetRubyVersion: 3.2
13
13
  Exclude:
14
14
  - "db/**/*"
15
15
  - "bin/**/*"
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  ## [Unreleased]
2
2
 
3
+ ## [1.2.0] - 2025-04-08
4
+
5
+ - Require Ruby >= 3.2
6
+
3
7
  ## [1.1.0] - 2025-04-08
4
8
 
5
9
  - Make gem compatible with Datadog gem 2.0
data/Gemfile.lock CHANGED
@@ -9,7 +9,7 @@ GIT
9
9
  PATH
10
10
  remote: .
11
11
  specs:
12
- rails-transactional-outbox (1.1.0)
12
+ rails-transactional-outbox (1.2.0)
13
13
  activerecord (>= 5)
14
14
  activesupport (>= 3.2)
15
15
  concurrent-ruby
@@ -3,5 +3,5 @@
3
3
  class RailsTransactionalOutbox
4
4
  module Version
5
5
  end
6
- VERSION = "1.1.0"
6
+ VERSION = "1.2.0"
7
7
  end
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
12
12
  spec.description = "An implementation of transactional outbox pattern to be used with Rails."
13
13
  spec.homepage = "https://github.com/BookingSync/rails-transactional-outbox"
14
14
  spec.license = "MIT"
15
- spec.required_ruby_version = Gem::Requirement.new(">= 3.1.0")
15
+ spec.required_ruby_version = Gem::Requirement.new(">= 3.2.0")
16
16
 
17
17
  # spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
18
18
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rails-transactional-outbox
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Karol Galanciak
@@ -253,7 +253,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
253
253
  requirements:
254
254
  - - ">="
255
255
  - !ruby/object:Gem::Version
256
- version: 3.1.0
256
+ version: 3.2.0
257
257
  required_rubygems_version: !ruby/object:Gem::Requirement
258
258
  requirements:
259
259
  - - ">="