Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: laravel/octane
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.0.0
Choose a base ref
...
head repository: laravel/octane
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.0.1
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on May 16, 2023

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed May 16, 2023

    Unverified

    This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
    Copy the full SHA
    3a9f238 View commit details

Commits on May 26, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0a3523e View commit details
Showing with 11 additions and 2 deletions.
  1. +8 −1 CHANGELOG.md
  2. +3 −1 src/Commands/StartCommand.php
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes

## [Unreleased](https://github.com/laravel/octane/compare/v1.5.6...2.x)
## [Unreleased](https://github.com/laravel/octane/compare/v2.0.0...2.x)

## [v2.0.0](https://github.com/laravel/octane/compare/v1.5.6...v2.0.0) - 2023-05-16

- Fix log level by @masterjus in https://github.com/laravel/octane/pull/451
- Update InteractsWithServers.php by @ghostzero in https://github.com/laravel/octane/pull/520
- Adds support for RoadRunner v3 and updates dependencies by @nunomaduro in https://github.com/laravel/octane/pull/690
- Adds support for PSR-7 v2.x by @nunomaduro in https://github.com/laravel/octane/pull/694

## [v1.5.6](https://github.com/laravel/octane/compare/v1.5.5...v1.5.6) - 2023-05-16

4 changes: 3 additions & 1 deletion src/Commands/StartCommand.php
Original file line number Diff line number Diff line change
@@ -24,7 +24,8 @@ class StartCommand extends Command implements SignalableCommandInterface
{--max-requests=500 : The number of requests to process before reloading the server}
{--rr-config= : The path to the RoadRunner .rr.yaml file}
{--watch : Automatically reload the server when the application is modified}
{--poll : Use file system polling while watching in order to watch files over a network}';
{--poll : Use file system polling while watching in order to watch files over a network}
{--log-level= : Log messages at or above the specified log level}';

/**
* The command's description.
@@ -84,6 +85,7 @@ protected function startRoadRunnerServer()
'--rr-config' => $this->option('rr-config'),
'--watch' => $this->option('watch'),
'--poll' => $this->option('poll'),
'--log-level' => $this->option('log-level'),
]);
}