manageiq-appliance_console 9.1.1 → 10.0.0

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: 92c044bd2f3d92f8d58e493c00f95305372fd4954c7e66f9b352093311450976
4
- data.tar.gz: 8b61325b1fe64b83f7160225c7aeae2b91ac415a48089c4bb387120d76446ee3
3
+ metadata.gz: 114da6d51544c06e88b38816c7f8ffec7cdad12b4aca57220b50b3a129fb3b25
4
+ data.tar.gz: e5cb078ac27fda7594a858cd9bfcb8d2717320e455a2dc253c376cf7b62fcda3
5
5
  SHA512:
6
- metadata.gz: c063b69eee1a7b04a4e3a08c96a78679969e4903e670fb3018e4f6ce1325f76b1168f20064530b0781b8badff3376740413067cc9cffa8c37a69c3c09dc4b697
7
- data.tar.gz: 4e390849ca9978b98501214c0f80de65e854f82d1fb3ae1c449da07cb6d8db5fe6df26ea0c2b518708b2db139bef0eb9fa99271f78d865437dc377627214bb76
6
+ metadata.gz: f0f02de6f6b2f7468fde2d2b8f7e998ca24f35dd2217ea70ec1ffbd29375eab5a9751792369a32d203d4acd0fe9c19e8b382936d61fdfbfbf3c2fb5320ef9bc8
7
+ data.tar.gz: 2bd7369d0799a0061616d8cc1c5abd0656773b26df4eeccf1458f266bb43827d134b11d1c31244253fea2ef731b12071ad3a16296e9b95f05308336ffb86fedc
@@ -11,11 +11,11 @@ jobs:
11
11
  strategy:
12
12
  matrix:
13
13
  ruby-version:
14
- - '3.0'
15
14
  - '3.1'
15
+ - '3.3'
16
16
  rails-version:
17
- - '6.1'
18
17
  - '7.0'
18
+ - '7.1'
19
19
  services:
20
20
  postgres:
21
21
  image: manageiq/postgresql:13
@@ -42,6 +42,6 @@ jobs:
42
42
  - name: Run tests
43
43
  run: bundle exec rake
44
44
  - name: Report code coverage
45
- if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.1' && matrix.rails-version == '7.0' }}
45
+ if: ${{ github.ref == 'refs/heads/master' && matrix.ruby-version == '3.3' && matrix.rails-version == '7.1' }}
46
46
  continue-on-error: true
47
- uses: paambaati/codeclimate-action@v8
47
+ uses: paambaati/codeclimate-action@v9
data/CHANGELOG.md CHANGED
@@ -4,6 +4,16 @@ This project adheres to [Semantic Versioning](http://semver.org/).
4
4
 
5
5
  ## [Unreleased]
6
6
 
7
+ ## [10.0.0] - 2024-11-19
8
+ ### Added
9
+ - Test with ruby 3.3 [[#269](https://github.com/ManageIQ/manageiq-appliance_console/pull/269)]
10
+
11
+ ### Changed
12
+ - **BREAKING** Store saml remote user configuration separately from sssd lookup [[#265](https://github.com/ManageIQ/manageiq-appliance_console/pull/265)]
13
+
14
+ ### Fixed
15
+ - Fix warnings on newer ERB versions [[#267](https://github.com/ManageIQ/manageiq-appliance_console/pull/267)]
16
+
7
17
  ## [9.1.1] - 2024-08-13
8
18
  ### Changed
9
19
  - Don't depend on eth0 for displaying network information [[#263](https://github.com/ManageIQ/manageiq-appliance_console/pull/263)]
@@ -289,7 +299,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
289
299
 
290
300
  ## [1.0.0] - 2017-10-19
291
301
 
292
- [Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.1...HEAD
302
+ [Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.0...HEAD
303
+ [10.0.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.1...v10.0.0
293
304
  [9.1.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.1.0...v9.1.1
294
305
  [9.1.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.0.3...v9.1.0
295
306
  [9.0.3]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v9.0.2...v9.0.3
@@ -201,7 +201,7 @@ module ApplianceConsole
201
201
  src_path = path_join(src_dir, file)
202
202
  dest_path = path_join(dest_dir, file.gsub(".erb", ""))
203
203
  if src_path.to_s.include?(".erb")
204
- File.write(dest_path, ERB.new(File.read(src_path), nil, '-').result(binding))
204
+ File.write(dest_path, ERB.new(File.read(src_path), trim_mode: '-').result(binding))
205
205
  else
206
206
  FileUtils.cp src_path, dest_path
207
207
  end
@@ -90,13 +90,15 @@ module ManageIQ
90
90
 
91
91
  def copy_apache_saml_configfiles
92
92
  debug_msg("Copying Apache SAML Config files ...")
93
- copy_template(HTTPD_CONFIG_DIRECTORY, "manageiq-remote-user.conf")
93
+ copy_template(HTTPD_CONFIG_DIRECTORY, "manageiq-remote-user-saml.conf")
94
94
  copy_template(HTTPD_CONFIG_DIRECTORY, "manageiq-external-auth-saml.conf")
95
95
  end
96
96
 
97
97
  def remove_apache_saml_configfiles
98
98
  debug_msg("Removing Apache SAML Config files ...")
99
+ # legacy systems may have manageiq-remote-user.conf instead of manageiq-remote-user-saml.conf
99
100
  remove_file(HTTPD_CONFIG_DIRECTORY.join("manageiq-remote-user.conf"))
101
+ remove_file(HTTPD_CONFIG_DIRECTORY.join("manageiq-remote-user-saml.conf"))
100
102
  remove_file(HTTPD_CONFIG_DIRECTORY.join("manageiq-external-auth-saml.conf"))
101
103
  end
102
104
 
@@ -1,5 +1,5 @@
1
1
  module ManageIQ
2
2
  module ApplianceConsole
3
- VERSION = '9.1.1'.freeze
3
+ VERSION = '10.0.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: manageiq-appliance_console
3
3
  version: !ruby/object:Gem::Version
4
- version: 9.1.1
4
+ version: 10.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ManageIQ Developers
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-13 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord