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/framework
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.48.2
Choose a base ref
...
head repository: laravel/framework
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10.48.3
Choose a head ref
  • 5 commits
  • 3 files changed
  • 2 contributors

Commits on Mar 12, 2024

  1. Update CHANGELOG

    driesvints authored and github-actions[bot] committed Mar 12, 2024
    Copy the full SHA
    ce7f5b1 View commit details

Commits on Mar 13, 2024

  1. Update actions version

    driesvints committed Mar 13, 2024
    Copy the full SHA
    82441c1 View commit details
  2. wip

    driesvints committed Mar 13, 2024
    Copy the full SHA
    28f2b1e View commit details
  3. wip

    driesvints committed Mar 13, 2024
    Copy the full SHA
    2d844fe View commit details

Commits on Mar 15, 2024

  1. Update version to v10.48.3

    driesvints authored and github-actions[bot] committed Mar 15, 2024
    Copy the full SHA
    5791c05 View commit details
Showing with 13 additions and 6 deletions.
  1. +4 −4 .github/workflows/tests.yml
  2. +8 −1 CHANGELOG.md
  3. +1 −1 src/Illuminate/Foundation/Application.php
8 changes: 4 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -95,9 +95,9 @@ jobs:
AWS_SECRET_ACCESS_KEY: randomSecret

- name: Store artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
name: linux-logs-${{ matrix.php }}-${{ matrix.stability }}
path: |
vendor/orchestra/testbench-core/laravel/storage/logs
!vendor/**/.gitignore
@@ -161,9 +161,9 @@ jobs:
AWS_SECRET_ACCESS_KEY: random_secret

- name: Store artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: logs
name: windows-logs-${{ matrix.php }}-${{ matrix.stability }}
path: |
vendor/orchestra/testbench-core/laravel/storage/logs
!vendor/**/.gitignore
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# Release Notes for 10.x

## [Unreleased](https://github.com/laravel/framework/compare/v10.48.1...10.x)
## [Unreleased](https://github.com/laravel/framework/compare/v10.48.2...10.x)

## [v10.48.2](https://github.com/laravel/framework/compare/v10.48.1...v10.48.2) - 2024-03-12

* [10.x] Update mockery conflict to just disallow the broken version by [@GrahamCampbell](https://github.com/GrahamCampbell) in https://github.com/laravel/framework/pull/50472
* [10.x] Conflict with specific release by [@driesvints](https://github.com/driesvints) in https://github.com/laravel/framework/pull/50473
* [10.x] Fix for attributes being escaped on Dynamic Blade Components by [@pascalbaljet](https://github.com/pascalbaljet) in https://github.com/laravel/framework/pull/50471
* [10.x] Revert PR 50403 by [@driesvints](https://github.com/driesvints) in https://github.com/laravel/framework/pull/50482

## [v10.48.1](https://github.com/laravel/framework/compare/v10.48.0...v10.48.1) - 2024-03-12

2 changes: 1 addition & 1 deletion src/Illuminate/Foundation/Application.php
Original file line number Diff line number Diff line change
@@ -40,7 +40,7 @@ class Application extends Container implements ApplicationContract, CachesConfig
*
* @var string
*/
const VERSION = '10.48.2';
const VERSION = '10.48.3';

/**
* The base path for the Laravel installation.