diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d0ea56..ccfd062 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ We do not give estimated times for completion on `Accepted` Proposals. --- +### v3.0.10 - 2019-04-23 + +`REVISED` + +- Create relative edit URIs for data grid results. + ### v3.0.9 - 2019-01-14 `FIXED` diff --git a/src/Extension.php b/src/Extension.php index 031c456..d1e306c 100644 --- a/src/Extension.php +++ b/src/Extension.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/AbstractGenerator.php b/src/Generators/AbstractGenerator.php index 697ed7f..04fec13 100644 --- a/src/Generators/AbstractGenerator.php +++ b/src/Generators/AbstractGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/DataGridGenerator.php b/src/Generators/DataGridGenerator.php index 5179f73..c71df5a 100644 --- a/src/Generators/DataGridGenerator.php +++ b/src/Generators/DataGridGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/ExtensionGenerator.php b/src/Generators/ExtensionGenerator.php index bb89278..b998f52 100644 --- a/src/Generators/ExtensionGenerator.php +++ b/src/Generators/ExtensionGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/ExtensionThemeGenerator.php b/src/Generators/ExtensionThemeGenerator.php index af79726..a7beb37 100644 --- a/src/Generators/ExtensionThemeGenerator.php +++ b/src/Generators/ExtensionThemeGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/FormGenerator.php b/src/Generators/FormGenerator.php index cbf1013..c07dffc 100644 --- a/src/Generators/FormGenerator.php +++ b/src/Generators/FormGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/MigrationsGenerator.php b/src/Generators/MigrationsGenerator.php index b87a0cb..0a56fbc 100644 --- a/src/Generators/MigrationsGenerator.php +++ b/src/Generators/MigrationsGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/Generators/RepositoryGenerator.php b/src/Generators/RepositoryGenerator.php index ccf6c0b..6a4811a 100644 --- a/src/Generators/RepositoryGenerator.php +++ b/src/Generators/RepositoryGenerator.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/src/stubs/admin-controller.stub b/src/stubs/admin-controller.stub index 360b4e8..af47d2f 100644 --- a/src/stubs/admin-controller.stub +++ b/src/stubs/admin-controller.stub @@ -72,7 +72,7 @@ class {{plural_name}}Controller extends AdminController 'direction' => 'desc', ], 'transformer' => function($element) { - $element->edit_uri = route('admin.{{lower_vendor}}.{{lower_name}}.{{plural_lower_model}}.edit', $element->id); + $element->edit_uri = route('admin.{{lower_vendor}}.{{lower_name}}.{{plural_lower_model}}.edit', $element->id, false); return $element; }, diff --git a/tests/DataGridGeneratorTest.php b/tests/DataGridGeneratorTest.php index 747ba8b..502c418 100644 --- a/tests/DataGridGeneratorTest.php +++ b/tests/DataGridGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/ExtensionGeneratorTest.php b/tests/ExtensionGeneratorTest.php index 371284a..429d4b9 100644 --- a/tests/ExtensionGeneratorTest.php +++ b/tests/ExtensionGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/ExtensionTest.php b/tests/ExtensionTest.php index ee9d464..85b9f8e 100644 --- a/tests/ExtensionTest.php +++ b/tests/ExtensionTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/ExtensionThemeGeneratorTest.php b/tests/ExtensionThemeGeneratorTest.php index 5b0b430..3c1c680 100644 --- a/tests/ExtensionThemeGeneratorTest.php +++ b/tests/ExtensionThemeGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/FormGeneratorTest.php b/tests/FormGeneratorTest.php index 762e8ed..85a3378 100644 --- a/tests/FormGeneratorTest.php +++ b/tests/FormGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/GeneratorTest.php b/tests/GeneratorTest.php index 8de02f7..b86839a 100644 --- a/tests/GeneratorTest.php +++ b/tests/GeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/MigrationsGeneratorTest.php b/tests/MigrationsGeneratorTest.php index e638604..ccfa941 100644 --- a/tests/MigrationsGeneratorTest.php +++ b/tests/MigrationsGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC diff --git a/tests/RepositoryGeneratorTest.php b/tests/RepositoryGeneratorTest.php index b550df1..99c2651 100644 --- a/tests/RepositoryGeneratorTest.php +++ b/tests/RepositoryGeneratorTest.php @@ -11,7 +11,7 @@ * bundled with this package in the license.txt file. * * @package Workshop - * @version 3.0.9 + * @version 3.0.10 * @author Cartalyst LLC * @license Cartalyst PSL * @copyright (c) 2011-2019, Cartalyst LLC