hammer_cli_foreman 3.9.0 → 3.10.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 +4 -4
- data/doc/release_notes.md +6 -0
- data/lib/hammer_cli_foreman/compute_resource/vmware.rb +1 -0
- data/lib/hammer_cli_foreman/version.rb +1 -1
- data/lib/minitest/hammer_coverage_plugin.rb +1 -1
- data/locale/ca/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/cs_CZ/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/de/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/en_GB/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/es/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/fr/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/it/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ja/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ka/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ko/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/pt_BR/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/ru/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_CN/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- data/locale/zh_TW/LC_MESSAGES/hammer-cli-foreman.mo +0 -0
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1378c71afe884f9057c631189874b2e73bf1564c217c64d43dd10ff217ca1e78
|
|
4
|
+
data.tar.gz: bd5274ac74e9a660c0e58e8cc5ad72b9f3a7f6ee2e27514b49ebd82619154770
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d680386e1ef631a635e2703a2225c5f1664febab76b64925005de854ac2421f25d3c81227cbc058e2ce8886eccdd732d5c9029ec5eb4309d0a785758723d5ca3
|
|
7
|
+
data.tar.gz: c64e4a6a73644b4d1ba7598dd445156cb1983c76ed32255250081ceec98e21310a5b29ad88b5aa0de0e927d923f4ced2210df304265d6a24733bd953c2aa7d9b
|
data/doc/release_notes.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
Release notes
|
|
2
2
|
=============
|
|
3
|
+
### 3.10.0 (2024-02-21)
|
|
4
|
+
* Update packit ([PR #627](https://github.com/theforeman/hammer-cli-foreman/pull/627))
|
|
5
|
+
* Use require_relative for 'coverage_reporter' ([PR #626](https://github.com/theforeman/hammer-cli-foreman/pull/626)), [#37163](http://projects.theforeman.org/issues/37163)
|
|
6
|
+
* Show mac address in vmware info ([PR #624](https://github.com/theforeman/hammer-cli-foreman/pull/624)), [#36991](http://projects.theforeman.org/issues/36991)
|
|
7
|
+
* Bump to 3.10.0-develop
|
|
8
|
+
|
|
3
9
|
### 3.9.0 (2023-11-29)
|
|
4
10
|
* 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
11
|
* 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
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hammer_cli_foreman
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.
|
|
4
|
+
version: 3.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tomáš Strachota
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2024-02-21 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: hammer_cli
|
|
@@ -17,14 +17,14 @@ dependencies:
|
|
|
17
17
|
requirements:
|
|
18
18
|
- - ">="
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
|
-
version: 3.
|
|
20
|
+
version: 3.10.0
|
|
21
21
|
type: :runtime
|
|
22
22
|
prerelease: false
|
|
23
23
|
version_requirements: !ruby/object:Gem::Requirement
|
|
24
24
|
requirements:
|
|
25
25
|
- - ">="
|
|
26
26
|
- !ruby/object:Gem::Version
|
|
27
|
-
version: 3.
|
|
27
|
+
version: 3.10.0
|
|
28
28
|
- !ruby/object:Gem::Dependency
|
|
29
29
|
name: apipie-bindings
|
|
30
30
|
requirement: !ruby/object:Gem::Requirement
|