Shalvah 1 year ago
parent
commit
8daa74c96c
2 changed files with 13 additions and 1 deletions
  1. 12 0
      CHANGELOG.md
  2. 1 1
      src/Scribe.php

+ 12 - 0
CHANGELOG.md

@@ -12,6 +12,18 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
 
 ### Removed
 
+# 4.23.0 (24 August 2023)
+## Added
+- Support for enums: you can now specify the allowed values of a parameter ([#713](https://github.com/knuckleswtf/scribe/pull/713))
+
+## Modified
+- Exclude Authorization header from generated OpenAPI spec, per spec ([#714](https://github.com/knuckleswtf/scribe/pull/714))
+
+## Fixed
+- Improve endpointId generation ([#700](https://github.com/knuckleswtf/scribe/pull/700))
+- Improve empty checks in OpenAPI spec generation ([#712](https://github.com/knuckleswtf/scribe/pull/712))
+- Don't export auth.use_value to Postman ([6a9d51b3a2](https://github.com/knuckleswtf/scribe/commit/6a9d51b3a215a89e8b8af47f796ffaa10993c171))
+
 # 4.22.0 (1 July 2023)
 ## Added
 - Make included package attributes extensible ([#680](https://github.com/knuckleswtf/scribe/pull/680))

+ 1 - 1
src/Scribe.php

@@ -9,7 +9,7 @@ use Symfony\Component\HttpFoundation\Request;
 
 class Scribe
 {
-    public const VERSION = '4.22.0';
+    public const VERSION = '4.23.0';
 
     /**
      * Specify a callback that will be executed just before a response call is made