Skip to content

Tags: dgraph-io/dgraph

Tags

v24.0.0

Toggle v24.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Updated changelog for v24.0.0 (#9099)

Updated changelog for v24

v24.0.0-rc1

Toggle v24.0.0-rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
chore(upgrade): run tests from v23.1.0 -> main (#9097)

Co-authored-by: shivaji-dgraph <shivaji@dgraph.io>

v22-schema-upload-fix

Toggle v22-schema-upload-fix's commit message
ICR fix

v24.0.0-alpha3

Toggle v24.0.0-alpha3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Feat(graphql): Add vector support to graphql (#9074)

Adds support for vector predicate in GraphQL. Introduced new queries
like similar_to() in graphql

v23.1.1

Toggle v23.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
perf(core): Fix performance issue in type filter (#9065)

Currently when we do queries like `func(uid: 0x1) @filter(type)`. We
retrieve the entire type index. Sometimes, when the index is too big,
fetching the index is quite slow. We realised that if we know we only
want to check few `uids` are of the same, then we can just check those
`uids` directly. Right now we are hard coding the number of `uids`
threshold. This could be improved with a more statistical based model,
where we figure out how many items does the type index have, how many we
need to check.

v24.0.0-alpha2

Toggle v24.0.0-alpha2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
fix(vector): show error is invalid input is provided to vector predic…

…ate (#9064)

v24.0.0-alpha

Toggle v24.0.0-alpha's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Added similar_to in vector (#9062)

This diff adds similar_to function to vectors, and adds the index to
support it

---------

Co-authored-by: Harshil Goel <harshil@dgraph.io>

v23.1.0

Toggle v23.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
chore(changelog): update changelog for v23.1.0 (#8958)

* Description: We update the changelog for v23.1.0.

v23.1.0-rc2

Toggle v23.1.0-rc2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
fix(acl): allow data deletion for non-reserved predicates (#8937)

when data (non-reserved predicates) is added on UIDs that
belong to groot user or guardian group, it is allowed. But when the same
data is deleted, that is not allowed. This PR allows deletion of
non-reserved predicates on special UIDs.

Closes: https://dgraph.atlassian.net/browse/DGRAPHCORE-355

v23.1.0-rc1

Toggle v23.1.0-rc1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
perf(query): Improve IntersectCompressedWithBin for UID Pack (#8941)

This PR improves the performance of IntersectCompressedWithBin.
LDBC09 Query went from 38 second -> 22 second.
Benchmarks show up to 80% improvement in performance.