manageiq-appliance_console 12.0.0 → 12.0.1
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c3c70155f006f311edeecc342044e1dd1f7d7039c7416f51417b43d74b7e0f99
|
|
4
|
+
data.tar.gz: c9f27bb97182d7eb867be55be7b324abf06f29225dc5e72a7fad4cde0fab24e3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: aa9b477cedef3fc459358b8c2178d21501b6b986703983b8f3f5ade3f44ec66f9f09023d9731376d6b13c2bcd0b29f11c00e02851ff6b31cbbeec027a99bd421
|
|
7
|
+
data.tar.gz: 026f7b311081f924b2900578269bc985bd3cb264d8ec9f39c69fbe0d3a14f16cc4e4edceb31a02d8c2bcb77a97c3818a62966ba1997dacd0aad70ba860f0d512
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
4
4
|
|
|
5
5
|
## [Unreleased]
|
|
6
6
|
|
|
7
|
+
## [12.0.1] - 2026-05-30
|
|
8
|
+
### Added
|
|
9
|
+
- Set kafka server advertised.listeners to reduce likelihood of connection errors [[#322](https://github.com/ManageIQ/manageiq-appliance_console/pull/322)]
|
|
10
|
+
|
|
7
11
|
## [12.0.0] - 2026-05-07
|
|
8
12
|
### Added
|
|
9
13
|
- Add support for PostgreSQL 16 and repmgr16 [[#321](https://github.com/ManageIQ/manageiq-appliance_console/pull/321)]
|
|
@@ -330,7 +334,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
|
|
|
330
334
|
|
|
331
335
|
## [1.0.0] - 2017-10-19
|
|
332
336
|
|
|
333
|
-
[Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v12.0.
|
|
337
|
+
[Unreleased]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v12.0.1...HEAD
|
|
338
|
+
[12.0.1]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v12.0.0...v12.0.1
|
|
334
339
|
[12.0.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v11.1.0...v12.0.0
|
|
335
340
|
[11.1.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v11.0.0...v11.1.0
|
|
336
341
|
[11.0.0]: https://github.com/ManageIQ/manageiq-appliance_console/compare/v10.0.2...v11.0.0
|
|
@@ -253,6 +253,7 @@ module ManageIQ
|
|
|
253
253
|
content = <<~SERVER_PROPERTIES
|
|
254
254
|
|
|
255
255
|
listeners=SASL_SSL://:#{message_server_port}
|
|
256
|
+
advertised.listeners=SASL_SSL://#{message_server_host}:#{message_server_port}
|
|
256
257
|
|
|
257
258
|
ssl.endpoint.identification.algorithm=#{ident_algorithm}
|
|
258
259
|
ssl.keystore.location=#{keystore_path}
|