Skip to content

Commit 92ed6f7

Browse files
dburuflin
authored andcommitted
backport #1588 to 5.x branch (#1590)
1 parent afc6636 commit 92ed6f7

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
# Change Log
22
All notable changes to this project will be documented in this file based on the [Keep a Changelog](http://keepachangelog.com/) Standard. This project adheres to [Semantic Versioning](http://semver.org/).
33

4-
## [Unreleased](https://github.com/ruflin/Elastica/compare/5.3.2...master)
4+
5+
## [Unreleased](https://github.com/ruflin/Elastica/compare/5.3.3...master)
56

67
### Backward Compatibility Breaks
78

@@ -11,6 +12,15 @@ All notable changes to this project will be documented in this file based on the
1112

1213
### Improvements
1314

15+
- [Backported] Reduced memory footprint of response by not keeping the raw JSON data when JSON after JSON has been parsed. [#1588](https://github.com/ruflin/Elastica/pull/1588)
16+
17+
18+
## [5.3.3](https://github.com/ruflin/Elastica/compare/5.3.2...5.3.3)
19+
20+
### Bugfixes
21+
22+
- [Backported] Corrected phpdoc types to avoid warnings from code quality tools. [#1525](https://github.com/ruflin/Elastica/pull/1525)
23+
1424

1525
## [5.3.2](https://github.com/ruflin/Elastica/compare/5.3.1...5.3.2)
1626

lib/Elastica/Response.php

+1
Original file line numberDiff line numberDiff line change
@@ -234,6 +234,7 @@ public function getData()
234234
}
235235

236236
$this->_response = $response;
237+
$this->_responseString = '';
237238
}
238239

239240
return $this->_response;

0 commit comments

Comments
 (0)