From 7e00c12714af4567ff2f1956249f2b95d42d62c9 Mon Sep 17 00:00:00 2001 From: Angel Garbarino Date: Tue, 20 Feb 2024 10:50:47 -0700 Subject: [PATCH 1/2] Deprecations: Remove findBy method on RecordArray (#25434) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * address the cluster usage. * dont use filterBy on recordArray either 🙃 * replace fitler with find --- ui/app/routes/vault/cluster.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ui/app/routes/vault/cluster.js b/ui/app/routes/vault/cluster.js index cddfcc547c5a..195a31da9d7d 100644 --- a/ui/app/routes/vault/cluster.js +++ b/ui/app/routes/vault/cluster.js @@ -48,7 +48,8 @@ export default Route.extend(ModelBoundaryRoute, ClusterRoute, { getClusterId(params) { const { cluster_name } = params; - const cluster = this.modelFor('vault').findBy('name', cluster_name); + const records = this.store.peekAll('cluster'); + const cluster = records.find((record) => record.name === cluster_name); return cluster ? cluster.get('id') : null; }, From e5c6e4cf138282119efb60bb67f1b6b3bee5dc6f Mon Sep 17 00:00:00 2001 From: Scott Miller Date: Tue, 20 Feb 2024 12:03:13 -0600 Subject: [PATCH 2/2] Correct documentation that password generation uses entropy augmentation (#25332) --- website/content/docs/enterprise/entropy-augmentation.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/website/content/docs/enterprise/entropy-augmentation.mdx b/website/content/docs/enterprise/entropy-augmentation.mdx index 8fac749271fc..f0c0bcb00cb7 100644 --- a/website/content/docs/enterprise/entropy-augmentation.mdx +++ b/website/content/docs/enterprise/entropy-augmentation.mdx @@ -52,7 +52,6 @@ and include (but not limited to) the following: - [SSH](/vault/docs/secrets/ssh) CA key generation, but not for key pair generation - [KMIP](/vault/docs/secrets/kmip) uses EA for its TLS CA, server, and client certificates. -- Passwords generated where password policies are supported. - TOTP two factor keys.