Shalvah 11 months ago
parent
commit
1304e15036
3 changed files with 11 additions and 2 deletions
  1. 10 0
      CHANGELOG.md
  2. 0 1
      src/Extracting/Strategies/GetFromInlineValidatorBase.php
  3. 1 1
      src/Scribe.php

+ 10 - 0
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)

+ 0 - 1
src/Extracting/Strategies/GetFromInlineValidatorBase.php

@@ -81,7 +81,6 @@ class GetFromInlineValidatorBase extends Strategy
                     if ($arrayItem->value instanceof Node\Scalar\String_) {
                         $rulesList[] = $arrayItem->value->value;
                     }
-
                     // Try to extract Enum rule
                     else if (
                         function_exists('enum_exists') &&

+ 1 - 1
src/Scribe.php

@@ -9,7 +9,7 @@ use Symfony\Component\HttpFoundation\Request;
 
 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