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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17a560c4acd3fcb2a3ddc1f2dc878d7fa3a3bfce501821cd9ad2a0aaf6b5a0f8
4
- data.tar.gz: e07f76c6417e4714473a5a699c3b3169e4934d3d5b38df61ca742d17a25fa786
3
+ metadata.gz: 4f76522b3b89f67ab222e30cbd3055791f747ccd84a3c1121325a2b881b23f88
4
+ data.tar.gz: ed00630e44a0691758648ef290d9ade09d2633f1df723cd526268b1a8f103395
5
5
  SHA512:
6
- metadata.gz: 8d0724a6d3f68a050d3f24bb131c4ff17965f6d992d8555288afbadb5472a6f7116c3c196d5179258fbb8214a1057e9c2fac73fcb8d110a67b5c25243538f705
7
- data.tar.gz: de10cb82315db0621c4b612477391c20344535de035652d9374bbac0f3e6b60f78a9d4f4e2e7b26871e3232d26b7325d4df1e5c8cc617f742ca9814c371fb165
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
@@ -1,3 +1,3 @@
1
1
  module Omaship
2
- VERSION = "0.2.1".freeze
2
+ VERSION = "0.2.2".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: omaship
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.1
4
+ version: 0.2.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Omaship