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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7e6b0081c6aa307274ff6dd94cc9e1dc0c8840dd5e6c3fc1768d4b54adc511f6
4
- data.tar.gz: e1e3f47b3c8ea24b70fc3a518b0cb61e484ea46bc1630b1c8fd911100f4b12e8
3
+ metadata.gz: 95a205cfc0a928333a96512317753b11a461512ae58e38a4320969108d1b7431
4
+ data.tar.gz: 96a4ebef590088f0b44c71345b190934493ef44ec137be136804ecf8cad7c6d3
5
5
  SHA512:
6
- metadata.gz: f8b8d8bd63a376180c162afb97f0feba1cd5e81dde9160501c441104fc6c00417185fcfa259a4a6fd2718de95d25d2069ea9dab2e037683fe69c2f9ff429e88a
7
- data.tar.gz: a908516aeb3e7436f61e276e6b751e52e1b38c8f067eb0a4b55951957a7ef36e923599e2ba5484d8c46c058480c4d573b305d52b91d035822aa997a82123ce37
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
@@ -1,5 +1,10 @@
1
1
  # Ductwork Changelog
2
2
 
3
+ ## [1.1.0]
4
+
5
+ - chore: add color to CLI banner
6
+ - chore: change CLI banner to be more on-theme
7
+
3
8
  ## [1.0.0]
4
9
 
5
10
  - chore: add `trilogy` database adapter to the CI test matrix
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
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Ductwork
4
- VERSION = "1.0.0"
4
+ VERSION = "1.1.0"
5
5
  end
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.0.0
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 using intuitive
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 Ruby pipeline framework
263
+ summary: A durable workflow orchestration framework for Ruby
264
264
  test_files: []