From ebe8128cf5648786330de9a5f124213231e38da7 Mon Sep 17 00:00:00 2001 From: Mike Decker Date: Mon, 16 Sep 2024 15:29:34 -0700 Subject: [PATCH] 1.0.10 --- CHANGELOG.md | 6 ++++++ stanford_samlauth.info.yml | 2 +- tests/src/Kernel/StanfordSamlAuthTestBase.php | 1 + 3 files changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a17f34..c56cfad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Stanford SamlAuth +1.0.10 +-------------------------------------------------------------------------------- +_Release Date: 2024-09-16_ + +- Updated unit test to install path_alias entity. + 1.0.9 -------------------------------------------------------------------------------- _Release Date: 2024-05-29_ diff --git a/stanford_samlauth.info.yml b/stanford_samlauth.info.yml index b3818fc..2a9b37f 100644 --- a/stanford_samlauth.info.yml +++ b/stanford_samlauth.info.yml @@ -3,7 +3,7 @@ type: module description: Adds enhancements to SAML Authentication module. package: Stanford core_version_requirement: ^9 || ^10 || ^11 -version: 1.0.9 +version: 1.0.10 dependencies: - drupal:path_alias - autologout:autologout diff --git a/tests/src/Kernel/StanfordSamlAuthTestBase.php b/tests/src/Kernel/StanfordSamlAuthTestBase.php index 55596eb..c39b8c9 100644 --- a/tests/src/Kernel/StanfordSamlAuthTestBase.php +++ b/tests/src/Kernel/StanfordSamlAuthTestBase.php @@ -30,6 +30,7 @@ public function setup(): void { $this->installEntitySchema('user'); $this->installEntitySchema('user_role'); + $this->installEntitySchema('path_alias'); $this->installSchema('externalauth', 'authmap'); $this->installSchema('system', ['sequences']); $this->installConfig(['stanford_samlauth']);