Skip to content

Commit

Permalink
update CHANGELOG and bump version to 6.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
beniwohli committed Oct 26, 2022
1 parent 53c6ea4 commit bcf8242
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 8 deletions.
14 changes: 7 additions & 7 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,15 @@ endif::[]
//===== Bug fixes
//
=== Unreleased
[[release-notes-6.x]]
=== Python Agent version 6.x
[[release-notes-6.13.0]]
==== 6.13.0 - 2022-10-26
// Unreleased changes go here
// When the next release happens, nest these changes under the "Python Agent version 6.x" heading
[float]
===== Features
* Add support for Python 3.11
* Add backend granularity data to SQL backends as well as Cassandra and pymongo {pull}1585[#1585], {pull}1639[#1639]
* Add support for instrumenting the Elasticsearch 8 Python client {pull}1642[#1642]
* Add `*principal*` to default `sanitize_field_names` configuration {pull}1664[#1664]
Expand All @@ -47,11 +50,8 @@ endif::[]
* Fix Django's `manage.py check` when agent is disabled {pull}1632[#1632]
* Fix an issue with long body truncation for Starlette {pull}1635[#1635]
* Fix an issue with transaction outcomes in Flask for uncaught exceptions {pull}1637[#1637]
* FIx Starlette instrumentation to make sure transaction information is still present during exception handling {pull}1674[#1674]
* Fix Starlette instrumentation to make sure transaction information is still present during exception handling {pull}1674[#1674]
[[release-notes-6.x]]
=== Python Agent version 6.x
[[release-notes-6.12.0]]
==== 6.12.0 - 2022-09-07
Expand Down
3 changes: 3 additions & 0 deletions docs/supported-technologies.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@ The following Python versions are supported:
* 3.7
* 3.8
* 3.9
* 3.10
* 3.11

[float]
[[supported-django]]
Expand All @@ -37,6 +39,7 @@ We support these Django versions:
* 3.0
* 3.1
* 3.2
* 4.0

For upcoming Django versions, we generally aim to ensure compatibility starting with the first Release Candidate.

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, 12, 0)
__version__ = (6, 13, 0)
VERSION = ".".join(map(str, __version__))

0 comments on commit bcf8242

Please sign in to comment.