good_pipeline 0.2.0 → 0.2.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a040b8756c4c84156db272e92f9749f5b35a14b02bea313dc2ab16ae783daf8
|
|
4
|
+
data.tar.gz: 0616f1b5b8cbbacb95e97b10ff92cdaa834c45cb9fd61d6ed60e5e5206bb15e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 35f5545add3d81b4c0f0795cfb2252b1e232aa930da24d1764b00e6446090396e0a510beae3df565e87d886f60773cf7642d082441c4a2965466c13f7680ea59
|
|
7
|
+
data.tar.gz: 8d65939c7be85e81bd16d551fd6235cffbabb57c2a919b1dbd7a4e2a7288e12757577bec1449e16659e2bd79f8be21753eefd7be65289e6c98e862fcf8e30faf
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
## [Unreleased]
|
|
2
2
|
|
|
3
|
+
## [0.2.1] - 2026-03-24
|
|
4
|
+
|
|
5
|
+
### Fixed
|
|
6
|
+
|
|
7
|
+
- **`dependent: :destroy` on pipeline steps** — switched from `delete_all` to `destroy` so that destroying a pipeline properly triggers StepRecord's cascading cleanup of dependency records.
|
|
8
|
+
- **Redundant database indexes** — removed single-column indexes on `steps(pipeline_id)` and `chains(upstream_pipeline_id)` that were already covered by their respective composite indexes.
|
|
9
|
+
|
|
3
10
|
## [0.2.0] - 2026-03-24
|
|
4
11
|
|
|
5
12
|
### Added
|
|
@@ -18,7 +18,7 @@ class CreateGoodPipelineTables < ActiveRecord::Migration[<%= ActiveRecord::Migra
|
|
|
18
18
|
add_index :good_pipeline_pipelines, :status
|
|
19
19
|
|
|
20
20
|
create_table :good_pipeline_steps, id: :uuid do |t|
|
|
21
|
-
t.references :pipeline, null: false, foreign_key: { to_table: :good_pipeline_pipelines }, type: :uuid
|
|
21
|
+
t.references :pipeline, null: false, foreign_key: { to_table: :good_pipeline_pipelines }, type: :uuid, index: false
|
|
22
22
|
t.string :key, null: false
|
|
23
23
|
t.string :job_class, null: false
|
|
24
24
|
t.jsonb :params, null: false, default: {}
|
|
@@ -45,7 +45,7 @@ class CreateGoodPipelineTables < ActiveRecord::Migration[<%= ActiveRecord::Migra
|
|
|
45
45
|
end
|
|
46
46
|
|
|
47
47
|
create_table :good_pipeline_chains, id: :uuid do |t|
|
|
48
|
-
t.references :upstream_pipeline, null: false, foreign_key: { to_table: :good_pipeline_pipelines }, type: :uuid
|
|
48
|
+
t.references :upstream_pipeline, null: false, foreign_key: { to_table: :good_pipeline_pipelines }, type: :uuid, index: false
|
|
49
49
|
t.references :downstream_pipeline, null: false, foreign_key: { to_table: :good_pipeline_pipelines }, type: :uuid
|
|
50
50
|
end
|
|
51
51
|
|