ductwork 1.0.0 → 1.1.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/CHANGELOG-PRO.md +3 -0
- data/CHANGELOG.md +5 -0
- data/lib/ductwork/cli.rb +9 -11
- data/lib/ductwork/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 95a205cfc0a928333a96512317753b11a461512ae58e38a4320969108d1b7431
|
|
4
|
+
data.tar.gz: 96a4ebef590088f0b44c71345b190934493ef44ec137be136804ecf8cad7c6d3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 5785b7e08bfd89bb7f94303babc18fc8b528f26e8b16cbe0bb338b072faee51057f89fdc8d4bcc9f551bd83a81766a9d07045cb246e2cdd5c1bb8ab8e0fb6094
|
|
7
|
+
data.tar.gz: f1887e429b87d44c3e90dddd2acb5106c4e39b100689b95f1570a8c240e3e7ea08555b0efb3fce1341a9f72c66e961196e5468999390f034a1147ae0e5f1cbf7
|
data/CHANGELOG-PRO.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
## [1.0.0] (Unreleased)
|
|
4
4
|
|
|
5
|
+
- chore: add multiple database adapters to CI test matrix
|
|
6
|
+
- fix: inspect `in_batches` parameters for passing `cursor` option
|
|
7
|
+
- fix: only use cursor options for ActiveRecord versions that support it
|
|
5
8
|
- chore: wire payloads to jobs without instantiating whole model objects
|
|
6
9
|
- fix: avoid race condition of `nil`-ing out `execution` on job worker
|
|
7
10
|
- fix: no longer strand `combine`/`collapse` branches in `advancing` when a run-row deadlock rolls back a transition that had already completed the branch (via the shared OSS claim-fence fix); previously the run stalled until the advancer process was reaped
|
data/CHANGELOG.md
CHANGED
data/lib/ductwork/cli.rb
CHANGED
|
@@ -69,17 +69,15 @@ module Ductwork
|
|
|
69
69
|
def banner
|
|
70
70
|
<<-BANNER
|
|
71
71
|
\e[1;37m
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
░ ░ ░ ░ ░ ░ ░ ░ ░ ░
|
|
82
|
-
░ ░
|
|
72
|
+
\e[0m════════════╗
|
|
73
|
+
║
|
|
74
|
+
║
|
|
75
|
+
║ ╔═════\e[1;31m●\e[0m
|
|
76
|
+
║ \e[1;37mD U C T W O R K\e[0m ║
|
|
77
|
+
╔═══║═╗ ║
|
|
78
|
+
║ ║ ║ ╔═════════╗ ║
|
|
79
|
+
\e[1;37m\e[0m══════╝ ╚═║═══════════════════════║═══╝
|
|
80
|
+
╚═════════════╝ ╚═══════════\e[1;37m
|
|
83
81
|
\e[0m
|
|
84
82
|
BANNER
|
|
85
83
|
end
|
data/lib/ductwork/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ductwork
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tyler Ewing
|
|
@@ -103,8 +103,8 @@ dependencies:
|
|
|
103
103
|
- - "~>"
|
|
104
104
|
- !ruby/object:Gem::Version
|
|
105
105
|
version: '2.7'
|
|
106
|
-
description: Ductwork lets you build complex pipelines quickly and easily
|
|
107
|
-
Ruby tooling and a natural DSL.
|
|
106
|
+
description: Ductwork lets you build complex durable pipelines quickly and easily
|
|
107
|
+
using intuitive Ruby tooling and a natural DSL.
|
|
108
108
|
email:
|
|
109
109
|
- contact@getductwork.io
|
|
110
110
|
executables: []
|
|
@@ -260,5 +260,5 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
260
260
|
requirements: []
|
|
261
261
|
rubygems_version: 4.0.16
|
|
262
262
|
specification_version: 4
|
|
263
|
-
summary: A
|
|
263
|
+
summary: A durable workflow orchestration framework for Ruby
|
|
264
264
|
test_files: []
|