Commit e5c2da07 authored by Markus Kalkbrenner's avatar Markus Kalkbrenner

updated CHANGELOG

parent e8cf9e41
...@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ...@@ -7,10 +7,14 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [master] ## [master]
### Added ### Added
- Basic support for PUT requests in the HttpAdapter layer - Basic support for PUT requests in the HttpAdapter layer
- Core Admin Queries
- Endpoint::getServerUri
- Endpoint::getCoreBaseUri
### Changed ### Changed
### Deprecated ### Deprecated
- Endpoint::getBaseUri is deprecated. Please use getServerUri or getCoreBaseUri now.
### Removed ### Removed
......
...@@ -225,14 +225,14 @@ class Endpoint extends Configurable ...@@ -225,14 +225,14 @@ class Endpoint extends Configurable
* *
* Based on host, path, port and core options. * Based on host, path, port and core options.
* *
* @deprecated Please use getCoreBaseUri or getServerUri now, will be removed in Solarium 6 * @deprecated Please use getCoreBaseUri or getServerUri now, will be removed in Solarium 5
* *
* @return string * @return string
*/ */
public function getBaseUri() public function getBaseUri()
{ {
$message = 'Endpoint::getBaseUri is deperacted since Solarium 5, will be removed in Solarium 6 please use '. $message = 'Endpoint::getBaseUri is deprecated since Solarium 4.2, will be removed in Solarium 5.'.
'getServerUri or getCoreBaseUri now.'; 'please use getServerUri or getCoreBaseUri now.';
@trigger_error($message, E_USER_DEPRECATED); @trigger_error($message, E_USER_DEPRECATED);
return $this->getCoreBaseUri(); return $this->getCoreBaseUri();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment