minor #35663 [Contracts] Split the global CHANGELOG in dedicated CHANGELOG per contract (lyrixx)

This PR was merged into the 5.1-dev branch.

Discussion
----------

[Contracts] Split the global CHANGELOG in dedicated CHANGELOG per contract

| Q             | A
| ------------- | ---
| Branch?       | master
| Bug fix?      | no
| New feature?  | no
| Deprecations? | no
| Tickets       |
| License       | MIT
| Doc PR        |

---

This is more in sync with what we do with other components + bundles.
And when we contribute to a contact, it's easier to find the file (because with the substree, we don't get the global package)

Commits
-------

a05ee087a2 [Constracts] Split the global CHANGELOG in dedicated CHANGELOG per contract
This commit is contained in:
Fabien Potencier 2020-02-10 21:09:55 +01:00
commit a9eec7169a
6 changed files with 35 additions and 4 deletions

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.0.0
-----
* added `Cache` contract to extend PSR-6 with tag invalidation, callback-based computation and stampede protection

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.2.0
-----
* added `trigger_deprecation` function

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.1.0
-----
* added `EventDispatcherInterface` and `Event` in namespace `EventDispatcher`

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.1.0
-----
* added `HttpClient` namespace with contracts for implementing flexible HTTP clients

View File

@ -4,16 +4,12 @@ CHANGELOG
1.1.0
-----
* added `HttpClient` namespace with contracts for implementing flexible HTTP clients
* added `EventDispatcherInterface` and `Event` in namespace `EventDispatcher`
* added `ServiceProviderInterface` in namespace `Service`
1.0.0
-----
* added `Service\ResetInterface` to provide a way to reset an object to its initial state
* added `Translation\TranslatorInterface` and `Translation\TranslatorTrait`
* added `Cache` contract to extend PSR-6 with tag invalidation, callback-based computation and stampede protection
* added `Service\ServiceSubscriberInterface` to declare the dependencies of a class that consumes a service locator
* added `Service\ServiceSubscriberTrait` to implement `Service\ServiceSubscriberInterface` using methods' return types
* added `Service\ServiceLocatorTrait` to help implement PSR-11 service locators

View File

@ -0,0 +1,7 @@
CHANGELOG
=========
1.0.0
-----
* added `Translation\TranslatorInterface` and `Translation\TranslatorTrait`