|
f3b60a1dab
|
Minor update on doc
|
2025-07-20 22:20:08 +02:00 |
|
|
cd0523c3f1
|
Remove run of SDK test on PR because cannot work
|
2025-07-20 22:13:07 +02:00 |
|
|
7f318ee964
|
Adapt issue template
|
2025-07-20 22:11:30 +02:00 |
|
|
dc1656da8e
|
Adapt automation
|
2025-07-20 22:11:14 +02:00 |
|
|
dc0bd9f25d
|
Add release drafter
|
2025-07-20 22:10:35 +02:00 |
|
|
52d8007b12
|
Add pull request template
|
2025-07-20 22:10:17 +02:00 |
|
|
4f8382b159
|
Remove useless automation
|
2025-07-20 22:07:59 +02:00 |
|
|
c2c82be556
|
Update documentation
|
2025-07-20 22:07:23 +02:00 |
|
|
289a7f391b
|
Add fields support
|
2025-07-18 10:35:02 +02:00 |
|
|
0312fb22b8
|
Merge pull request #5761 from meilisearch/fix-chat-settings-dumpless-upgrade
Fix chat settings dumpless upgrade
v1.16.0-rc.2
|
2025-07-17 15:57:39 +00:00 |
|
|
b85657de1e
|
Update memmap2 version everywhere
|
2025-07-17 17:30:44 +02:00 |
|
|
626be0ef28
|
Small typo fix
Co-authored-by: Louis Dureuil <louis@meilisearch.com>
|
2025-07-17 17:27:00 +02:00 |
|
|
1b476b8a35
|
Add documentation to the new documents_file dump reader method
Co-authored-by: Louis Dureuil <louis@meilisearch.com>
|
2025-07-17 17:26:41 +02:00 |
|
|
a1b42c10e2
|
Make clippy happy
|
2025-07-17 17:21:03 +02:00 |
|
|
d67db6e3c2
|
Use the edition 2024 documents indexer in the dumps
|
2025-07-17 17:12:51 +02:00 |
|
|
760ccffdbd
|
Expose the documents files from the dumps
|
2025-07-17 17:12:51 +02:00 |
|
|
338806283b
|
Do not track meilisearch databases
|
2025-07-17 17:12:51 +02:00 |
|
|
fe15e11c9d
|
Introduce a new CLI and env var to use the old document indexer when
importing dumps
|
2025-07-17 17:12:51 +02:00 |
|
|
f1d92bfead
|
Make sure the new filter chat setting is set to it's default value if
missing
|
2025-07-17 15:36:21 +02:00 |
|
|
a005a062da
|
Add security if chat settings parameters are missing
|
2025-07-17 15:27:53 +02:00 |
|
|
00d9f576ed
|
Add tests
|
2025-07-17 11:51:12 +02:00 |
|
|
70fa94146a
|
Add document template test
|
2025-07-17 11:29:55 +02:00 |
|
|
a5186863ca
|
Add tests
|
2025-07-17 11:15:45 +02:00 |
|
|
3191316cf3
|
Format
|
2025-07-17 11:11:33 +02:00 |
|
|
cc9fd82f79
|
Add tests and fix issues
|
2025-07-17 11:08:07 +02:00 |
|
|
7495233025
|
Update authorization tests
|
2025-07-17 10:20:20 +02:00 |
|
|
fd8b2451d7
|
Merge pull request #5754 from kametsun/fix/incorrect-stats-doc-count
Fix incorrect document count in stats after clearing all documents
|
2025-07-17 06:48:51 +00:00 |
|
|
2d2de778a7
|
Template rendering
|
2025-07-17 08:44:04 +02:00 |
|
|
f349ba53a0
|
Add a double action policy
|
2025-07-17 08:10:35 +02:00 |
|
|
fc8b6e0f9f
|
Add doc loading
|
2025-07-17 07:51:15 +02:00 |
|
|
e124c161ec
|
Template retrieval logic
|
2025-07-16 16:52:28 +02:00 |
|
|
f50a5b17b6
|
Bind route
|
2025-07-16 15:07:40 +02:00 |
|
|
e83a49821a
|
Add error handling
|
2025-07-16 15:07:10 +02:00 |
|
|
313d804b62
|
Create structure
|
2025-07-16 14:30:58 +02:00 |
|
|
058f9ffda5
|
Merge pull request #5734 from meilisearch/request-fragments-test
Tests for multimodal
|
2025-07-16 11:04:00 +00:00 |
|
|
5d363205a5
|
Merge pull request #5716 from meilisearch/document-sorting
Allow sorting on the /documents route
|
2025-07-16 10:26:50 +00:00 |
|
|
a683faa882
|
Apply review suggestions
|
2025-07-16 11:03:24 +02:00 |
|
|
421a23ee3d
|
Merge pull request #3265 from LeSuisse/sign-container-image-cosign
Sign container image using Cosign in keyless mode
prototype-chat-completions-with-filters-0
|
2025-07-16 08:54:57 +00:00 |
|
|
191ea340ed
|
Sign container image using Cosign in keyless mode
Cosign keyless mode makes possible to sign the container image using the
OIDC Identity Tokens provided by GitHub Actions [0][1].
The signature is published to the registry storing the image and to the
public Rekor transparency log instance [2].
Cosign keyless mode has already been adopted by some major projects like
Kubernetes [3].
The image signature can be manually verified using:
```
$ cosign verify \
--certificate-oidc-issuer='https://token.actions.githubusercontent.com' \
--certificate-identity-regexp='^https://github.com/meilisearch/meilisearch/.github/workflows/publish-docker-images.yaml' \
<image_name>
```
See #2179.
Note that a similar approach can be used to sign the release binaries.
[0] https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect
[1] https://docs.sigstore.dev/cosign/signing/signing_with_containers/
[2] https://docs.sigstore.dev/rekor/overview
[3] https://kubernetes.io/docs/tasks/administer-cluster/verify-signed-artifacts/#verifying-image-signatures
|
2025-07-16 10:04:18 +02:00 |
|
|
8887cbdcd5
|
Merge pull request #5725 from meilisearch/fix-threshold-overcounting-bug
Fix Total Hits being wrong when rankingScoreThreshold is used
|
2025-07-16 07:15:24 +00:00 |
|
|
8d22972d84
|
Merge pull request #5626 from martin-g/faster-batches-it-tests
tests: Faster batches:: IT tests
|
2025-07-16 07:01:16 +00:00 |
|
|
634865ff53
|
Merge pull request #5710 from meilisearch/chat-route-support-filters
Introduce filters in the chat completions
|
2025-07-15 16:10:49 +00:00 |
|
|
36fccf8525
|
Merge remote-tracking branch 'origin/release-v1.16.0' into fix-threshold-overcounting-bug
|
2025-07-15 18:01:29 +02:00 |
|
|
d6bd60d569
|
Apply review suggestions
Co-Authored-By: Louis Dureuil <louis.dureuil@xinra.net>
|
2025-07-15 18:00:37 +02:00 |
|
|
48ad959fc1
|
Merge remote-tracking branch 'origin/release-v1.16.0' into document-sorting
|
2025-07-15 17:41:46 +02:00 |
|
|
1bc30cb4c8
|
Restore old benchmark names
|
2025-07-15 17:34:04 +02:00 |
|
|
77138a42d6
|
Apply review suggestions
Add preconditions
Fix underflow
Remove unwrap
Turn methods to associated functions
Apply review suggestions
|
2025-07-15 17:31:11 +02:00 |
|
|
0791506124
|
Fix some proposals
|
2025-07-15 17:10:45 +02:00 |
|
|
2a015ac3b8
|
Implement basic few shot prompting to improve the query capabilities
|
2025-07-15 14:50:10 +02:00 |
|
|
8772b5af87
|
Merge branch 'main' into faster-batches-it-tests
|
2025-07-15 15:21:32 +03:00 |
|