Skip to content

Commit

Permalink
Update UPGRADING.md
Browse files Browse the repository at this point in the history
Related to #1640
  • Loading branch information
siad007 authored Oct 2, 2021
1 parent 6d8f0a0 commit 02967c5
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ that you might stumble across when upgrading from Phing 2 to 3.
* Size selector: `units` attribute has been removed, `value` attribute can include an IEC or SI suffix.
* TruncateTask: `length` attribute can include an IEC or SI suffix.
* The way how Phing handles boolean values has been normalized. Therefore `t` is not a valid `true` value any longer. For a list of effected components follow https://github.com/phingofficial/phing/search?p=1&q=booleanValue
* Obsolete `ExportPropertiesTask` was removed in favor of the `EchoPropertiesTask`
```xml
<exportproperties targetfile="output.props" />
<-- is the same as -->
<echoproperties destfile="output.props" regex="/^((?!host\.)(?!os\.)(?!env\.)(?!phing\.)(?!php\.)(?!line\.)(?!user\.)[\s\S])*$/"/>
```

0 comments on commit 02967c5

Please sign in to comment.