Skip to content

Commit 1d4b617

Browse files
chore: update changelog, prepare for release (#9583)
1 parent f1dfa53 commit 1d4b617

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

CHANGELOG.md

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,43 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/).
66
to [Semantic Versioning](https://semver.org). When adding a new entry, please use the entries below
77
as a guide.
88

9+
## [v25.2.0] - 2026-01-28
10+
11+
[v25.2.0]: https://github.com/dgraph-io/dgraph/compare/v25.1.0...v25.2.0
12+
13+
- **Added**
14+
15+
- **GraphQL**
16+
- feat(graphql): Add support for ef and distance_threshold in generated GraphQL queries for
17+
similarity search (#9562).
18+
> **WARNING** In #9562, the computed distances (automatically returned in the `vector_distance`
19+
> field) for cosine and dot product metrics are no longer normalized to [0, 1], but instead
20+
> return the raw distance computed by the metric.
21+
22+
- **Vector**
23+
- feat(vector/hnsw): add per-query `ef` and `distance_threshold` to `similar_to`, fix early
24+
termination (#9514)
25+
26+
- **Fixed**
27+
28+
- **Core**
29+
- fix(txn): for lossy indexes, change comparison function to first check the txn cache (#9567)
30+
- fix(cmd): store correct CA verification status (#9554)
31+
- fix(zero): make zero shutdown cleanly (#9525)
32+
33+
- **Vector**
34+
- fix(vector): Fix similarity-based HNSW search for cosine and dot product metrics (#9559)
35+
> **WARNING** To benefit from the fix in #9559, you must reindex vector predicates that use
36+
> cosine or dot product metrics.
37+
38+
- **Chore**
39+
- docs: fix typos in comments (#9569)
40+
- chore(ci): update go toolchain version to v1.25.6 (#9568)
41+
- fix(ci): update trunk go runtime to match go.mod version (#9575)
42+
- chore(test): replace deprecated docker struct types in testing harness (#9549)
43+
- chore(test): unskip previously skipped tests (#9537)
44+
- chore(core): use Tick() instead of NewTicker() (#9548)
45+
946
## [v25.1.0] - 2025-12-04
1047

1148
[v25.1.0]: https://github.com/dgraph-io/dgraph/compare/v25.0.0...v25.1.0

contrib/RELEASE.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ This document outlines the steps needed to build and push a new release of Dgrap
3434
1. Verify the push
3535
1. Ensure the image tags are pushed to
3636
[https://hub.docker.com/r/dgraph/dgraph/tags](https://hub.docker.com/r/dgraph/dgraph/tags)
37-
1. Run this command to verify the version: `docker run dgraph/dgraph:vXX.X.X dgraph version`
37+
1. Run these commands to verify the version:
38+
```
39+
docker run --pull always dgraph/dgraph:vXX.X.X dgraph version
40+
docker run --pull always dgraph/dgraph:latest dgraph version
41+
docker run --pull always dgraph/standalone:latest dgraph version
42+
```
3843
1. The new CD workflow _should_ copy all artifacts to the release (there should be 10 artifacts
3944
with the release). If not, at the end of the CD workflow, you'll find the created artifacts
4045
that you'll need to download and then re-upload to the release, sigh... (click on the 'edit'

0 commit comments

Comments
 (0)