Skip to content

Commit f425c42

Browse files
authored
update CHANGELOG and bump version to 6.25.0 (#2518)
1 parent d962042 commit f425c42

File tree

4 files changed

+31
-1
lines changed

4 files changed

+31
-1
lines changed

CHANGELOG.asciidoc

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,20 @@ endif::[]
3232
[[release-notes-6.x]]
3333
=== Python Agent version 6.x
3434
35+
[[release-notes-6.25.0]]
36+
==== 6.25.0 - 2025-12-23
37+
38+
[float]
39+
===== Features
40+
41+
* Introduce `ELASTIC_APM_SKIP_SERVER_INFO` to reduce overhead on serverless with APM server 8.7.1+ {pull}2516[#2516]
42+
* List all exported symbols in elasticapm module `__all__` {pull}2504[#2504]
43+
44+
[float]
45+
===== Bug fixes
46+
47+
* Handle Tornado 6.5.3 `HttpHeaders` `in` operator behavior change {pull}2512[#2512]
48+
3549
[[release-notes-6.24.1]]
3650
==== 6.24.1 - 2025-11-21
3751

docs/reference/configuration.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -971,6 +971,10 @@ Whether each transaction should have the process arguments attached. Disabled by
971971

972972
### `skip_server_info` [config-skip-server-info]
973973

974+
```{applies_to}
975+
apm_agent_python: preview 6.25.0
976+
```
977+
974978
| Environment | Django/Flask | Default |
975979
| --- | --- | --- |
976980
| `ELASTIC_APM_SKIP_SERVER_INFO` | `SKIP_SERVER_INFO` | `False` |

docs/release-notes/index.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,18 @@ To check for security updates, go to [Security announcements for the Elastic sta
2626

2727
% ### Fixes [elastic-apm-python-agent-versionext-fixes]
2828

29+
## 6.25.0 [elastic-apm-python-agent-6250-release-notes]
30+
**Release date:** December 23, 2025
31+
32+
### Features and enhancements [elastic-apm-python-agent-6250-features-enhancements]
33+
34+
* Introduce `ELASTIC_APM_SKIP_SERVER_INFO` to reduce overhead on serverless with APM server 8.7.1+ [#2516](https://github.com/elastic/apm-agent-python/pull/2516)
35+
* List all exported symbols in elasticapm module `__all__` [#2504](https://github.com/elastic/apm-agent-python/pull/2504)
36+
37+
### Fixes [elastic-apm-python-agent-6250-fixes]
38+
39+
* Handle Tornado 6.5.3 `HttpHeaders` `in` operator behavior change [#2512](https://github.com/elastic/apm-agent-python/pull/2512)
40+
2941
## 6.24.1 [elastic-apm-python-agent-6241-release-notes]
3042
**Release date:** November 21, 2025
3143

elasticapm/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,5 +28,5 @@
2828
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2929
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3030

31-
__version__ = (6, 24, 1)
31+
__version__ = (6, 25, 0)
3232
VERSION = ".".join(map(str, __version__))

0 commit comments

Comments
 (0)