omaship 0.2.1 → 0.2.2
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.md +7 -0
- data/lib/omaship/cli.rb +6 -0
- data/lib/omaship/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4f76522b3b89f67ab222e30cbd3055791f747ccd84a3c1121325a2b881b23f88
|
|
4
|
+
data.tar.gz: ed00630e44a0691758648ef290d9ade09d2633f1df723cd526268b1a8f103395
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 21cf9fbd52bfeb7cb833f91894018ffe9c4d22a26efebff655ae609e28ab7ce05256af8ccaf9e767844427f9a6942165c4e5a96e64253a7c045ec9f336234c8d
|
|
7
|
+
data.tar.gz: be9499fdf4ca57543abaf8411b5a90ec4495dc5aea79a8fbcaf78a3fc7c7b837fd1c41e6d61abd0b31c2ef879a9a3348c32c137919a65c32fb3adafc0b2987c1
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [0.2.2](https://github.com/bloomedai/omaship/compare/omaship/v0.2.1...omaship/v0.2.2) (2026-03-06)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* 🐛 suppress debug provisioning noise in cli output ([6dbac0a](https://github.com/bloomedai/omaship/commit/6dbac0abda0c686e656553f6d29d91c6da86db7b))
|
|
9
|
+
|
|
3
10
|
## [0.2.1](https://github.com/bloomedai/omaship/compare/omaship/v0.2.0...omaship/v0.2.1) (2026-03-06)
|
|
4
11
|
|
|
5
12
|
|
data/lib/omaship/cli.rb
CHANGED
|
@@ -583,11 +583,17 @@ module Omaship
|
|
|
583
583
|
|
|
584
584
|
def emit_logs(log_entries)
|
|
585
585
|
log_entries.each do |entry|
|
|
586
|
+
next unless displayable_log_entry?(entry)
|
|
587
|
+
|
|
586
588
|
message = entry.fetch("message")
|
|
587
589
|
progress_renderer.step(message)
|
|
588
590
|
end
|
|
589
591
|
end
|
|
590
592
|
|
|
593
|
+
def displayable_log_entry?(entry)
|
|
594
|
+
entry.fetch("level", "").to_s != "debug"
|
|
595
|
+
end
|
|
596
|
+
|
|
591
597
|
def poll_until_terminal(ship_id:, token:)
|
|
592
598
|
client = build_api_client(token: token)
|
|
593
599
|
last_log_id = 0
|
data/lib/omaship/version.rb
CHANGED