Skip to content

Commit c8ec9d4

Browse files
committed
Merge branch 'master' of github.com:laravel/laravel
2 parents e1b8847 + bc435e7 commit c8ec9d4

File tree

4 files changed

+62
-8
lines changed

4 files changed

+62
-8
lines changed

.gitignore

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,9 @@
33
/public/storage
44
/storage/*.key
55
/vendor
6-
/.idea
7-
/.vscode
8-
/nbproject
9-
/.vagrant
6+
.env
7+
.phpunit.result.cache
108
Homestead.json
119
Homestead.yaml
1210
npm-debug.log
1311
yarn-error.log
14-
.env
15-
.phpunit.result.cache

CHANGELOG.md

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,62 @@
11
# Release Notes
22

3+
## [v5.7.15 (2018-11-22)](https://github.com/laravel/laravel/compare/v5.7.13...v5.7.15)
4+
5+
### Added
6+
- Add asset url configuration option ([63a4039](https://github.com/laravel/laravel/commit/63a403912362654962654e30cec695128d418987))
7+
- Add `log_channel` configuration option ([#4855](https://github.com/laravel/laravel/pull/4855))
8+
- Add env variable for compiled view path ([5ea6fe1](https://github.com/laravel/laravel/commit/5ea6fe18a89c3d0f5c0860d3777bff97510577b5))
9+
- Use env superglobal ([071a05b](https://github.com/laravel/laravel/commit/071a05bd76ee7eca0ea15ea107b49bcbad9af925))
10+
- Add date_equals validation message ([#4863](https://github.com/laravel/laravel/pull/4863))
11+
12+
### Changed
13+
- Remove lodash dependency when auto registering Vue components ([#4853](https://github.com/laravel/laravel/pull/4853))
14+
- Clean up auto register Vue components ([#4854](https://github.com/laravel/laravel/pull/4854))
15+
- Normalize `composer.json` ([#4856](https://github.com/laravel/laravel/pull/4856))
16+
- Update `Kernel.php` ([#4861](https://github.com/laravel/laravel/pull/4861))
17+
- Change variable name ([03ac80b](https://github.com/laravel/laravel/commit/03ac80b779be0f93e6f9d2dae56533d1e5569c35))
18+
19+
20+
## [v5.7.13 (2018-11-07)](https://github.com/laravel/laravel/compare/v5.7.0...v5.7.13)
21+
22+
### Added
23+
- Adding papertrail log channel option ([#4749](https://github.com/laravel/laravel/pull/4749))
24+
- Add missing Mailgun 'endpoint' option ([#4752](https://github.com/laravel/laravel/pull/4752))
25+
- Add new Stripe webhook config values ([#4803](https://github.com/laravel/laravel/pull/4803))
26+
- Add message for UUID validation rule ([#4834](https://github.com/laravel/laravel/pull/4834))
27+
- Introduce sqlite foreign_key_constraints config option ([#4838](https://github.com/laravel/laravel/pull/4838))
28+
- Auto register Vue components ([#4843](https://github.com/laravel/laravel/pull/4843))
29+
30+
### Changed
31+
- Updated `QUEUE_DRIVER` env var to `QUEUE_CONNECTION` in `phpunit.xml` ([#4746](https://github.com/laravel/laravel/pull/4746))
32+
- Update VerificationController ([#4756](https://github.com/laravel/laravel/pull/4756))
33+
- Seeded users should be verified by default ([#4761](https://github.com/laravel/laravel/pull/4761))
34+
- Preserve colors ([#4763](https://github.com/laravel/laravel/pull/4763))
35+
- Set logs to daily by default ([#4767](https://github.com/laravel/laravel/pull/4767))
36+
- Change default days to 14 for daily channel ([cd8dd76](https://github.com/laravel/laravel/commit/cd8dd76b67fb3ae9984b1477df4a9a3f0131ca87))
37+
- Check if register route is enabled ([#4775](https://github.com/laravel/laravel/pull/4775))
38+
- Update lang attribute ([#4781](https://github.com/laravel/laravel/pull/4781))
39+
- Changes the translation for "required_with_all" validation rule ([#4782](https://github.com/laravel/laravel/pull/4782))
40+
- Update database config ([#4783](https://github.com/laravel/laravel/pull/4783))
41+
- Removing double arrow alignments ([#4830](https://github.com/laravel/laravel/pull/4830))
42+
- Update vue version to 2.5.17 ([#4831](https://github.com/laravel/laravel/pull/4831))
43+
- Use env value for redis queue name ([#4837](https://github.com/laravel/laravel/pull/4837))
44+
45+
### Fixed
46+
- Update `HttpKernel` to use `Authenticate` middleware under `App` namespace ([#4757](https://github.com/laravel/laravel/pull/4757))
47+
- Persist the `/storage/framework/cache/data` directory ([#4760](https://github.com/laravel/laravel/pull/4760))
48+
- Make app path stream safe ([#4777](https://github.com/laravel/laravel/pull/4777))
49+
- Use correct facade ([#4780](https://github.com/laravel/laravel/pull/4780))
50+
- Revert [#4744](https://github.com/laravel/laravel/pull/4780) ([#4791](https://github.com/laravel/laravel/pull/4791))
51+
- Don't redirect for api calls ([#4805](https://github.com/laravel/laravel/pull/4805))
52+
- Fix bad font size render on link ([#4822](https://github.com/laravel/laravel/pull/4822))
53+
- Changed syntax for validation ([#4820](https://github.com/laravel/laravel/pull/4820))
54+
- Fix running mix tasks error ([#4832](https://github.com/laravel/laravel/pull/4832))
55+
56+
### Removed
57+
- Remove X-UA-Compatible meta tag ([#4748](https://github.com/laravel/laravel/pull/4748))
58+
59+
360
## [v5.7.0 (2018-09-04)](https://github.com/laravel/laravel/compare/v5.6.33...v5.7.0)
461

562
### Added

resources/js/app.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ window.Vue = require('vue');
1717
* Eg. ./components/ExampleComponent.vue -> <example-component></example-component>
1818
*/
1919

20-
Vue.component('example-component', require('./components/ExampleComponent.vue'));
21-
2220
// const files = require.context('./', true, /\.vue$/i)
2321
// files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key)))
2422

23+
Vue.component('example-component', require('./components/ExampleComponent.vue'));
24+
2525
/**
2626
* Next, we will create a fresh Vue application instance and attach it to
2727
* the page. Then, you may begin adding components to this application

resources/lang/en/validation.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@
108108
'string' => 'The :attribute must be :size characters.',
109109
'array' => 'The :attribute must contain :size items.',
110110
],
111+
'starts_with' => 'The :attribute must start with one of the following: :values',
111112
'string' => 'The :attribute must be a string.',
112113
'timezone' => 'The :attribute must be a valid zone.',
113114
'unique' => 'The :attribute has already been taken.',

0 commit comments

Comments
 (0)