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: v1.0.6
Choose a base ref
...
head repository: laravel/octane
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.0.7
Choose a head ref
  • 2 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 23, 2021

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    911baa6 View commit details

Commits on Jun 29, 2021

  1. Update CHANGELOG.md

    driesvints committed Jun 29, 2021

    Verified

    This commit was signed with the committer’s verified signature.
    driesvints Dries Vints
    Copy the full SHA
    7697ce1 View commit details
Showing with 8 additions and 2 deletions.
  1. +7 −1 CHANGELOG.md
  2. +1 −1 src/Commands/StartRoadRunnerCommand.php
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Release Notes

## [Unreleased](https://github.com/laravel/octane/compare/v1.0.6...1.x)
## [Unreleased](https://github.com/laravel/octane/compare/v1.0.7...1.x)


## [v1.0.7 (2021-06-29)](https://github.com/laravel/octane/compare/v1.0.6...v1.0.7)

### Fixed
- Fix config key for roadrunner `http.middlware` ([#333](https://github.com/laravel/octane/pull/333))


## [v1.0.6 (2021-06-22)](https://github.com/laravel/octane/compare/v1.0.5...v1.0.6)
2 changes: 1 addition & 1 deletion src/Commands/StartRoadRunnerCommand.php
Original file line number Diff line number Diff line change
@@ -83,7 +83,7 @@ public function handle(ServerProcessInspector $inspector, ServerStateFile $serve
'-o', 'rpc.listen=tcp://'.$this->option('host').':'.$this->rpcPort(),
'-o', 'http.pool.supervisor.exec_ttl='.$this->maxExecutionTime(),
'-o', 'http.static.dir=public',
'-o', 'http.middleware='.config('octane.swoole.http_middleware', 'static'),
'-o', 'http.middleware='.config('octane.roadrunner.http_middleware', 'static'),
'-o', 'logs.mode=production',
'-o', app()->environment('local') ? 'logs.level=debug' : 'logs.level=warning',
'-o', 'logs.output=stdout',