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.3
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.4
Choose a head ref
  • 3 commits
  • 2 files changed
  • 3 contributors

Commits on Jul 25, 2023

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed Jul 25, 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
    00f88a7 View commit details
  2. Verified

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

Commits on Aug 2, 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
    217e93a View commit details
Showing with 7 additions and 2 deletions.
  1. +6 −1 CHANGELOG.md
  2. +1 −1 src/Commands/Concerns/InstallsRoadRunnerDependencies.php
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Release Notes

## [Unreleased](https://github.com/laravel/octane/compare/v2.0.2...2.x)
## [Unreleased](https://github.com/laravel/octane/compare/v2.0.3...2.x)

## [v2.0.3](https://github.com/laravel/octane/compare/v2.0.2...v2.0.3) - 2023-07-20

- Fixes "Incorrect header size" by [@nunomaduro](https://github.com/nunomaduro) in https://github.com/laravel/octane/pull/719
- Fix handleSignal deprecation warning by [@sy-records](https://github.com/sy-records) in https://github.com/laravel/octane/pull/722

## [v2.0.2](https://github.com/laravel/octane/compare/v2.0.1...v2.0.2) - 2023-06-21

2 changes: 1 addition & 1 deletion src/Commands/Concerns/InstallsRoadRunnerDependencies.php
Original file line number Diff line number Diff line change
@@ -90,7 +90,7 @@ protected function findComposer()
$composerPath = (new ExecutableFinder())->find('composer');
}

return '"'.$phpPath.'" '.$composerPath;
return '"'.$phpPath.'" "'.$composerPath.'"';
}

/**