File tree Expand file tree Collapse file tree 2 files changed +36
-13
lines changed Expand file tree Collapse file tree 2 files changed +36
-13
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,24 @@ to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
8
Please check the [ UPGRADING.md] ( UPGRADING.md ) file before upgrading to a major version!
9
9
10
+ ## [ v4.3.0] ( https://github.com/Lukasss93/laravel-larex/releases/tag/v4.3.0 ) - 2022-11-30
11
+
12
+ ### Added
13
+
14
+ - Added ` larex:lang:order ` command
15
+ - Added ability to set source language for "larex: import " command
16
+
17
+ ### Fixed
18
+
19
+ - Fixed: wrong export message (#26 )
20
+ - Fixed: duplicate lint message (#27 ) in "SameParametersLinter" file
21
+
22
+ ## [ v4.2] ( https://github.com/Lukasss93/laravel-larex/releases/tag/v4.2 ) - 2022-07-12
23
+
24
+ ### Added
25
+
26
+ - Added new linter: SameParametersLinter
27
+
10
28
## [ v4.1] ( https://github.com/Lukasss93/laravel-larex/releases/tag/v4.1 ) - 2022-06-28
11
29
12
30
### Added
Original file line number Diff line number Diff line change 3
3
Because there are many breaking changes an upgrade is not that easy. There are many edge cases this guide does not
4
4
cover. We accept PRs to improve this guide.
5
5
6
+ ## From v4.2 to v4.3.0
7
+
8
+ - The ` larex.php ` config was changed:
9
+ - ** Optional** . Please append new ` source_language ` key in this way:
10
+ ``` php
11
+ 'source_language' => 'en',
12
+ ```
13
+
14
+ _Or you can delete your current config and publish it again (copy your changes before)._
15
+
6
16
## From v4.0 to v4.2
17
+
7
18
- The `larex.php` config was changed:
8
- - ** Optional** . Please append new ` SameParametersLinter ` linter in this way:
9
- ``` php
10
- /**
11
- * Linters to run with larex:lint command.
12
- */
13
- 'linters' => [
14
- // other linters here
15
- // Lukasss93\Larex\Linters\SameParametersLinter::class,
16
- ],
17
- ```
19
+ - **Optional**. Please append new `SameParametersLinter` linter in this way:
20
+ ```php
21
+ 'linters' => [
22
+ // other linters here
23
+ // Lukasss93\Larex\Linters\SameParametersLinter::class,
24
+ ],
25
+ ```
18
26
- **Optional**. Please append `ignore_empty_values` key in this way:
19
27
```php
20
- /**
21
- * Used by SameParametersLinter
22
- */
23
28
'ignore_empty_values' => false,
24
29
```
25
30
_Or you can delete your current config and publish it again (copy your changes before)._
You can’t perform that action at this time.
0 commit comments