You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: vendor/nextcloud/coding-standard/CHANGELOG.md
+27Lines changed: 27 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,33 @@
1
1
# Changelog
2
2
All notable changes to this project will be documented in this file.
3
3
4
+
## 1.2.1 - 2024-02-01
5
+
### Fix
6
+
* fix: Remove `fully_qualified_strict_types` again by @nickvergessen in https://github.com/nextcloud/coding-standard/pull/16
7
+
8
+
## 1.2.0 - 2024-02-01
9
+
### Added
10
+
-`array_syntax`: Force short syntax for array
11
+
-`list_syntax`: Same for list
12
+
-~~`fully_qualified_strict_types`: Remove namespace from classname when there is a `use` statement, and add missing backslash for global namespace~~ - Removed in 1.2.1 due to issues
13
+
-`no_leading_import_slash`: Remove leading slash from `use` statement
14
+
-`nullable_type_declaration_for_default_null_value`: Add missing `?` on type declaration for parameters defaulting to `null`. This will most likely be needed to avoid warnings in PHP 8.4.
15
+
-`yoda_style`: forbid yoda style comparision. This replaces `null === $a` by `$a === null`.
16
+
17
+
## 1.1.1 - 2023-06-23
18
+
### Changed
19
+
* feat: use php-cs-fixer/shim by @kesselb in https://github.com/nextcloud/coding-standard/pull/13
20
+
21
+
## 1.1.0 - 2023-04-13
22
+
### Changed
23
+
* Order imports alphabetically by @come-nc in https://github.com/nextcloud/coding-standard/pull/10
24
+
* fix(rules): Replace deprecated braces rules by @nickvergessen in https://github.com/nextcloud/coding-standard/pull/12
25
+
26
+
## 1.0.0 – 2021-11-10
27
+
### Breaking change
28
+
* Update php-cs-fixer to 3.x
29
+
* See https://github.com/nextcloud/coding-standard#upgrade-from-v0x-to-v10 for instructions.
0 commit comments