Skip to content

Commit fd255ab

Browse files
committed
docs: Minor changelog cleanup
* Consistent formatting. * Fix mistaken reference to "gettingVariables" instead of "getVariables". * Add links. Change-Id: I8f79f3193aa18d03e0d72bef8409697f907b7fe6
1 parent f12e470 commit fd255ab

File tree

1 file changed

+17
-18
lines changed

1 file changed

+17
-18
lines changed

CHANGES.md

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ Added:
77
* Add support for native CSS color functions including with CSS variables. (Hannah Okwelum) [T405815](https://phabricator.wikimedia.org/T405815)
88

99
Fixed:
10-
* Fix "Using null as the key parameter for array_key_exists" PHP 8.5 warning. (del72683) [T410596](https://phabricator.wikimedia.org/T410596)
10+
* Fix "PHP Warning: Using null as the key parameter for array_key_exists" on PHP 8.5. (del72683) [T410596](https://phabricator.wikimedia.org/T410596)
1111
* Fix interpolation of string with number followed by underscore. (Timo Tijhof) [Less.js #2462](https://github.com/less/less.js/issues/2462)
12-
* Less_Functions: Fix "Using null as an array offset is deprecated" PHP 8.5 warnings. (Hannah Okwelum) [T411398](https://phabricator.wikimedia.org/T411398)
13-
* Less_ImportVisitor: Fix "Using null as an array offset" PHP 8.5 warning. (Hannah Okwelum) [T411400](https://phabricator.wikimedia.org/T411400)
14-
* Less_Parser: Fix "ord(): Providing an empty string is deprecated" PHP 8.5 warning. (Hannah Okwelum) [T411397](https://phabricator.wikimedia.org/T411397)
12+
* Fix "PHP Warning: Using null as an array offset" on PHP 8.5 in Less_Functions. (Hannah Okwelum) [T411398](https://phabricator.wikimedia.org/T411398)
13+
* Fix "PHP Warning: Using null as an array offset" on PHP 8.5 in Less_ImportVisitor. (Hannah Okwelum) [T411400](https://phabricator.wikimedia.org/T411400)
14+
* Fix "PHP Warning: ord(): Providing an empty string is deprecated" on PHP 8.5. (Hannah Okwelum) [T411397](https://phabricator.wikimedia.org/T411397)
1515

1616
## v5.4.0
1717

@@ -24,7 +24,7 @@ Changed:
2424
## v5.3.1
2525

2626
Fixed:
27-
* Fix `PHP Warning: Undefined property $value` in `extract()`. (Timo Tijhof) [T391735](https://phabricator.wikimedia.org/T391735)
27+
* Fix "PHP Warning: Undefined property $value" in `extract()`. (Timo Tijhof) [T391735](https://phabricator.wikimedia.org/T391735)
2828

2929
## v5.3.0
3030

@@ -55,13 +55,13 @@ Added:
5555

5656
Fixed:
5757
* Fix "PHP Warning: Undefined array key currentUri" when using `@import (inline)` (tck) [T380641](https://phabricator.wikimedia.org/T380641)
58-
* Fix "Implicit conversion from float to int" PHP 8.1 warning when using `hsv()` (Peter Knut)
58+
* Fix "PHP Warning: Implicit conversion from float to int" on PHP 8.1 when using `hsv()` (Peter Knut)
5959
* Less_Visitor: Faster class mapping in `visitObj` by using inline cache (Thiemo Kreuz)
6060

6161
## v5.1.2
6262

6363
Fixed:
64-
* Less_Functions: Fix "Implicitly nullable parameter" PHP 8.4 warning (Reedy) [T376276](https://phabricator.wikimedia.org/T376276)
64+
* Less_Functions: Fix "PHP Warning: Implicitly nullable parameter" on PHP 8.4 (Reedy) [T376276](https://phabricator.wikimedia.org/T376276)
6565

6666
## v5.1.1
6767

@@ -218,9 +218,8 @@ Fixed:
218218

219219
## v3.2.0
220220

221-
* Fix "Implicit conversion" PHP 8.1 warnings (Ayokunle Odusan)
222-
* Fix "Creation of dynamic property" PHP 8.2 warnings (Bas Couwenberg)
223-
* Fix "Creation of dynamic property" PHP 8.2 warnings (Rajesh Kumar)
221+
* Fix "PHP Warning: Implicit conversion" on PHP 8.1 (Ayokunle Odusan)
222+
* Fix "PHP Warning: Creation of dynamic property" on PHP 8.2 (Bas Couwenberg, Rajesh Kumar)
224223
* Tree_Url: Add support for "Url" type to `Parser::getVariables()` (ciroarcadio) [#51](https://github.com/wikimedia/less.php/pull/51)
225224
* Tree_Import: Add support for importing URLs without file extension (Timo Tijhof) [#27](https://github.com/wikimedia/less.php/issues/27)
226225

@@ -264,22 +263,22 @@ Library forked by Wikimedia, from [oyejorge/less.php](https://github.com/oyejorg
264263

265264
## v1.7.0.12
266265

267-
* set bin/lessc bit executable
268-
* Add `gettingVariables` method to `Less_Parser`
266+
* Fix `bin/lessc` to have executable bit (regression from v1.7.0.10)
267+
* Add `Less_Parser::getVariables` method [oyejorge #258](https://github.com/oyejorge/less.php/issues/258)
269268

270269
## v1.7.0.11
271270

272-
* Fix realpath issue (windows)
273-
* Set Less_Tree_Call property back to public ( Fix 258 266 267 issues from oyejorge/less.php)
271+
* Fix realpath issue on Windows
272+
* Change Less_Tree_Call property back to public (protected since v1.7.0.2) [oyejorge #324](https://github.com/oyejorge/less.php/pull/324)
274273

275274
## v1.7.0.10
276275

277-
* Add indentation option
278-
* Add `optional` modifier for `@import`
276+
* Less_Parser: Add `indentation` option
277+
* Add support for `optional` modifier to `@import`
279278
* Fix $color in Exception messages
280-
* take relative-url into account when building the cache filename
279+
* Fix cache filename to take relative-url into account [oyejorge #295](https://github.com/oyejorge/less.php/pull/295)
281280
* urlArgs should be string no array()
282-
* fix missing on NameValue type [#269](https://github.com/oyejorge/less.php/issues/269)
281+
* Fix missing on NameValue type [oyejorge #269](https://github.com/oyejorge/less.php/issues/269)
283282

284283
## v1.7.0.9
285284

0 commit comments

Comments
 (0)