From f9ac0b384ac64b024dfcf277fd80daa52b941142 Mon Sep 17 00:00:00 2001 From: "Barry vd. Heuvel" Date: Mon, 20 Apr 2015 09:15:42 +0200 Subject: [PATCH 1/9] Add security contact to readme --- readme.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.md b/readme.md index a4d8d553..8765cdb9 100644 --- a/readme.md +++ b/readme.md @@ -18,6 +18,10 @@ ## Contributing Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](http://laravel.com/docs/contributions). +## Security Vulnerabilities + +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylorotwell@gmail.com. All security vulnerabilities will be promptly addressed. + ### License The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT) From 423eba968f6641c7fd7fb156c8c5e22ad3bd56e2 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Mon, 20 Apr 2015 08:15:08 -0500 Subject: [PATCH 2/9] fix email --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 8765cdb9..7caca5d2 100644 --- a/readme.md +++ b/readme.md @@ -20,7 +20,7 @@ ## Contributing ## Security Vulnerabilities -If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylorotwell@gmail.com. All security vulnerabilities will be promptly addressed. +If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylor@laravel.com. All security vulnerabilities will be promptly addressed. ### License From ee0bb122820bfadbb405a19b7b521bb11ae6870c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=A3=9E=E6=89=AC?= Date: Wed, 22 Apr 2015 17:14:32 +0800 Subject: [PATCH 3/9] Update readme.md fix downloads svg icon path --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 7caca5d2..f67a6cf7 100644 --- a/readme.md +++ b/readme.md @@ -1,7 +1,7 @@ ## Laravel PHP Framework [![Build Status](https://travis-ci.org/laravel/framework.svg)](https://travis-ci.org/laravel/framework) -[![Total Downloads](https://poser.pugx.org/laravel/framework/downloads.svg)](https://packagist.org/packages/laravel/framework) +[![Total Downloads](https://poser.pugx.org/laravel/framework/d/total.svg)](https://packagist.org/packages/laravel/framework) [![Latest Stable Version](https://poser.pugx.org/laravel/framework/v/stable.svg)](https://packagist.org/packages/laravel/framework) [![Latest Unstable Version](https://poser.pugx.org/laravel/framework/v/unstable.svg)](https://packagist.org/packages/laravel/framework) [![License](https://poser.pugx.org/laravel/framework/license.svg)](https://packagist.org/packages/laravel/framework) From 695b3ef28df04aec912ea260e26d1dd66097cfe1 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 23 Apr 2015 00:46:16 -0500 Subject: [PATCH 4/9] ignore maintenance mode `down` file --- storage/framework/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/framework/.gitignore b/storage/framework/.gitignore index 1670e906..953edb7a 100644 --- a/storage/framework/.gitignore +++ b/storage/framework/.gitignore @@ -4,3 +4,4 @@ compiled.php services.json events.scanned.php routes.scanned.php +down From a457d911395d51002274e66efbae20c5e8fd37a3 Mon Sep 17 00:00:00 2001 From: Luke Brookhart Date: Tue, 5 May 2015 16:30:56 -0400 Subject: [PATCH 5/9] Change package.json so changed to elixir will be non-breaking changes in versions only. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5595f071..8180264f 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,6 @@ "private": true, "devDependencies": { "gulp": "^3.8.8", - "laravel-elixir": "*" + "laravel-elixir": "~1.0.0" } } From cfb7275779cb05ad606d1411d05d0f68b4acbb0f Mon Sep 17 00:00:00 2001 From: Luke Brookhart Date: Wed, 6 May 2015 18:44:25 -0400 Subject: [PATCH 6/9] change version from ~1.0.0 to ^1.0.0 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8180264f..232bc7ec 100644 --- a/package.json +++ b/package.json @@ -2,6 +2,6 @@ "private": true, "devDependencies": { "gulp": "^3.8.8", - "laravel-elixir": "~1.0.0" + "laravel-elixir": "^1.0.0" } } From 5c96950816a6a7572c4c43c0842c2228c0ce49f1 Mon Sep 17 00:00:00 2001 From: Laurence Ioannou Date: Mon, 18 May 2015 23:58:09 +1000 Subject: [PATCH 7/9] Update validation.php --- resources/lang/en/validation.php | 1 + 1 file changed, 1 insertion(+) diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 764f0563..463f150f 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -70,6 +70,7 @@ "string" => "The :attribute must be :size characters.", "array" => "The :attribute must contain :size items.", ], + "string" => "The :attribute must be a string.", "unique" => "The :attribute has already been taken.", "url" => "The :attribute format is invalid.", "timezone" => "The :attribute must be a valid zone.", From c334e472196e2457c3cca127645d4b77d0d952d7 Mon Sep 17 00:00:00 2001 From: Norbert Fuksz Date: Tue, 26 May 2015 16:38:42 +0100 Subject: [PATCH 8/9] Update composer.json Clear compiled can fail after update it should be run before update --- composer.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 088060a4..72d8dd8d 100644 --- a/composer.json +++ b/composer.json @@ -29,8 +29,10 @@ "php artisan clear-compiled", "php artisan optimize" ], + "pre-update-cmd": [ + "php artisan clear-compiled" + ], "post-update-cmd": [ - "php artisan clear-compiled", "php artisan optimize" ], "post-create-project-cmd": [ From 6ab4004af9a6dce1f59278bf1134bfd7dd035907 Mon Sep 17 00:00:00 2001 From: Antony Budianto Date: Mon, 8 Jun 2015 09:50:22 +0700 Subject: [PATCH 9/9] Update latest CDN If needed. --- resources/views/app.blade.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/views/app.blade.php b/resources/views/app.blade.php index b5c6e2ca..438bef9a 100644 --- a/resources/views/app.blade.php +++ b/resources/views/app.blade.php @@ -56,7 +56,7 @@ @yield('content') - - + +