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.
## [master]
### Added
- Basic support for PUT requests in the HttpAdapter layer
- Core Admin Queries
- Endpoint::getServerUri
- Endpoint::getCoreBaseUri
### Changed
### Deprecated
- Endpoint::getBaseUri is deprecated. Please use getServerUri or getCoreBaseUri now.
### Removed
......
......@@ -225,14 +225,14 @@ class Endpoint extends Configurable
*
* 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
*/
public function getBaseUri()
{
$message = 'Endpoint::getBaseUri is deperacted since Solarium 5, will be removed in Solarium 6 please use '.
'getServerUri or getCoreBaseUri now.';
$message = 'Endpoint::getBaseUri is deprecated since Solarium 4.2, will be removed in Solarium 5.'.
'please use getServerUri or getCoreBaseUri now.';
@trigger_error($message, E_USER_DEPRECATED);
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