Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Laravel

on:
push:
branches: ['master']
branches: ['laravel-12.x']
pull_request:
branches: ['master']
branches: ['laravel-12.x']

jobs:
laravel-tests:
Expand All @@ -13,7 +13,7 @@ jobs:
steps:
- uses: shivammathur/setup-php@15c43e89cdef867065b0213be354c2841860869e
with:
php-version: '8.2'
php-version: '8.3'
- uses: actions/checkout@v4
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
Expand Down
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [1.3.21](https://github.com/justdlabs/inertia.ts/compare/v1.3.20...v1.3.21) (2025-03-03)

## [1.3.20](https://github.com/justdlabs/inertia.ts/compare/v1.3.19...v1.3.20) (2025-03-03)


### Bug Fixes

* bump package ([8a31e34](https://github.com/justdlabs/inertia.ts/commit/8a31e346a7d6c0361e614ea8d84a4852301646fb))

## [1.3.19](https://github.com/justdlabs/inertia.ts/compare/v1.3.18...v1.3.19) (2025-03-03)

## [1.3.18](https://github.com/justdlabs/inertia.ts/compare/v1.3.17...v1.3.18) (2025-03-03)

## [1.3.17](https://github.com/justdlabs/inertia.ts/compare/v1.3.16...v1.3.17) (2025-02-14)

## [1.3.16](https://github.com/justdlabs/inertia.ts/compare/v1.3.15...v1.3.16) (2025-02-07)
Expand Down
Binary file modified bun.lockb
Binary file not shown.
7 changes: 3 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
],
"license": "MIT",
"require": {
"php": "^8.2",
"php": "^8.3",
"inertiajs/inertia-laravel": "^2.0",
"laravel/framework": "^11.9",
"laravel/framework": "^12.0",
"laravel/sanctum": "^4.0",
"laravel/tinker": "^2.10",
"spatie/laravel-data": "^4.7",
Expand All @@ -24,8 +24,7 @@
"laravel/sail": "^1.26",
"mockery/mockery": "^1.6",
"nunomaduro/collision": "^8.0",
"pestphp/pest": "^2.0",
"pestphp/pest-plugin-laravel": "^2.0"
"pestphp/pest": "^3.7"
},
"autoload": {
"psr-4": {
Expand Down
Loading