diff --git a/.gitignore b/.gitignore index 169c5ee5..59e8f458 100644 --- a/.gitignore +++ b/.gitignore @@ -3,13 +3,9 @@ /public/storage /storage/*.key /vendor -/.idea -/.vscode -/nbproject -/.vagrant +.env +.phpunit.result.cache Homestead.json Homestead.yaml npm-debug.log yarn-error.log -.env -.phpunit.result.cache diff --git a/CHANGELOG.md b/CHANGELOG.md index 59c0c4ea..f5d5136a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,62 @@ # Release Notes +## [v5.7.15 (2018-11-22)](https://github.com/laravel/laravel/compare/v5.7.13...v5.7.15) + +### Added +- Add asset url configuration option ([63a4039](https://github.com/laravel/laravel/commit/63a403912362654962654e30cec695128d418987)) +- Add `log_channel` configuration option ([#4855](https://github.com/laravel/laravel/pull/4855)) +- Add env variable for compiled view path ([5ea6fe1](https://github.com/laravel/laravel/commit/5ea6fe18a89c3d0f5c0860d3777bff97510577b5)) +- Use env superglobal ([071a05b](https://github.com/laravel/laravel/commit/071a05bd76ee7eca0ea15ea107b49bcbad9af925)) +- Add date_equals validation message ([#4863](https://github.com/laravel/laravel/pull/4863)) + +### Changed +- Remove lodash dependency when auto registering Vue components ([#4853](https://github.com/laravel/laravel/pull/4853)) +- Clean up auto register Vue components ([#4854](https://github.com/laravel/laravel/pull/4854)) +- Normalize `composer.json` ([#4856](https://github.com/laravel/laravel/pull/4856)) +- Update `Kernel.php` ([#4861](https://github.com/laravel/laravel/pull/4861)) +- Change variable name ([03ac80b](https://github.com/laravel/laravel/commit/03ac80b779be0f93e6f9d2dae56533d1e5569c35)) + + +## [v5.7.13 (2018-11-07)](https://github.com/laravel/laravel/compare/v5.7.0...v5.7.13) + +### Added +- Adding papertrail log channel option ([#4749](https://github.com/laravel/laravel/pull/4749)) +- Add missing Mailgun 'endpoint' option ([#4752](https://github.com/laravel/laravel/pull/4752)) +- Add new Stripe webhook config values ([#4803](https://github.com/laravel/laravel/pull/4803)) +- Add message for UUID validation rule ([#4834](https://github.com/laravel/laravel/pull/4834)) +- Introduce sqlite foreign_key_constraints config option ([#4838](https://github.com/laravel/laravel/pull/4838)) +- Auto register Vue components ([#4843](https://github.com/laravel/laravel/pull/4843)) + +### Changed +- Updated `QUEUE_DRIVER` env var to `QUEUE_CONNECTION` in `phpunit.xml` ([#4746](https://github.com/laravel/laravel/pull/4746)) +- Update VerificationController ([#4756](https://github.com/laravel/laravel/pull/4756)) +- Seeded users should be verified by default ([#4761](https://github.com/laravel/laravel/pull/4761)) +- Preserve colors ([#4763](https://github.com/laravel/laravel/pull/4763)) +- Set logs to daily by default ([#4767](https://github.com/laravel/laravel/pull/4767)) +- Change default days to 14 for daily channel ([cd8dd76](https://github.com/laravel/laravel/commit/cd8dd76b67fb3ae9984b1477df4a9a3f0131ca87)) +- Check if register route is enabled ([#4775](https://github.com/laravel/laravel/pull/4775)) +- Update lang attribute ([#4781](https://github.com/laravel/laravel/pull/4781)) +- Changes the translation for "required_with_all" validation rule ([#4782](https://github.com/laravel/laravel/pull/4782)) +- Update database config ([#4783](https://github.com/laravel/laravel/pull/4783)) +- Removing double arrow alignments ([#4830](https://github.com/laravel/laravel/pull/4830)) +- Update vue version to 2.5.17 ([#4831](https://github.com/laravel/laravel/pull/4831)) +- Use env value for redis queue name ([#4837](https://github.com/laravel/laravel/pull/4837)) + +### Fixed +- Update `HttpKernel` to use `Authenticate` middleware under `App` namespace ([#4757](https://github.com/laravel/laravel/pull/4757)) +- Persist the `/storage/framework/cache/data` directory ([#4760](https://github.com/laravel/laravel/pull/4760)) +- Make app path stream safe ([#4777](https://github.com/laravel/laravel/pull/4777)) +- Use correct facade ([#4780](https://github.com/laravel/laravel/pull/4780)) +- Revert [#4744](https://github.com/laravel/laravel/pull/4780) ([#4791](https://github.com/laravel/laravel/pull/4791)) +- Don't redirect for api calls ([#4805](https://github.com/laravel/laravel/pull/4805)) +- Fix bad font size render on link ([#4822](https://github.com/laravel/laravel/pull/4822)) +- Changed syntax for validation ([#4820](https://github.com/laravel/laravel/pull/4820)) +- Fix running mix tasks error ([#4832](https://github.com/laravel/laravel/pull/4832)) + +### Removed +- Remove X-UA-Compatible meta tag ([#4748](https://github.com/laravel/laravel/pull/4748)) + + ## [v5.7.0 (2018-09-04)](https://github.com/laravel/laravel/compare/v5.6.33...v5.7.0) ### Added diff --git a/resources/js/app.js b/resources/js/app.js index 24b5dbf7..21796134 100644 --- a/resources/js/app.js +++ b/resources/js/app.js @@ -17,11 +17,11 @@ window.Vue = require('vue'); * Eg. ./components/ExampleComponent.vue -> */ -Vue.component('example-component', require('./components/ExampleComponent.vue')); - // const files = require.context('./', true, /\.vue$/i) // files.keys().map(key => Vue.component(key.split('/').pop().split('.')[0], files(key))) +Vue.component('example-component', require('./components/ExampleComponent.vue')); + /** * Next, we will create a fresh Vue application instance and attach it to * the page. Then, you may begin adding components to this application diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 6c4571c3..8ab929cb 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -108,6 +108,7 @@ 'string' => 'The :attribute must be :size characters.', 'array' => 'The :attribute must contain :size items.', ], + 'starts_with' => 'The :attribute must start with one of the following: :values', 'string' => 'The :attribute must be a string.', 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.',