foreman_puppet 6.0.0 → 6.0.1

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: e59cf0e5991e1889b33b6691d0e537b98e5860f0a959e662352c11d0d9405a8e
4
- data.tar.gz: 17341daec79f8ebb38287fd5fd32bbd079630d79abcc72a662bdc54b80eadd51
3
+ metadata.gz: 9ddb41ece0ec9add7b77e958a35fe39da8ff7588a7cd6bb0900a09bbc5a9853b
4
+ data.tar.gz: 5054407779deb586f36b4af5ef98a21031511c3f195d8365a2525fe2a5668de8
5
5
  SHA512:
6
- metadata.gz: 17db46ed6f8e0274e9a14fe7cc40de45878fedac0bc5284356706b6e66b18da587fd41454116fe8a69cb3c4fc39f88b770e3878407d08987154aa5c93b1c81b9
7
- data.tar.gz: 28a410202cea50308d6b963b24f44c27c3e190536551a4ebaf1b7dcd68ca75dc103354e7e26a0a22caf0b58f4dbada0b0aa111f8abc0390a17da526f4ad22cf4
6
+ metadata.gz: c6c095009c3211f066ac1966190edf4598715c636a176ae824eccf3218f85a606c88f89672dd4cb4e6154b9b9a4fe58255e1799f214a5df8848b9e6a6656266d
7
+ data.tar.gz: a3711124b1bfc9659070261f9a8aaa4ba4a6de3dc2c021967f80d481b29b35a582b12153ad27cc7a7d32c887c3733ef1550edcad43ee37054640b351250ee219
data/README.md CHANGED
@@ -33,7 +33,8 @@ Some features will remain in core:
33
33
 
34
34
  |Foreman version|Plugin version|Notes |
35
35
  |---------------|--------------|------------------------------------------|
36
- | >= 3.5 | ~> 5.0 | Required |
36
+ | >= 3.7 | ~> 6.0 | Required |
37
+ | ~> 3.5, 3.6 | ~> 5.0 | Required |
37
38
  | ~> 3.4 | ~> 4.1 | Required |
38
39
  | ~> 3.3 | ~> 4.0 | Required |
39
40
  | ~> 3.2 | ~> 3.0 | Required |
@@ -51,7 +52,7 @@ You can manually install this plugin using:
51
52
 
