Skip to content

Commit

Permalink
Add upgrade notes for the arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
sroze committed Nov 23, 2017
1 parent 6e39bf4 commit fa88cad
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions UPGRADE-3.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# UPGRADE FROM 2.x to 3.0

* Arguments from your Symfony application container need to be double quoted.

Before:
```yaml
default:
suites:
web:
contexts:
- Behat\Sf2DemoBundle\Features\Context\WebContext:
simpleParameter: "%%custom_app%%"
```

After:
```yaml
default:
suites:
web:
contexts:
- Behat\Sf2DemoBundle\Features\Context\WebContext:
simpleParameter: "%%%%custom_app%%%%"
```

0 comments on commit fa88cad

Please sign in to comment.