Skip to content

Commit

Permalink
minor #31372 Merges second DI section into first one (jschaedl)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.3-dev branch.

Discussion
----------

Merges second DI section into first one

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no <!-- don't forget to update src/**/CHANGELOG.md files -->
| BC breaks?    | no     <!-- see https://symfony.com/bc -->
| Deprecations? | no <!-- don't forget to update UPGRADE-*.md and src/**/CHANGELOG.md files -->
| Tests pass?   | not related    <!-- please add some, will be required by reviewers -->
| Fixed tickets | -  <!-- #-prefixed issue number(s), if any -->
| License       | MIT
| Doc PR        | -

Commits
-------

826237a Merges second DI section into first one
  • Loading branch information
nicolas-grekas committed May 5, 2019
2 parents c315767 + 826237a commit b82b09e
Showing 1 changed file with 13 additions and 17 deletions.
30 changes: 13 additions & 17 deletions UPGRADE-5.0.md
Expand Up @@ -55,6 +55,19 @@ DependencyInjection

* Removed the `TypedReference::canBeAutoregistered()` and `TypedReference::getRequiringClass()` methods.
* Removed support for auto-discovered extension configuration class which does not implement `ConfigurationInterface`.
* Removed support for non-string default env() parameters

Before:
```yaml
parameters:
env(NAME): 1.5
```

After:
```yaml
parameters:
env(NAME): '1.5'
```

DoctrineBridge
--------------
Expand Down Expand Up @@ -82,23 +95,6 @@ EventDispatcher
* The signature of the `EventDispatcherInterface::dispatch()` method has been updated to `dispatch($event, string $eventName = null)`
* The `Event` class has been removed, use `Symfony\Contracts\EventDispatcher\Event` instead

DependencyInjection
-------------------

* Removed support for non-string default env() parameters

Before:
```yaml
parameters:
env(NAME): 1.5
```

After:
```yaml
parameters:
env(NAME): '1.5'
```

Filesystem
----------

Expand Down

0 comments on commit b82b09e

Please sign in to comment.