Skip to content

Commit 3a158a8

Browse files
committed
Updates
### Added - Parallel testing ### Changed - Updated locks - Update to Laravel commit: 5808129a1f702f973c7c31203d16db2066bd9030
1 parent 5a0f796 commit 3a158a8

File tree

10 files changed

+1330
-1085
lines changed

10 files changed

+1330
-1085
lines changed

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file.
33

44
## [Unreleased]
55

6+
## [8.0.4] - 2021-04-05
7+
8+
### Added
9+
10+
- Parallel testing
11+
12+
### Changed
13+
14+
- Updated locks
15+
- Update to Laravel commit: 5808129a1f702f973c7c31203d16db2066bd9030
16+
617
## [8.0.3] - 2021-02-20
718

819
### Added
@@ -423,7 +434,8 @@ Started from scratch with a blank Laravel 7.* installation. This release is not
423434
- Fix yarn tests
424435
- Fix: Socially logged in users get assigned the default role
425436

426-
[Unreleased]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.3...development
437+
[Unreleased]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.4...development
438+
[8.0.4]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.3...v8.0.4
427439
[8.0.3]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.2...v8.0.3
428440
[8.0.2]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.1...v8.0.2
429441
[8.0.1]: https://github.com/rappasoft/laravel-boilerplate/compare/v8.0.0...v8.0.1

README.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,6 @@ Thank you for considering contributing to the Laravel Boilerplate project! Pleas
4141

4242
If you discover a security vulnerability within this boilerplate, please send an e-mail to Anthony Rappa at [email protected], or create a pull request if possible. All security vulnerabilities will be promptly addressed.
4343

44-
### Donations
45-
46-
If you would like to help the continued efforts of this project, any size [donations](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=JJWUZ4E9S9SFG&lc=US&item_name=Laravel%205%20Boilerplate&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donateCC_LG%2egif%3aNonHosted) are welcomed and highly appreciated. Please also consider [sponsoring](https://github.com/sponsors/rappasoft) this project, it would be a huge help.
47-
4844
### License
4945

5046
MIT: [http://anthony.mit-license.org](http://anthony.mit-license.org)

app/Http/Middleware/TrimStrings.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ class TrimStrings extends Middleware
1515
* @var array
1616
*/
1717
protected $except = [
18+
'current_password',
1819
'password',
1920
'password_confirmation',
2021
];

composer.json

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -30,27 +30,18 @@
3030
"tabuna/breadcrumbs": "^2.2"
3131
},
3232
"require-dev": {
33-
"roave/security-advisories": "dev-master",
3433
"barryvdh/laravel-debugbar": "^3.2",
3534
"barryvdh/laravel-ide-helper": "^2.6",
35+
"brianium/paratest": "^6.2",
3636
"codedungeon/phpunit-result-printer": "^0.29",
3737
"facade/ignition": "^2.5",
38-
"friendsofphp/php-cs-fixer": "^2.16",
3938
"fakerphp/faker": "^1.9.1",
39+
"friendsofphp/php-cs-fixer": "^2.16",
4040
"laravel/sail": "^1.0.1",
4141
"mockery/mockery": "^1.4.2",
4242
"nunomaduro/collision": "^5.0",
43-
"phpunit/phpunit": "^9.3.3"
44-
},
45-
"config": {
46-
"optimize-autoloader": true,
47-
"preferred-install": "dist",
48-
"sort-packages": true
49-
},
50-
"extra": {
51-
"laravel": {
52-
"dont-discover": []
53-
}
43+
"phpunit/phpunit": "^9.3.3",
44+
"roave/security-advisories": "dev-master"
5445
},
5546
"autoload": {
5647
"psr-4": {
@@ -64,8 +55,6 @@
6455
"Tests\\": "tests/"
6556
}
6657
},
67-
"minimum-stability": "dev",
68-
"prefer-stable": true,
6958
"scripts": {
7059
"post-autoload-dump": [
7160
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump",
@@ -97,8 +86,20 @@
9786
"composer clear-all",
9887
"composer cache-all"
9988
],
100-
"test": "vendor/bin/phpunit",
89+
"test": "@php artisan test --parallel",
10190
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
10291
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
103-
}
92+
},
93+
"extra": {
94+
"laravel": {
95+
"dont-discover": []
96+
}
97+
},
98+
"config": {
99+
"optimize-autoloader": true,
100+
"preferred-install": "dist",
101+
"sort-packages": true
102+
},
103+
"minimum-stability": "dev",
104+
"prefer-stable": true
104105
}

0 commit comments

Comments
 (0)