Skip to content

Commit 05cca77

Browse files
authored
Merge pull request #177 from Gustavinho/release/2.4.1
Release/2.4.1
2 parents 0b0c792 + b7b1d94 commit 05cca77

31 files changed

+12793
-2610
lines changed

.github/workflows/run-tests.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
- dev
88
- release/**
99
- feature/**
10+
- bug/**
1011
- tests/**
1112
pull_request:
1213
branches:
@@ -24,15 +25,23 @@ jobs:
2425
fail-fast: true
2526
matrix:
2627
os: [ubuntu-latest]
27-
php: [7.3, 7.4, 8.0]
28-
laravel: [7.*, 8.*]
28+
php: [7.3, 7.4, 8.0, 8.1]
29+
laravel: [7.*, 8.*, 9.*]
2930
stability: [prefer-stable]
3031
include:
32+
- laravel: 9.*
33+
testbench: ^7.0
3134
- laravel: 8.*
3235
testbench: ^6.6
3336
- laravel: 7.*
3437
testbench: ^5.0
35-
38+
exclude:
39+
- laravel: 7.*
40+
php: 8.1
41+
- laravel: 9.*
42+
php: 7.3
43+
- laravel: 9.*
44+
php: 7.4
3645
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} - Testbench ${{ matrix.testbench }}
3746

3847
steps:

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
# Changelog
2+
## [2.4.1] - 2023-01-02
3+
### Fixed
4+
- Fixed a bug displaying error alerts as success
5+
- Fixed a bug with XSS injections
6+
- Fixed a bug using dynamic tailwindcss classes
7+
- Fixed a bug resetting the value with the the inline editing
8+
- Removed `doc` files from this repo
29
## [2.4.0] - 2021-09-29
310
### Added
411
- Inline editing component

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
![Laravel views](doc/laravel-views.png)
1+
![Laravel views](https://laravelviews.com/img/docs/table.png)
22

33
# Laravel views
44

@@ -27,9 +27,15 @@ Here's the plan for what's coming:
2727
- Add links as a UI helpers
2828

2929
## Upgrade guide
30+
### From 2.4.0 to 2.4.1
31+
**Publish blade componentes**
32+
33+
Some of the internal components have changed, if you have published these components before to customize them, you will not have them up to date, unfourtunately you need to publish them again with `php artisan vendor:publish --tag=views --provider='LaravelViews\LaravelViewsServiceProvider'` and customize them as you need.
34+
3035
### From 2.2 to 2.3
3136
**Cached views**
3237

38+
3339
The blade directives have changed, you need to clear the cached views with `php artisan view:clear`
3440

3541
**Public assets**

composer.json

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,14 @@
1919
}
2020
},
2121
"require-dev": {
22-
"phpunit/phpunit": "7.0.*|8.5.*|9.5.*",
23-
"orchestra/testbench": "4.*|5.*|6.*",
22+
"phpunit/phpunit": "9.5.*",
2423
"laravel/legacy-factories": "^1.1",
25-
"spatie/laravel-ray": "^1.12",
26-
"brianium/paratest": "^6.3",
27-
"nunomaduro/collision": "^5.3",
28-
"nunomaduro/larastan": "^0.7.6"
24+
"nunomaduro/larastan": "^0.7.6",
25+
"orchestra/testbench": "^7.0"
2926
},
3027
"scripts": {
31-
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
28+
"test": "./vendor/bin/phpunit",
29+
"test:verbose": "composer run test -- --testdox",
3230
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
3331
"larastan": "./vendor/bin/phpstan analyse"
3432
},

0 commit comments

Comments
 (0)