pojokcodeid.nvim-lazy/my-snippets/laravel5/CHANGELOG.md

97 lines
4.2 KiB
Markdown
Raw Normal View History

2023-01-15 00:19:37 +07:00
## 1.15.0
* Add `Eloquent-getter` and `Eloquent-setter` snippets ([@fabrola22](https://github.com/fabrola22) - [PR #36](https://github.com/onecentlin/laravel5-snippets-vscode/pull/36))
* Fix snippets
## 1.14.0
[Laravel 9.x](https://laravel.com/docs/9.x/releases) new features
* Add `Eloquent-attribute` for eloquent accessors / mutators
* Add `Rotue-controller-group` for controller route groups
* Add `Route-get-scopeBindings` and `Route-group-scopeBindings` for forcing scoping of route bindings
## 1.13.0
* Fix `Route::resource` syntax issue ([#33](https://github.com/onecentlin/laravel5-snippets-vscode/issues/33))
## 1.12.0
* Add `Route-get-name`, `Route-post-name` for naming routes
* Add `Route::current`, `Route::currentRouteName`
* Update `Route-controllerAction` with naming route
* Replace log message with double-quotes ([@MartinP7r](https://github.com/MartinP7r) - [PR #32](https://github.com/onecentlin/laravel5-snippets-vscode/pull/32))
## 1.11.0
* Add relation return type ([@samir-araujo](https://github.com/samir-araujo) - [PR #27](https://github.com/onecentlin/laravel5-snippets-vscode/pull/27))
* Route & Relation compatible with Laravel 8 ([@MrEduar](https://github.com/MrEduar) - [PR #30](https://github.com/onecentlin/laravel5-snippets-vscode/pull/30))
## 1.10.0
* Fix `Column::decimal` ([@dittoex](https://github.com/dittoex) - [PR #24](https://github.com/onecentlin/laravel5-snippets-vscode/pull/24))
* Update helper snippets
* Add `Helper::dd`
## 1.9.0
* Sync `Str` api to Laravel v7.x
* Add `Str::after`, `Str::afterLast`, `Str::ascii` ([@gentritabazi01](https://github.com/gentritabazi01) - [PR #22](https://github.com/onecentlin/laravel5-snippets-vscode/pull/22))
## 1.8.0
* Add `Str::plural` and `Str::limit` ([@wdog](https://github.com/wdog) - [PR #19](https://github.com/onecentlin/laravel5-snippets-vscode/pull/19))
* Fix syntax error View ::makeCompact ([#17](https://github.com/onecentlin/laravel5-snippets-vscode/issues/17))
* Add `Route::dispatch` and `Route::dispatchToRoute` ([#12](https://github.com/onecentlin/laravel5-snippets-vscode/issues/12))
* Rename VS Code extension name to `Laravel Snippets` in order to support for Laravel 5 and above version.
## 1.7.0
* Update Cache parameters using ttl instead of minutes ([@nicoeg](https://github.com/nicoeg)) - [PR #16](https://github.com/onecentlin/laravel5-snippets-vscode/pull/16)
## 1.6.0
* Added snippets for laravel collective form and html ([@mnshankar](https://github.com/mnshankar) - [PR #10](https://github.com/onecentlin/laravel5-snippets-vscode/pull/10))
* Changed increments to bigIncrements ([@sidvanvliet](https://github.com/sidvanvliet) - [PR #15](https://github.com/onecentlin/laravel5-snippets-vscode/pull/15))
## 1.5.0
Support new snippets for Laravel 5.6
* Add `Str::uuid` and `Str::orderedUuid`
* Add `Broadcast::channel`
Support new snippets for Laravel 5.5
* Add `Route::redirect`
* Add `Route::view`
* Add `Cache::lock` with `get`, `release`, `block`
## 1.4.0
* Add `Helper::dd` for `dd()` die and dump helper ([#8](https://github.com/onecentlin/laravel5-snippets-vscode/issues/8))
* Fix response format ([#5](https://github.com/onecentlin/laravel5-snippets-vscode/issues/5))
## 1.3.4
* Fix syntax for PSR2 ([@tradzero](https://github.com/tradzero) - [PR #4](https://github.com/onecentlin/laravel5-snippets-vscode/pull/4))
* Fix `Route` syntax issues.
## 1.3.3
* Added `Blueprint` type check to table update snippet. ([@thelfensdrfer](https://github.com/thelfensdrfer) - [PR #3](https://github.com/onecentlin/laravel5-snippets-vscode/pull/3))
## 1.3.2
* Add `$table->timestamps();` as defualt fields while creating table schema. ([#2](https://github.com/onecentlin/laravel5-snippets-vscode/issues/2))
* Fix snippets stop position.
## 1.3.1
* Add missing support in DB: `DB::table` ([#1](https://github.com/onecentlin/laravel5-snippets-vscode/issues/1))
## 1.3.0
* Support new snippets for Laravel 5.3 API Authentication ([Passport](https://laravel.com/docs/5.3/passport))
* Add missing support in Authentication: `Auth::guard`, `Auth::attempt`, `Auth::login`, `Auth::loginUsingId`, `Auth::viaRemember`, `Auth::routes`