52
53
  ```sh
53
54
  # On RedHat/CentOS
54
- yum install tfm-rubygem-foreman_puppet
55
+ dnf install rubygem-foreman_puppet
55
56
 
56
57
  # On Debian
57
58
  apt install ruby-foreman-puppet
@@ -77,7 +78,7 @@ Fork and send a Pull Request. Thanks!
77
78
 
78
79
  ## Copyright
79
80
 
80
- Copyright (c) *2022* *The Foreman developers*
81
+ Copyright (c) *2020-2023* *The Foreman developers*
81
82
 
82
83
  This program is free software: you can redistribute it and/or modify
83
84
  it under the terms of the GNU General Public License as published by
@@ -1,4 +1,9 @@
1
- <%= content_tag :li, id: "selected_puppetclass_#{klass.id}", class: [dom_class(klass, 'selected'), cycle('even', 'odd'), ('unavailable' unless klass.environments.include?(obj.environment.present? ? obj.environment : @environment))] do %>
1
+ <%
2
+ id = "selected_puppetclass_#{klass.id}"
3
+ css = [dom_class(klass, 'selected'), cycle('even', 'odd')]
4
+ css << 'unavailable' unless klass.environments.include?(obj.try(:environment).presence || @environment)
5
+ %>
6
+ <%= content_tag :li, id: id, class: css do %>
2
7
  <%= link_to_remove_puppetclass(klass, obj) %>
3
8
  <%= hidden_field_tag "#{resource_type}[puppetclass_ids][]", klass.id %>
4
9
  <% end %>
@@ -1,3 +1,3 @@
1
1
  module ForemanPuppet
2
- VERSION = '6.0.0'.freeze
2
+ VERSION = '6.0.1'.freeze
3
3
  end
data/package.json CHANGED
@@ -9,8 +9,6 @@
9
9
  "test:watch": "tfm-test --plugin --watchAll",
10
10
  "test:current": "tfm-test --plugin --watch",
11
11
  "publish-coverage": "tfm-publish-coverage",
12
- "stories": "tfm-stories --plugin",
13
- "stories:build": "tfm-build-stories --plugin",
14
12
  "create-react-component": "yo react-domain"
15
13
  },
16
14
  "repository": {
@@ -29,7 +27,6 @@
29
27
  "@theforeman/builder": ">= 10.1.0",
30
28
  "@theforeman/eslint-plugin-foreman": ">= 10.1.0",
31
29
  "@theforeman/find-foreman": ">= 10.1.0",
32
- "@theforeman/stories": ">= 10.1.0",
33
30
  "@theforeman/test": ">= 10.1.0",
34
31
  "@theforeman/vendor-dev": ">= 10.1.0",
35
32
  "babel-eslint": "^10.0.3",
@@ -82,6 +82,9 @@ export function updatePuppetclasses(element) {
82
82
  export function reloadPuppetclassParams() {
83
83
  const hostId = $('form.hostresource-form').data('id');
84
84
  const url = $('#puppet_klasses_parameters').data('url');
85
+ if (!url) {
86
+ return;
87
+ }
85
88
  let data = window.serializeForm().replace('method=patch', 'method=post');
86
89
  if (url.match('hostgroups')) {
87
90
  data += `&hostgroup_id=${hostId}`;
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: foreman_puppet
3
3
  version: !ruby/object:Gem::Version
4
- version: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ondřej Ezr
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2023-06-12 00:00:00.000000000 Z
12
+ date: 2023-08-10 00:00:00.000000000 Z
13
13
  dependencies: []
14
14
  description: Allow assigning Puppet environments and classes to the Foreman Hosts.
15
15
  email:
@@ -436,76 +436,76 @@ required_rubygems_version: !ruby/object:Gem::Requirement
436
436
  - !ruby/object:Gem::Version
437
437
  version: '0'
438
438
  requirements: []
439
- rubygems_version: 3.3.26
439
+ rubygems_version: 3.1.6
440
440
  signing_key:
441
441
  specification_version: 4
442
442
  summary: Add Puppet features to Foreman
443
443
  test_files:
444
444
  - test/controllers/foreman_puppet/api/v2/config_groups_controller_test.rb
445
- - test/controllers/foreman_puppet/api/v2/environments_controller_test.rb
446
445
  - test/controllers/foreman_puppet/api/v2/host_classes_controller_test.rb
447
446
  - test/controllers/foreman_puppet/api/v2/hostgroup_classes_controller_test.rb
448
447
  - test/controllers/foreman_puppet/api/v2/hostgroups_controller_test.rb
449
- - test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb
450
448
  - test/controllers/foreman_puppet/api/v2/lookups_common_controller_test.rb
451
- - test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb
452
449
  - test/controllers/foreman_puppet/api/v2/provisioning_templates_controller_test.rb
453
450
  - test/controllers/foreman_puppet/api/v2/puppetclasses_controller_test.rb
454
- - test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb
455
451
  - test/controllers/foreman_puppet/api/v2/smart_proxies_controller_test.rb
456
452
  - test/controllers/foreman_puppet/api/v2/template_combinations_controller_test.rb
453
+ - test/controllers/foreman_puppet/api/v2/environments_controller_test.rb
454
+ - test/controllers/foreman_puppet/api/v2/smart_class_parameters_controller_test.rb
455
+ - test/controllers/foreman_puppet/api/v2/hosts_controller_test.rb
456
+ - test/controllers/foreman_puppet/api/v2/override_values_controller_test.rb
457
457
  - test/controllers/foreman_puppet/config_groups_controller_test.rb
458
- - test/controllers/foreman_puppet/environments_controller_test.rb
459
458
  - test/controllers/foreman_puppet/hostgroups_controller_test.rb
460
- - test/controllers/foreman_puppet/hosts_controller_test.rb
461
459
  - test/controllers/foreman_puppet/puppet_smart_proxies_controller_test.rb
462
460
  - test/controllers/foreman_puppet/puppetclass_lookup_keys_controller_test.rb
463
461
  - test/controllers/foreman_puppet/puppetclasses_controller_test.rb
462
+ - test/controllers/foreman_puppet/environments_controller_test.rb
463
+ - test/controllers/foreman_puppet/hosts_controller_test.rb
464
464
  - test/controllers/provisioning_templates_controller_test.rb
465
465
  - test/factories/foreman_puppet_factories.rb
466
466
  - test/factories/host_puppet_enhancements.rb
467
467
  - test/factories/proxy_puppet_enhancements.rb
468
468
  - test/graphql/mutations/hosts/create_mutation_test.rb
469
- - test/graphql/queries/environment_query_test.rb
470
469
  - test/graphql/queries/environments_query_test.rb
471
470
  - test/graphql/queries/host_puppet_query_test.rb
472
471
  - test/graphql/queries/hostgroup_puppet_query_test.rb
473
472
  - test/graphql/queries/location_query_test.rb
474
473
  - test/graphql/queries/organization_query_test.rb
475
- - test/graphql/queries/puppetclass_query_test.rb
476
474
  - test/graphql/queries/puppetclasses_query_test.rb
475
+ - test/graphql/queries/environment_query_test.rb
476
+ - test/graphql/queries/puppetclass_query_test.rb
477
477
  - test/helpers/foreman_puppet/hosts_and_hostgroups_helper_test.rb
478
- - test/helpers/foreman_puppet/puppetclass_lookup_keys_helper_test.rb
479
478
  - test/helpers/foreman_puppet/puppetclasses_helper_test.rb
479
+ - test/helpers/foreman_puppet/puppetclass_lookup_keys_helper_test.rb
480
480
  - test/integration/foreman_puppet/dashboard_js_test.rb
481
481
  - test/integration/foreman_puppet/environment_js_test.rb
482
- - test/integration/foreman_puppet/host_js_test.rb
483
482
  - test/integration/foreman_puppet/hostgroup_js_test.rb
484
483
  - test/integration/foreman_puppet/puppetclass_js_test.rb
485
484
  - test/integration/foreman_puppet/smartclass_parameter_js_test.rb
486
- - test/integration_puppet_helper.rb
485
+ - test/integration/foreman_puppet/host_js_test.rb
487
486
  - test/models/foreman_puppet/config_group_class_test.rb
488
487
  - test/models/foreman_puppet/config_group_test.rb
489
488
  - test/models/foreman_puppet/environment_test.rb
490
489
  - test/models/foreman_puppet/host_config_group_test.rb
491
- - test/models/foreman_puppet/host_puppet_facet_test.rb
492
- - test/models/foreman_puppet/host_test.rb
493
490
  - test/models/foreman_puppet/hostgroup_puppet_facet_test.rb
494
491
  - test/models/foreman_puppet/hostgroup_test.rb
495
492
  - test/models/foreman_puppet/lookup_value_test.rb
496
- - test/models/foreman_puppet/provisioning_template_test.rb
497
493
  - test/models/foreman_puppet/puppetclass_lookup_key_test.rb
498
- - test/models/foreman_puppet/puppetclass_test.rb
499
494
  - test/models/foreman_puppet/report_test.rb
500
495
  - test/models/foreman_puppet/smart_proxy_test.rb
501
496
  - test/models/foreman_puppet/user_test.rb
502
- - test/services/foreman_puppet/host_counter_test.rb
497
+ - test/models/foreman_puppet/provisioning_template_test.rb
498
+ - test/models/foreman_puppet/puppetclass_test.rb
499
+ - test/models/foreman_puppet/host_puppet_facet_test.rb
500
+ - test/models/foreman_puppet/host_test.rb
503
501
  - test/services/foreman_puppet/host_info_providers/config_groups_info_test.rb
504
502
  - test/services/foreman_puppet/host_info_providers/puppet_info_test.rb
505
503
  - test/services/foreman_puppet/input_type/puppet_parameter_input_test.rb
506
- - test/test_puppet_helper.rb
504
+ - test/services/foreman_puppet/host_counter_test.rb
507
505
  - test/unit/foreman_puppet/access_permissions_test.rb
508
- - test/unit/foreman_puppet/global_id_test.rb
509
506
  - test/unit/foreman_puppet/puppet_class_importer_test.rb
510
507
  - test/unit/foreman_puppet/template_rendering_test.rb
508
+ - test/unit/foreman_puppet/global_id_test.rb
511
509
  - test/unit/foreman_puppet_test.rb
510
+ - test/test_puppet_helper.rb
511
+ - test/integration_puppet_helper.rb