hammer_cli_foreman 3.9.0 → 3.11.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: 85d5c798f08f0d775ede7457aab35f687b300a74d623cb07cfd43a532a9af6ac
4
- data.tar.gz: b2c32e64f0fa54187da3e66fe745ef7da093f9696e7757737a2dd802c7ffcd5e
3
+ metadata.gz: fcd19371b69ac0ebe721df5446a820ca45a3bca5c6ba3c7d71b3b5c47b53c841
4
+ data.tar.gz: 8b2f5982ecfddfe6acaa53c50fd0682c243b7f361ae02c02c756f7b860d22eb2
5
5
  SHA512:
6
- metadata.gz: b3575fcc16dd4f4a48549b121b6ef4cbde40cfcd9a8de8f7b8f7fa395d843926962b61f0b543f50a0b58aac7235df9e5682b1a0b21ee1a5e870c6d13df706343
7
- data.tar.gz: 8ebbec2ded6ed488d41de567e2696d564ed0640eb7c1c9305f77c318218dff5b8456808cd0e9bc3a441fbebf7b4e0388a16c06297147fe3c6a0ee9e5e427d311
6
+ metadata.gz: e2933a9baaf1a04838e496f34a9b67cc2b7ab33435af7be46229f4a65fa8f88c8c69404628d3436e6d4b847e03804e11696b52512ab853eb946b4cc9eaeea2d9
7
+ data.tar.gz: a4052c22780771257778d4cb4f29a6e8d9a1f56e52f0e13115c4a1808aca2e40f15ce7201d0c6c76398e50b7aa178facac9269d2540dd246cfb47d7da76fa0ed
data/doc/release_notes.md CHANGED
@@ -1,5 +1,15 @@
1
1
  Release notes
2
2
  =============
3
+ ### 3.11.0 (2024-05-22)
4
+ * Update test data to 3.11
5
+ * Bump to 3.11.0-develop
6
+
7
+ ### 3.10.0 (2024-02-21)
8
+ * Update packit ([PR #627](https://github.com/theforeman/hammer-cli-foreman/pull/627))
9
+ * Use require_relative for 'coverage_reporter' ([PR #626](https://github.com/theforeman/hammer-cli-foreman/pull/626)), [#37163](http://projects.theforeman.org/issues/37163)
10
+ * Show mac address in vmware info ([PR #624](https://github.com/theforeman/hammer-cli-foreman/pull/624)), [#36991](http://projects.theforeman.org/issues/36991)
11
+ * Bump to 3.10.0-develop
12
+
3
13
  ### 3.9.0 (2023-11-29)
4
14
  * Add cache status to ping output ([PR #622](https://github.com/theforeman/hammer-cli-foreman/pull/622)), [#36954](http://projects.theforeman.org/issues/36954)
5
15
  * Use strings, not floats to denote ruby versions ([PR #623](https://github.com/theforeman/hammer-cli-foreman/pull/623))
@@ -80,6 +80,7 @@ module HammerCLIForeman
80
80
  Fields::Field.new(:label => _('Hardware Version'), :path => [:hardware_version]),
81
81
  Fields::Field.new(:label => _('Path'), :path => [:path]),
82
82
  Fields::Field.new(:label => _('Operating System'), :path => [:operatingsystem]),
83
+ Fields::Field.new(:label => _('Mac'), :path => [:mac]),
83
84
  Fields::List.new(:label => _('Boot order'), :path => [:boot_order])
84
85
  ]
85
86
  end
@@ -1,5 +1,5 @@
1
1
  module HammerCLIForeman
2
2
  def self.version
3
- @version ||= Gem::Version.new "3.9.0"
3
+ @version ||= Gem::Version.new "3.11.0"
4
4
  end
5
5
  end
@@ -1,4 +1,4 @@
1
- require 'coverage_reporter'
1
+ require_relative 'coverage_reporter'
2
2
  require "json"
3
3
 
4
4
  module Minitest