Skip to content

Commit 8d2e3ce

Browse files
committed
Merge branch 'hotfix/1.8.1'
2 parents d8e99d3 + c390b76 commit 8d2e3ce

File tree

4 files changed

+9
-23
lines changed

4 files changed

+9
-23
lines changed

.env.example

+3-4
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ APP_NAME=brandonclothier.me
1515
APP_ENV=local
1616
APP_KEY=
1717
APP_DEBUG=true
18-
APP_LOG_LEVEL=debug
1918
APP_URL=http://localhost
20-
APP_VERSION=1.0.0
19+
APP_VERSION=1.8.1
2120
APP_LOCALE=en
2221
APP_TIMEZONE=America/Kentucky/Monticello
2322
# Application encryption cipher.
@@ -27,9 +26,9 @@ APP_HASH_DRIVER=bcrypt
2726

2827
# Application logging configuration.
2928
LOG_CHANNEL=single
30-
LOG_LEVEL=${APP_LOG_LEVEL}
29+
LOG_LEVEL=debug
3130
LOG_DAILY_LEVEL=debug
32-
LOG_STACK_DRIVERS=single,slack,errorlog,syslog
31+
LOG_STACK_DRIVERS=single,slack
3332
LOG_SLACK_WEBHOOK_URL=
3433
LOG_SLACK_LEVEL=critical
3534
LOG_SLACK_USERNAME="brandonclothier.me Error"

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@
22

33
## brandonclothier.me
44

5+
### 1.8.1 March 11, 2018
6+
7+
- [[3a6c19e](https://github.com/brandon14/brandonclothier.me/commit/3a6c19e4e1847b586400df0a0fb866b9b3e94ec2)] hotfix/1.8.1: Remove old logging configs [Brandon Clothier] on Sun, 11 Mar 2018 22:57:00 -0400
8+
59
### 1.8.0 March 11, 2018
610

11+
- [[3984bf7](https://github.com/brandon14/brandonclothier.me/commit/3984bf764e342315adac28abee7d988ba0ffa797)] release/1.8.0 [Brandon Clothier] on Sun, 11 Mar 2018 20:54:29 -0400
712
- [[f051e86](https://github.com/brandon14/brandonclothier.me/commit/f051e86c5daaeb64f8f27305c6c31a1c80b97be2)] feature/laravel5.6: Update to Laravel 5.6 [Brandon Clothier] on Sun, 11 Mar 2018 20:36:35 -0400
813

914
### 1.7.0 February 3rd, 2018
@@ -13,7 +18,6 @@
1318
- [[af5ae4c](https://github.com/brandon14/brandonclothier.me/commit/af5ae4cc8672d276c8366c640bfb4af77e9de09b)] feature/update-asset-build: Add sass-lint [Brandon Clothier] on Sat, 3 Feb 2018 21:37:20 -0500
1419
- [[e869146](https://github.com/brandon14/brandonclothier.me/commit/e869146b2fef731cbce6a2e9df1c136347b8990f)] feature/update-asset-build: Allow assets to be built to a separate dir [Brandon Clothier] on Sat, 3 Feb 2018 21:03:22 -0500
1520

16-
1721
### 1.6.0 October 21st, 2017
1822

1923
- [[efeb987](https://github.com/brandon14/brandonclothier.me/commit/efeb98755a8d5102dab5e4fb04f52104c18751cd)] feature: Remove XSRF cookie [Brandon Clothier] on Sat, 21 Oct 2017 23:44:51 -0400

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "brandon14/brandonclothier.me",
33
"description": "A personal website for Brandon Clothier.",
4-
"version": "v1.8.0",
4+
"version": "v1.8.1",
55
"keywords": ["website", "laravel"],
66
"license": "MIT",
77
"type": "project",

config/app.php

-17
Original file line numberDiff line numberDiff line change
@@ -183,23 +183,6 @@
183183

184184
'cipher' => env('APP_CIPHER', 'AES-256-CBC'),
185185

186-
/*
187-
|--------------------------------------------------------------------------
188-
| Logging Configuration
189-
|--------------------------------------------------------------------------
190-
|
191-
| Here you may configure the log settings for your application. Out of
192-
| the box, Laravel uses the Monolog PHP logging library. This gives
193-
| you a variety of powerful log handlers / formatters to utilize.
194-
|
195-
| Available Settings: "single", "daily", "syslog", "errorlog"
196-
|
197-
*/
198-
199-
'log' => env('APP_LOG', 'single'),
200-
201-
'log_level' => env('APP_LOG_LEVEL', 'debug'),
202-
203186
/*
204187
|--------------------------------------------------------------------------
205188
| Autoloaded Service Providers

0 commit comments

Comments
 (0)