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 +4 -4
- data/.github/workflows/ci.yml +2 -2
- data/.rubocop.yml +1 -1
- data/CHANGELOG.md +4 -0
- data/Gemfile.lock +1 -1
- data/lib/rails_transactional_outbox/version.rb +1 -1
- data/rails-transactional-outbox.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 264e9188ed71b9b22938e42ca151bb3c47fdc42d11fb1a99441e8662d5e91f69
|
4
|
+
data.tar.gz: 8a4d7511d12a7c4182bb20f0b5eb0d45190e3cbcf4b5bbadf4b1f2c993e69573
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b55a0e50b820058cc03b3365809017015bad91211aa7697956923e7d95ef37fc36f16fe75726fa2509abcf339094667a63dd26e0aa0542805f0efb91c7f5de89
|
7
|
+
data.tar.gz: c3544e78566e7a899d59a1517a4281e286b2cff50b28f43f30764feac99abc8368a3e776ba7f6b9370eb858fd3dc970fa01188da364db0a92fe7cf3a35668525
|
data/.github/workflows/ci.yml
CHANGED
@@ -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.
|
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.
|
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
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
@@ -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.
|
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.
|
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.
|
256
|
+
version: 3.2.0
|
257
257
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
258
258
|
requirements:
|
259
259
|
- - ">="
|