diff --git a/CHANGELOG.md b/CHANGELOG.md index a5a13439..4df9aa49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Removed +# 4.36.0 (27 May 2024) +## Added +- Add `afterResponseCall` hook [#847](https://github.com/knuckleswtf/scribe/pull/847) + +## Fixed +- Unescape tryItOutBaseURL [09b49b582](https://github.com/knuckleswtf/scribe/commit/09b49b5829647597825b2cc7162382e926d53f90) +- Ignore `external.html_attributes` for upgrades [f56a48014](https://github.com/knuckleswtf/scribe/commit/f56a480140d25ada8a441f69db9a6a14b5f0dcd1) +- Fix missing title and logo in `elements` theme [#844](https://github.com/knuckleswtf/scribe/pull/844) + + # 4.35.0 (26 March 2024) ## Modified - Allow examples to be shown in response fields [#825](https://github.com/knuckleswtf/scribe/pull/825) diff --git a/src/Extracting/Strategies/GetFromInlineValidatorBase.php b/src/Extracting/Strategies/GetFromInlineValidatorBase.php index 5757b55a..b6ff7ff8 100644 --- a/src/Extracting/Strategies/GetFromInlineValidatorBase.php +++ b/src/Extracting/Strategies/GetFromInlineValidatorBase.php @@ -81,7 +81,6 @@ public function lookForInlineValidationRules(ClassMethod $methodAst): array if ($arrayItem->value instanceof Node\Scalar\String_) { $rulesList[] = $arrayItem->value->value; } - // Try to extract Enum rule else if ( function_exists('enum_exists') && diff --git a/src/Scribe.php b/src/Scribe.php index 8ef0f861..d248cf69 100644 --- a/src/Scribe.php +++ b/src/Scribe.php @@ -9,7 +9,7 @@ class Scribe { - public const VERSION = '4.35.0'; + public const VERSION = '4.36.0'; /** * Specify a callback that will be executed just before a response call is made