Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update CHANGELOG and bump version to 6.21.0 #1986

Merged
merged 1 commit into from
Mar 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ endif::[]

////
[[release-notes-x.x.x]]
==== x.x.x - YYYY/MM/DD
==== x.x.x - YYYY-MM-DD

[float]
===== Breaking changes
Expand All @@ -32,6 +32,20 @@ endif::[]
[[release-notes-6.x]]
=== Python Agent version 6.x
[[release-notes-6.21.0]]
==== 6.21.0 - 2024-03-06
[float]
===== Bug fixes
* Fix starlette middleware setup without client argument {pull}1952[#1952]
* Fix blocking of gRPC stream-to-stream requests {pull}1967[#1967]
* Always take into account body reading time for starlette requests {pull}1970[#1970]
* Make urllib3 transport tests more robust against local env {pull}1969[#1969]
* Clarify starlette integration documentation {pull}1956[#1956]
* Make dbapi2 query scanning for dollar quotes a bit more correct {pull}1976[#1976]
* Normalize headers in AWS Lambda integration on API Gateway v1 requests {pull}1982[#1982]
[[release-notes-6.20.0]]
==== 6.20.0 - 2024-01-10
Expand Down
2 changes: 1 addition & 1 deletion elasticapm/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

__version__ = (6, 20, 0)
__version__ = (6, 21, 0)
VERSION = ".".join(map(str, __version__))
Loading