Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ All notable changes to this project will be documented in this file. The format

## Unreleased

## [0.10.0] - 2026-07-14

### Removed

- Removed max_term_freq from MoreLikeThis.

## [0.9.0] - 2026-06-18

### Added
Expand Down Expand Up @@ -209,6 +215,7 @@ All notable changes to this project will be documented in this file. The format
- JSON field key indexing support
- Full Django ORM integration with `Q` objects and standard filters

[0.10.0]: https://github.com/paradedb/django-paradedb/compare/v0.9.0...v0.10.0
[0.9.0]: https://github.com/paradedb/django-paradedb/compare/v0.8.0...v0.9.0
[0.8.0]: https://github.com/paradedb/django-paradedb/compare/v0.7.0...v0.8.0
[0.7.0]: https://github.com/paradedb/django-paradedb/compare/v0.6.0...v0.7.0
Expand Down
4 changes: 0 additions & 4 deletions paradedb/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,6 @@ def __init__(
min_term_freq: int | None = None,
max_query_terms: int | None = None,
min_doc_freq: int | None = None,
max_term_freq: int | None = None,
max_doc_freq: int | None = None,
min_word_length: int | None = None,
max_word_length: int | None = None,
Expand All @@ -623,7 +622,6 @@ def __init__(
self.min_term_freq = min_term_freq
self.max_query_terms = max_query_terms
self.min_doc_freq = min_doc_freq
self.max_term_freq = max_term_freq
self.max_doc_freq = max_doc_freq
self.min_word_length = min_word_length
self.max_word_length = max_word_length
Expand Down Expand Up @@ -706,7 +704,6 @@ def _validate_numeric_params(self) -> None:
"min_term_freq": self.min_term_freq,
"max_query_terms": self.max_query_terms,
"min_doc_freq": self.min_doc_freq,
"max_term_freq": self.max_term_freq,
"max_doc_freq": self.max_doc_freq,
"min_word_length": self.min_word_length,
"max_word_length": self.max_word_length,
Expand Down Expand Up @@ -740,7 +737,6 @@ def _render_more_like_this_call(
"min_term_frequency": term.min_term_freq,
"max_query_terms": term.max_query_terms,
"min_doc_frequency": term.min_doc_freq,
"max_term_frequency": term.max_term_freq,
"max_doc_frequency": term.max_doc_freq,
"min_word_length": term.min_word_length,
"max_word_length": term.max_word_length,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "django-paradedb"
version = "0.9.0"
version = "0.10.0"
description = "Official ParadeDB integration for Django"
readme = "README.md"
license = "MIT"
Expand Down
1 change: 0 additions & 1 deletion tests/test_edge_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,6 @@ def test_mlt_with_all_options(self) -> None:
min_term_freq=2,
max_query_terms=10,
min_doc_freq=1,
max_term_freq=100,
max_doc_freq=1000,
min_word_length=3,
max_word_length=15,
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading