Skip to content

Commit c7f5b78

Browse files
committed
Merge branch 'release/v.5.3.7'
2 parents 63c7875 + ffdbb6e commit c7f5b78

File tree

14 files changed

+2699
-14712
lines changed

14 files changed

+2699
-14712
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Before you spend time on building something, please share your plans/ideas as an
44

55
Please follow this steps when you make a PR:
66

7-
1. Fork the project ( https://github.com/rappasoft/laravel-5-boilerplate/fork )
7+
1. Fork the project ( https://github.com/rappasoft/laravel-boilerplate/fork )
88
2. Create your feature branch (`git checkout -b my-new-feature`)
99
3. Commit your changes (`git commit -am 'Add some feature'`)
1010
4. Push to the branch (`git push origin my-new-feature`)

CHANGELOG.md

Lines changed: 98 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
## [Unreleased]
5+
6+
## 5.3.7 - 2019-08-21
7+
### Added
8+
- Actual changelog
9+
10+
### Changed
11+
- Repository name since 6.0 is about to release
12+
- Upgrade to laravel commit bb433725483803a27f21d3b21317072610bc3e9c
13+
14+
## 5.3.6 - 2019-06-28
15+
### Changed
16+
- Update to Laravel commit ebc6f6e2c794b07c6d432483fd654aebf2ffe222
17+
- Update frontend dependencies
18+
19+
## 5.3.5 - 2019-05-03
20+
### Changed
21+
- Fix jQuery vulnerability.
22+
23+
## 5.3.4 - 2019-04-29
24+
### Added
25+
- Added demo mode that anyone can use to give demos of their application without worrying about users altering data.
26+
27+
## 5.3.3 - 2019-04-28
28+
### Added
29+
- Added shouldDiscoverEvents but default to false
30+
- Add missing tooltip call to plugins.js
31+
32+
### Changed
33+
- Update Dutch language files
34+
- Upgrade to Laravel commit: 3995828c13ddca61dec45b8f9511a669cc90a15c
35+
- Composer update
36+
- Default send confirmation email on new users to off since confirmed is defaulted to on
37+
- Move log viewer links under isAdmin
38+
- Execute SubstituteBindings after LocaleMiddleware
39+
40+
### Fixed
41+
- SESSION_ENCRYPT env wasn’t hooked up to session config
42+
- Fix Google analytics add on
43+
- Fix redis default in env file
44+
45+
## 5.3.2 - 2019-03-31
46+
### Changed
47+
- Replace simple line icons with font awesome
48+
- Update and run php-cs-fixer
49+
50+
## 5.3.1 - 2019-03-31
51+
### Changed
52+
- PR: https://github.com/rappasoft/laravel-boilerplate/pull/1221
53+
54+
## 5.3.0 - 2019-03-30
55+
### Added
56+
- Add new ReportableException class to throw when you want it to be logged, one of the two can be extended to add new exceptions that you either do or do not want logged. Both still redirect with the flash message.
57+
- Added optional captcha to contact form
58+
- Add laravel auditing to certain models, UI is up to person creating the project
59+
- Include redis by default
60+
61+
### Changed
62+
- Upgrade to Laravel 5.8
63+
- Upgrade to phpunit 8.0
64+
- Upgrade to phpunit-results-printer 0.26.1
65+
- Upgrade to log viewer 4.7
66+
- Upgrade to nocaptcha 9.*
67+
- Upgrade to socialite 4.1
68+
- Upgrade to spatie/permission to 2.36
69+
- Upgrade to Laravel Dump Server 1.2
70+
- Upgrade to debugbar 3.2
71+
- Upgrade to ide-helper 2.6
72+
- Upgrade password validation rule to fix ca-cert.json issue
73+
- Upgrade SweetAlert
74+
- Upgrade Bootstrap
75+
- Update to Laravel commit: 3886012c0f3ad5653d9d5138530f3fc4276eaf93
76+
- Use assertStringContainsString instead of assertContains to make all current tests pass
77+
- Laravel 5.8 uses bigIncrements as default for the users table so the foreign keys had to be converted to bigIntegers
78+
- Set resource root in webpack
79+
- Don’t report GeneralException errors
80+
- Replace recaptcha with invisible recaptcha
81+
- Updated single login to use features with AuthenticateMiddleware to work with every driver as well as logout users on other devices
82+
- Change Clear Session button to be driver agnostic, sets a flag that triggers part of the web middleware to force the user to log out
83+
- Load helpers with service provider instead of composer which allows better organization, give all existing helper files a Helper postfix
84+
- Use casts property on User model and refactor
85+
86+
### Removed
87+
- Remove BladeServiceProvider and register in the boot method of AppServiceProvider as per 5.8 docs
88+
- Remove webpatser/laravel-uuid and convert UUID functions to Laravel 5.8’s built in UUID package from Ramsey
89+
- Remove unneeded laravel-blade directives package
90+
- Remove withInput parameter in GeneralException since it is covered by the dontReport property of the parent class
91+
- Remove Session model because it’s only good for one driver and the user can create it if they need it
92+
- Remove boilerplate html from CoreUI
93+
94+
### Fixed
95+
- Fix yarn tests
96+
- Fix: Socially logged in users get assigned the default role
97+
98+
[Unreleased]: https://github.com/rappasoft/laravel-boilerplate/compare/v5.3.7...HEAD

app/Http/Kernel.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ class Kernel extends HttpKernel
1717
* @var array
1818
*/
1919
protected $middleware = [
20+
\App\Http\Middleware\TrustProxies::class,
2021
\App\Http\Middleware\CheckForMaintenanceMode::class,
2122
\App\Http\Middleware\CheckForDemoMode::class,
2223
\Illuminate\Foundation\Http\Middleware\ValidatePostSize::class,
2324
\App\Http\Middleware\TrimStrings::class,
2425
\Illuminate\Foundation\Http\Middleware\ConvertEmptyStringsToNull::class,
25-
\App\Http\Middleware\TrustProxies::class,
2626
];
2727

2828
/**

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "rappasoft/laravel-5-boilerplate",
2+
"name": "rappasoft/laravel-boilerplate",
33
"type": "project",
44
"description": "The Laravel Boilerplate Project.",
55
"keywords": [

0 commit comments

Comments
 (0)