Skip to content

Bump Meilisearch to v1.48#2173

Merged
Strift merged 2 commits into
mainfrom
bump-meilisearch-v1.42
Jul 1, 2026
Merged

Bump Meilisearch to v1.48#2173
Strift merged 2 commits into
mainfrom
bump-meilisearch-v1.42

Conversation

@meili-bot

@meili-bot meili-bot commented Apr 15, 2026

Copy link
Copy Markdown
Contributor

This PR is auto-generated.

Tracks meilisearch/meilisearch stable releases and updates pinned image tags to floating minor v1.42.
Patch releases are intentionally not PR'd; Docker resolves to the latest patch for this minor.

  • Upstream latest stable tag detected: v1.42.1
  • Updated files:
    • .github/workflows/tests.yml
    • docker-compose.yml

Release notes

Summary by CodeRabbit

  • Chores
    • Updated the Meilisearch Enterprise runtime to v1.48 in development and test environments.
    • Ensures local and automated test setups stay aligned with the latest supported release.
  • Tests
    • Adjusted pre-release test workflow branch gating to run for pre-release-** branches only.

@coderabbitai

coderabbitai Bot commented Apr 15, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The Meilisearch Enterprise image tag is updated to v1.48 in CI and docker-compose, and the pre-release workflow now runs only for pre-release-** branches.

Changes

Meilisearch Version Bump

Layer / File(s) Summary
Update Meilisearch image tag
.github/workflows/tests.yml, docker-compose.yml
The meilisearch service image tag is bumped from getmeili/meilisearch-enterprise:v1.46 to getmeili/meilisearch-enterprise:v1.48 in both files.

Pre-release workflow gating

Layer / File(s) Summary
Restrict pre-release branch matching
.github/workflows/pre-release-tests.yml
The workflow triggers and the meilisearch-version job condition are narrowed to pre-release-** branches.

Estimated code review effort: 2 (Simple) | ~10 minutes

Possibly related PRs

Suggested reviewers: curquiza, Strift, flevi29

Poem

A bunny hops through CI light,
v1.48 now feels just right.
One branch gate narrows, neat and clean,
The test hutch hums in green serene,
Thump-thump! 🐇

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title accurately summarizes the main change: updating Meilisearch image versions to v1.48.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch bump-meilisearch-v1.42

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@docker-compose.yml`:
- Line 17: Replace the non-existent enterprise image tag to restore CI/local
alignment: in docker-compose.yml change the image reference
"getmeili/meilisearch-enterprise:v1.42" to the open-source image
"getmeili/meilisearch:latest" (update the image field) so the compose file pulls
a valid tag and matches CI usage.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: fb203baa-14aa-4315-ad0b-c27d450bb189

📥 Commits

Reviewing files that changed from the base of the PR and between c162ca3 and 6d9a84a.

📒 Files selected for processing (3)
  • .github/workflows/tests.yml
  • docker-compose.yml
  • tests/get_search.test.ts

Comment thread docker-compose.yml Outdated
@Strift

Strift commented Apr 20, 2026

Copy link
Copy Markdown
Collaborator

the name of the branch triggers the pre-release workflows, which are failing, i need to fix that

@Strift
Strift force-pushed the bump-meilisearch-v1.42 branch from 6d9a84a to 1a2500c Compare July 1, 2026 07:53
@Strift Strift changed the title Bump Meilisearch to v1.42 Bump Meilisearch to v1.48 Jul 1, 2026
@Strift Strift added the maintenance Issue about maintenance (CI, tests, refacto...) label Jul 1, 2026
@codecov

codecov Bot commented Jul 1, 2026

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 98.07%. Comparing base (7d2e8c8) to head (7e2f467).

Additional details and impacted files
@@           Coverage Diff           @@
##             main    #2173   +/-   ##
=======================================
  Coverage   98.07%   98.07%           
=======================================
  Files          14       14           
  Lines         674      674           
  Branches      109      109           
=======================================
  Hits          661      661           
  Misses         12       12           
  Partials        1        1           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In @.github/workflows/pre-release-tests.yml:
- Around line 8-20: The workflow exclusion is still scoped to only
`pre-release-beta/` and `prototype-beta/`, so it does not match the new
`pre-release-**` trigger behavior and can cause duplicate `integration_tests`
runs. Update the branch exclusion logic in `tests.yml` to cover all
`pre-release-*` branches, or narrow the `meilisearch-version` trigger in
`pre-release-tests.yml` so the two workflows do not overlap. Use the existing
workflow/job conditions around `integration_tests` and `meilisearch-version` to
keep the branch matching consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 9a2816b8-3d38-4281-a42f-d015a0c57d66

📥 Commits

Reviewing files that changed from the base of the PR and between 1a2500c and 7e2f467.

📒 Files selected for processing (1)
  • .github/workflows/pre-release-tests.yml

Comment thread .github/workflows/pre-release-tests.yml
@Strift
Strift enabled auto-merge July 1, 2026 08:18
@Strift
Strift added this pull request to the merge queue Jul 1, 2026
Merged via the queue into main with commit a1fc1d3 Jul 1, 2026
8 checks passed
@Strift
Strift deleted the bump-meilisearch-v1.42 branch July 1, 2026 08:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

maintenance Issue about maintenance (CI, tests, refacto...)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants