Skip to content

Commit d6c51bd

Browse files
authored
chore(release): prepare v25.2.0 (#302)
## Summary - Bumps VERSION from 25.1.0 to 25.2.0 in `pydgraph/meta.py` - Adds v25.2.0 changelog entry covering 12 commits since v25.1.0 ### Highlights in this release - **Stress tests & CI benchmarks** for performance regression tracking (#298) - **AbortedError pickling fix** for Celery/multiprocessing compatibility (#299) - **asyncio.Lock deadlock fix** in `AsyncTxn.do_request` error handling - Dependabot security vulnerability fixes - CI/CD pipeline improvements ### Verification - `make build` produces `pydgraph-25.2.0.tar.gz` and `pydgraph-25.2.0-py3-none-any.whl` - `make test` passes (219/219) - `trunk fmt CHANGELOG.md` passes
1 parent c544061 commit d6c51bd

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

CHANGELOG.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project
66
adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8+
## [v25.2.0] - 2026-02-25
9+
10+
**Added**
11+
12+
- Stress tests and CI benchmark integration for performance regression tracking
13+
([#298](https://github.com/dgraph-io/pydgraph/pull/298))
14+
15+
**Fixed**
16+
17+
- `AbortedError` is now picklable for Celery and multiprocessing compatibility by @shaunpatterson in
18+
[#299](https://github.com/dgraph-io/pydgraph/pull/299)
19+
- Prevented `asyncio.Lock` deadlock in `AsyncTxn.do_request` error handling path, submitted by
20+
@shaunpatterson in [#293](https://github.com/dgraph-io/pydgraph/pull/293)
21+
- Resolved Dependabot security vulnerability alerts
22+
- Fixed relative import in regenerated `api_pb2_grpc.pyi` for mypy compatibility
23+
24+
**Chore**
25+
26+
- Regenerated protobuf files after protobuf version update
27+
- Fixed CD pipeline `uv version` step incompatible with dynamic versioning
28+
- Skip `no-commit-to-branch` hook in CI/CD workflows
29+
- Applied ruff formatting to `async_client`, `client`, and `retry` modules
30+
831
## [v25.1.0] - 2026-01-19
932

1033
**Added**

pydgraph/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
"""Metadata about this package."""
55

6-
VERSION = "25.1.0"
6+
VERSION = "25.2.0"

0 commit comments

Comments
 (0)