Skip to content

Commit

Permalink
4.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shalvah committed May 27, 2024
1 parent f56a480 commit 1304e15
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
1 change: 0 additions & 1 deletion src/Extracting/Strategies/GetFromInlineValidatorBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -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') &&
Expand Down
2 changes: 1 addition & 1 deletion src/Scribe.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1304e15

Please sign in to comment.