|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -All Notable changes to **Laravel Localized Routes** will be documented in this file. |
4 | | - |
5 | | -## 2.3.0 (2020-09-07) |
6 | | - |
7 | | -- Add support for Laravel 8 |
8 | | - |
9 | | -## 2.2.6 (2020-03-03) |
10 | | - |
11 | | -- Add support for Laravel 7 |
12 | | - |
13 | | -## 2.2.5 (2020-03-03) |
14 | | - |
15 | | -- Constrain dependency versions |
16 | | - |
17 | | -## 2.2.4 (2020-01-17) |
18 | | - |
19 | | -- Accept query string parameters via `Route::localizedUrl()` |
20 | | -- Handle optional route parameters with `Route::localizedUrl()` |
21 | | -- Handle capitalized route parameters with `Route::localizedUrl()` |
22 | | - |
23 | | -## 2.2.3 (2020-01-16) |
24 | | - |
25 | | -- Return a URL with query string from `Route::localizedUrl()` |
26 | | -- Use the `route()` helper for named routes to support translated slugs with the `Lang::uri()` macro |
27 | | -- Improve unregistered route handling in the `UrlGenerator` |
28 | | - |
29 | | -## 2.2.2 (2020-01-09) |
30 | | - |
31 | | -- Generate absolute and non absolute URL's using `Route::localizedUrl($locale, $parameters, $absolute)` |
32 | | -- Fallback routes no longer require a name of `404` |
33 | | -- Refactor code and improve tests |
34 | | - |
35 | | -## 2.2.1 (2020-01-08) |
36 | | - |
37 | | -- Fix issue where first slug was duplicated on fallback routes |
38 | | - |
39 | | -## 2.2.0 (2020-01-08) |
40 | | - |
41 | | -- Localize 404 and fallback URL's |
42 | | -- Add README instructions on how to localize your 404 pages properly |
43 | | -- Add `Route::isLocalized()` macro |
44 | | -- Fix issue with `Route::localizedUrl()` on 404 pages (#16) |
45 | | -- Fix issue with `Route::localizedUrl()` on non localized routes |
46 | | -- Fix issue with generating localized URL's using custom domains |
47 | | -- Enable use of Route::localizedUrl() with unnamed routes |
48 | | - |
49 | | -## 2.1.0 (2019-12-22) |
50 | | - |
51 | | -- Add `Route::localizedUrl()` macro to generate a URL for the current route in any locale. |
52 | | - |
53 | | -## 2.0.0 (2019-12-17) |
54 | | - |
55 | | -- Add option to automatically detect and set locales with [codezero/laravel-localizer](https://github.com/codezero-be/laravel-localizer) |
56 | | -- Rename middleware to `SetLocale` |
57 | | - |
58 | | -## 1.3.4 (2019-12-10) |
59 | | - |
60 | | -- Refactor tests |
61 | | -- Update README |
62 | | - |
63 | | -## 1.3.3 (2019-09-05) |
64 | | - |
65 | | -- Add support for Laravel 6 |
66 | | - |
67 | | -## 1.3.2 (2019-08-31) |
68 | | - |
69 | | -- Add locale middleware for localized routes |
70 | | - |
71 | | -## 1.3.1 (2019-06-11) |
72 | | - |
73 | | -- Swap `funkjedi/composer-include-files` with `0.0.0/composer-include-files`. |
74 | | - The former was no longer working in vendor packages (https://github.com/funkjedi/composer-include-files/pull/9). |
75 | | - |
76 | | -## 1.3.0 (2019-05-14) |
77 | | - |
78 | | -- Add support for signed Routes with locale (#5) |
79 | | - |
80 | | -## 1.2.0 (2019-04-30) |
81 | | - |
82 | | -- Enable the use of customs domains or subdomains instead of slugs. |
83 | | - |
84 | | -## 1.1.0 (2019-03-19) |
85 | | - |
86 | | -- Add option to remove the main locale slug from the URL. |
87 | | - |
88 | | -## 1.0.1 (2019-03-13) |
89 | | - |
90 | | -- Register the `UrlGenerator` the same way Laravel does in recent versions |
91 | | - |
92 | | -## 1.0.0 (2018-04-03) |
93 | | - |
94 | | -- Automatically register a route for each locale you wish to support. |
95 | | -- Generate localized route URL's in the simplest way using the `route()` helper. |
96 | | -- Redirect to localized routes using the `redirect()->route()` helper. |
97 | | -- Allow routes to be cached. |
98 | | -- Let you work with routes without thinking too much about locales. |
99 | | -- Optionally translate each segment in your URI's. |
| 3 | +A complete list of all notable changes to this package can be found on the |
| 4 | +[releases page](https://github.com/codezero-be/laravel-localized-routes/releases). |
0 commit comments