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 +4 -4
- data/.github/workflows/ci.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb +1 -1
- data/lib/manageiq/appliance_console/saml_authentication.rb +3 -1
- data/lib/manageiq/appliance_console/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 114da6d51544c06e88b38816c7f8ffec7cdad12b4aca57220b50b3a129fb3b25
|
4
|
+
data.tar.gz: e5cb078ac27fda7594a858cd9bfcb8d2717320e455a2dc253c376cf7b62fcda3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0f02de6f6b2f7468fde2d2b8f7e998ca24f35dd2217ea70ec1ffbd29375eab5a9751792369a32d203d4acd0fe9c19e8b382936d61fdfbfbf3c2fb5320ef9bc8
|
7
|
+
data.tar.gz: 2bd7369d0799a0061616d8cc1c5abd0656773b26df4eeccf1458f266bb43827d134b11d1c31244253fea2ef731b12071ad3a16296e9b95f05308336ffb86fedc
|
data/.github/workflows/ci.yaml
CHANGED
@@ -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.
|
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@
|
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/
|
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
|
data/lib/manageiq/appliance_console/external_httpd_authentication/external_httpd_configuration.rb
CHANGED
@@ -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),
|
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
|
|
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:
|
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-
|
11
|
+
date: 2024-11-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|