hammer_cli_foreman 0.19.2 → 0.19.3
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f4ada48ab6170c83418d9897928fcbdb48181c7ebbec90fac8480b813cd1a39c
|
4
|
+
data.tar.gz: ef8790167ce342a7048c334b151300f8ef3db40f226c82a199c9e21c753f9609
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 386d6008288df703da87d1d13977e8019cb36c07ed54978f09030f20c6fe40c953c2021c69d8fb062e798210e6266b18071eac242a64303f93504bdc2e05a7ff
|
7
|
+
data.tar.gz: 698cf51c1347f9fdb5f2171f7378895467302f6d74d23f1037eb8332a6e509443713b1f8f2c2d2998b75753be01e9aa51004c837fb37b889810b9b0d91deba8f
|
data/doc/release_notes.md
CHANGED
@@ -1,5 +1,9 @@
|
|
1
1
|
Release notes
|
2
2
|
=============
|
3
|
+
### 0.19.3 (2019-12-04)
|
4
|
+
* Re-add owner-id output in hammer host info ([PR #459](https://github.com/theforeman/hammer-cli-foreman/pull/459)), [#28397](http://projects.theforeman.org/issues/28397)
|
5
|
+
* Gce cr info shows zone field ([PR #455](https://github.com/theforeman/hammer-cli-foreman/pull/455)), [#28135](http://projects.theforeman.org/issues/28135)
|
6
|
+
|
3
7
|
### 0.19.2 (2019-11-25)
|
4
8
|
* Handle empty params for codegrant flow ([PR #456](https://github.com/theforeman/hammer-cli-foreman/pull/456)), [#28196](http://projects.theforeman.org/issues/28196)
|
5
9
|
* Add http-proxy to hammer ([PR #454](https://github.com/theforeman/hammer-cli-foreman/pull/454)), [#28176](http://projects.theforeman.org/issues/28176)
|
@@ -24,6 +24,7 @@ module HammerCLIForeman
|
|
24
24
|
Fields::Field.new(:label => _('Project'), :path => [:project]),
|
25
25
|
Fields::Field.new(:label => _('Email'), :path => [:email]),
|
26
26
|
Fields::Field.new(:label => _('Key Path'), :path => [:key_path]),
|
27
|
+
Fields::Field.new(:label => _('Zone'), :path => [:zone])
|
27
28
|
]
|
28
29
|
end
|
29
30
|
|
@@ -122,6 +122,7 @@ module HammerCLIForeman
|
|
122
122
|
# additional info
|
123
123
|
label _("Additional info") do
|
124
124
|
field nil, _("Owner"), Fields::SingleReference, :key => :owner
|
125
|
+
field :owner_id, _("Owner Id")
|
125
126
|
field :owner_type, _("Owner Type")
|
126
127
|
field :enabled, _("Enabled"), Fields::Boolean
|
127
128
|
field nil, _("Model"), Fields::SingleReference, :key => :model, :hide_blank => true
|
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: 0.19.
|
4
|
+
version: 0.19.3
|
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: 2019-
|
12
|
+
date: 2019-12-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: hammer_cli
|