Skip to content

Commit d536a89

Browse files
committed
5.1.0
1 parent 790ad94 commit d536a89

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
1212

1313
### Removed
1414

15+
## 5.1.0 (25 February 2025)
16+
### Added
17+
- Support for streamed responses in response calls [790ad94e512](https://github.com/knuckleswtf/scribe/commit/790ad94e512d987feae6f0443835d8cf8de64f53)
18+
19+
### Fixed
20+
- Fixed use of `URL::useOrigin` vs `URL::forceRootURL` [956e9bf418](https://github.com/knuckleswtf/scribe/commit/956e9bf418f5fc06fe70009e476b1e8524aff5b1)
21+
1522
## 5.0.1 (20 February 2025)
1623
### Fixed
1724
- Fix bug in wrongly trying to determine required fields for array of strings [#951](https://github.com/knuckleswtf/scribe/pull/951)

src/Commands/GenerateDocumentation.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ public function bootstrap(): void
121121
// Force root URL so it works in Postman collection
122122
$baseUrl = $this->docConfig->get('base_url') ?? config('app.url');
123123

124-
/* @phpstan-ignore-next-line */
125124
try {
126125
// Renamed from forceRootUrl in Laravel 11.43 or so
127126
URL::useOrigin($baseUrl);

src/Scribe.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
class Scribe
1111
{
12-
public const VERSION = '5.0.1';
12+
public const VERSION = '5.1.0';
1313

1414
/**
1515
* Specify a callback that will be executed just before a response call is made

0 commit comments

Comments
 (0)