Update getmeili/meilisearch Docker tag to v1.45.2 #1

Open
Renovate wants to merge 1 commit from renovate/getmeili-meilisearch-1.x into main
Collaborator

This PR contains the following updates:

Package Update Change
getmeili/meilisearch minor v1.43.1v1.45.1

Release Notes

meilisearch/meilisearch (getmeili/meilisearch)

v1.45.1: 🦒

Compare Source

🪲 Bug Fixes

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.45.0...v1.45.1

v1.45.0: 🦒

Compare Source

Meilisearch v1.45.0 mainly improves indexing performance when changing settings and also improves document fetch performance.

Enhancement
  • Autobatch deletions by filter with additions by @​Kerollmops in #​6389
    While Meilisearch tries to improve indexing speed when users add documents and mix those additions with deletions via a filter, it is still an anti-pattern to interleave both. It is recommended to delete documents by ID whenever possible, as the engine is optimized to merge them, thereby drastically speeding up indexation.
  • Improve settings indexing performance & visibility
    We are introducing support for more settings in the nez settings indexer. If you find any bugs, please report them on GitHub. You can disable the new settings indexer by setting the environment variable like this: MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGS=true or use the equivalent dedicated CLI parameter.
    • Support non-extracting parameters by @​Kerollmops in #​6393
      Changing one of the following settings is now directly handled by the new settings indexer: displayed fields, synonyms, the primary key, authorize typos, min word len one and two typos, max values per facet, sort facet values by, pagination max total hits, search cut off, chat, and foreign keys.
    • Support the global facet search by @​Kerollmops in #​6390
      Meilisearch can use the new settings indexer when the settings change the facet search root boolean parameter.
🪲 Bug Fixes
  • Fetching documents no longer blocks the actix worker @​dureuill in #​6402
  • Fix an internal error when changing the binary quantization by @​Kerollmops in #​6396
    We fixed an issue where users were changing the binary-quantized boolean in embedder configurations. The change corrupted the database, making it impossible to change the quantization in the future. Users had to create a binary-quantized embedder from scratch, or they could never change it again.
🔩 Miscellaneous

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.44.0...v1.45.0

v1.44.0

Compare Source

Meilisearch v1.44.0 adds remote federated facet search, indexing performance improvements, and other improvements and bugfixes. It also contains a couple of breaking changes, detailed below.

Breaking changes

  • When using the network experimental feature, with sharding enabled (leader is not null in the network configuration), POST /indexes/{indexUid}/facet-search calls now default to a remote federated facet search, fetching and merging results from all shards in the network.
  • The timeout for calling an external REST embedder at search time is now tied to the searchCutOffMs defined in the index, rather than fixed.

🌈 Improvements

Meilisearch now has the ability to search across all shards of a network during facet search via the existing dedicated facet search route.

  • If you are using the network experimental feature and have a leader defined for your network, remote calls are now the default for calls to POST /indexes/{indexUid}/facet-search
  • The behavior can be controlled explicitly via the new useNetwork parameter of the facet search object.

By @​dureuill in https://github.com/meilisearch/meilisearch/pull/6375

Reduce memory usage of the indexing

Reduces allocated memory when computing prefixes and speeds up some operations to avoid unnecessary deserialization.

If you still see high memory usage while the engine is post-processing, we recommend using the --experimental-reduce-indexing-memory-usage option.

By @​Kerollmops in https://github.com/meilisearch/meilisearch/pull/6334

Improve GeoJSON indexing performance

This PR upgrades the cellulite library to a version that includes a GeoJSON indexing optimization. With this change, GeoJSON indexing avoids reprocessing documents that were already indexed in dense cells, and only handles newly added documents incrementally as they descend through the recursive cell tree.

By @​YoEight in https://github.com/meilisearch/meilisearch/pull/6374

Human-formatted sizes and detailed DB sizes in stats

Adds two new query parameters to GET /indexes/{indexUid}/stats and GET /stats:

  • showInternalDatabaseSizes: boolean, optional, defaults to false. When present, the index stat objects in responses of the stat routes now contain an additional internalDatabaseSizes key, whose value is a dictionary of the internal database names and their current size in the index, like in the stats object of a batch.
  • sizeFormat: human or raw: optional, defaults to raw. When present and set to human, then all database sizes in responses of the stat routes will be returned as a string containing an appropriate unit (MiB, GiB, etc). When missing or set to raw, then the current behavior of expressing the size in bytes as a number is retained.

Note for integrations: The keys in internalDatabaseSizes are subject to change and should not be exposed as a strongly typed object. This is the same as the existing internalDatabaseSizes in batch stats.

Adding showInternalDatabaseSizes to an index stats

// curl -X GET "http://localhost:7700/indexes/movies/stats?showInternalDatabaseSizes=true"
{
  "numberOfDocuments": 31944,
  "rawDocumentDbSize": 20594688,
  "avgDocumentSize": 636,
  "isIndexing": false,
  "internalDatabaseSizes": {
    "wordPairProximityDocids": 100827136,
    "documents": 20594688,
    "wordPositionDocids": 18694144,
    "wordFidDocids": 10715136,
    "wordPrefixPositionDocids": 10256384,
    "wordDocids": 9453568,
    "wordPrefixFidDocids": 4603904,
    "wordPrefixDocids": 3424256,
    "main": 1425408,
    "externalDocumentsIds": 999424,
    "fieldIdWordCountDocids": 245760,
    "exactWordPrefixDocids": 16384,
    "celluliteMetadata": 16384
  },
  "numberOfEmbeddings": 0,
  "numberOfEmbeddedDocuments": 0,
  "fieldDistribution": {
    "genres": 31944,
    "id": 31944,
    "overview": 31944,
    "poster": 31944,
    "release_date": 31944,
    "title": 31944
  }
}

Adding showInternalDatabaseSizes and sizeFormat=human to global stats

// curl -X GET "http://localhost:7700/stats?showInternalDatabaseSizes=true&sizeFormat=human"
{
  "databaseSize": "351.38 MiB",
  "usedDatabaseSize": "350.64 MiB",
  "lastUpdate": "2026-04-16T13:07:02.74243Z",
  "indexes": {
    "comics": {
      "numberOfDocuments": 31944,
      "rawDocumentDbSize": "23.14 MiB",
      "avgDocumentSize": "751 B",
      "isIndexing": false,
      "internalDatabaseSizes": {
        "wordPairProximityDocids": "98.06 MiB",
        "documents": "23.14 MiB",
        "wordPositionDocids": "17.22 MiB",
        "wordFidDocids": "10.36 MiB",
        "wordPrefixPositionDocids": "9.47 MiB",
        "wordDocids": "8.97 MiB",
        "wordPrefixFidDocids": "4.36 MiB",
        "wordPrefixDocids": "3.27 MiB",
        "main": "1.36 MiB",
        "externalDocumentsIds": "944 KiB",
        "fieldIdWordCountDocids": "240 KiB",
        "exactWordPrefixDocids": "16 KiB",
        "celluliteMetadata": "16 KiB"
      },
      "numberOfEmbeddings": 0,
      "numberOfEmbeddedDocuments": 0,
      "fieldDistribution": {
        "genres": 31944,
        "id": 31944,
        "overview": 31944,
        "poster": 31944,
        "release_date": 31944,
        "title": 31944
      }
    },
    "movies": {
      "numberOfDocuments": 31944,
      "rawDocumentDbSize": "19.64 MiB",
      "avgDocumentSize": "636 B",
      "isIndexing": false,
      "internalDatabaseSizes": {
        "wordPairProximityDocids": "96.16 MiB",
        "documents": "19.64 MiB",
        "wordPositionDocids": "17.83 MiB",
        "wordFidDocids": "10.22 MiB",
        "wordPrefixPositionDocids": "9.78 MiB",
        "wordDocids": "9.02 MiB",
        "wordPrefixFidDocids": "4.39 MiB",
        "wordPrefixDocids": "3.27 MiB",
        "main": "1.36 MiB",
        "externalDocumentsIds": "976 KiB",
        "fieldIdWordCountDocids": "240 KiB",
        "exactWordPrefixDocids": "16 KiB",
        "celluliteMetadata": "16 KiB"
      },
      "numberOfEmbeddings": 0,
      "numberOfEmbeddedDocuments": 0,
      "fieldDistribution": {
        "genres": 31944,
        "id": 31944,
        "overview": 31944,
        "poster": 31944,
        "release_date": 31944,
        "title": 31944
      }
    }
  }
}

The call without any parameters is the same as in previous versions.

// curl -X GET "http://localhost:7700/stats"
{
  "databaseSize": 368443392,
  "usedDatabaseSize": 367673344,
  "lastUpdate": "2026-04-16T13:07:02.74243Z",
  "indexes": {
    "comics": {
      "numberOfDocuments": 31944,
      "rawDocumentDbSize": 24264704,
      "avgDocumentSize": 751,
      "isIndexing": false,
      "numberOfEmbeddings": 0,
      "numberOfEmbeddedDocuments": 0,
      "fieldDistribution": {
        "genres": 31944,
        "id": 31944,
        "overview": 31944,
        "poster": 31944,
        "release_date": 31944,
        "title": 31944
      }
    },
    "movies": {
      "numberOfDocuments": 31944,
      "rawDocumentDbSize": 20594688,
      "avgDocumentSize": 636,
      "isIndexing": false,
      "numberOfEmbeddings": 0,
      "numberOfEmbeddedDocuments": 0,
      "fieldDistribution": {
        "genres": 31944,
        "id": 31944,
        "overview": 31944,
        "poster": 31944,
        "release_date": 31944,
        "title": 31944
      }
    }
  }
}

By @​dureuill in https://github.com/meilisearch/meilisearch/pull/6338

🦋 Fixes

🔩 Miscellaneous changes

New Contributors

Full Changelog: https://github.com/meilisearch/meilisearch/compare/v1.43.1...v1.44.0


Configuration

📅 Schedule: (in timezone Europe/Berlin)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [getmeili/meilisearch](https://github.com/meilisearch/meilisearch) | minor | `v1.43.1` → `v1.45.1` | --- ### Release Notes <details> <summary>meilisearch/meilisearch (getmeili/meilisearch)</summary> ### [`v1.45.1`](https://github.com/meilisearch/meilisearch/releases/tag/v1.45.1): 🦒 [Compare Source](https://github.com/meilisearch/meilisearch/compare/v1.45.0...v1.45.1) ##### 🪲 Bug Fixes - Revert autobatch deletions by filter with additions by [@&#8203;kerollmops](https://github.com/kerollmops) in [#&#8203;6412](https://github.com/meilisearch/meilisearch/pull/6412) **Full Changelog**: <https://github.com/meilisearch/meilisearch/compare/v1.45.0...v1.45.1> ### [`v1.45.0`](https://github.com/meilisearch/meilisearch/releases/tag/v1.45.0): 🦒 [Compare Source](https://github.com/meilisearch/meilisearch/compare/v1.44.0...v1.45.0) Meilisearch v1.45.0 mainly improves indexing performance when changing settings and also improves document fetch performance. ##### ✨ Enhancement - **Autobatch deletions by filter with additions** by [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6389](https://github.com/meilisearch/meilisearch/pull/6389) While Meilisearch tries to improve indexing speed when users add documents and mix those additions with deletions via a filter, it is still an anti-pattern to interleave both. It is recommended to delete documents by ID whenever possible, as the engine is optimized to merge them, thereby drastically speeding up indexation. - **Improve settings indexing performance & visibility** We are introducing support for more settings in the nez settings indexer. If you find any bugs, please report them on GitHub. You can disable the new settings indexer by setting the environment variable like this: `MEILI_EXPERIMENTAL_NO_EDITION_2024_FOR_SETTINGS=true` or use the equivalent dedicated CLI parameter. - **Support non-extracting parameters** by [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6393](https://github.com/meilisearch/meilisearch/pull/6393) Changing one of the following settings is now directly handled by the new settings indexer: displayed fields, synonyms, the primary key, authorize typos, min word len one and two typos, max values per facet, sort facet values by, pagination max total hits, search cut off, chat, and foreign keys. - **Support the global facet search** by [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6390](https://github.com/meilisearch/meilisearch/pull/6390) Meilisearch can use the new settings indexer when the settings change the facet search root boolean parameter. ##### 🪲 Bug Fixes - **Fetching documents no longer blocks the actix worker** [@&#8203;dureuill](https://github.com/dureuill) in [#&#8203;6402](https://github.com/meilisearch/meilisearch/pull/6402) - **Fix an internal error when changing the binary quantization** by [@&#8203;Kerollmops](https://github.com/Kerollmops) in [#&#8203;6396](https://github.com/meilisearch/meilisearch/pull/6396) We fixed an issue where users were changing the binary-quantized boolean in embedder configurations. The change corrupted the database, making it impossible to change the quantization in the future. Users had to create a binary-quantized embedder from scratch, or they could never change it again. ##### 🔩 Miscellaneous - Make timeout test less flaky on Windows by [@&#8203;dureuill](https://github.com/dureuill) in [#&#8203;6388](https://github.com/meilisearch/meilisearch/pull/6388) **Full Changelog**: <https://github.com/meilisearch/meilisearch/compare/v1.44.0...v1.45.0> ### [`v1.44.0`](https://github.com/meilisearch/meilisearch/releases/tag/v1.44.0) [Compare Source](https://github.com/meilisearch/meilisearch/compare/v1.43.1...v1.44.0) Meilisearch v1.44.0 adds remote federated facet search, indexing performance improvements, and other improvements and bugfixes. It also contains a couple of breaking changes, detailed below. ### Breaking changes - When using the `network` experimental feature, with sharding enabled (`leader` is not `null` in the network configuration), `POST /indexes/{indexUid}/facet-search` calls now default to a remote federated facet search, fetching and merging results from all shards in the network. - The timeout for calling an external REST embedder at search time is now tied to the `searchCutOffMs` defined in the index, rather than fixed. - If you observe missing semantic results after upgrading, or HTTP 500 errors for pure semantic search, please increase the value of the search cutoff in the index settings. - By [@&#8203;dureuill](https://github.com/dureuill) in https://github.com/meilisearch/meilisearch/pull/6377 ### 🌈 Improvements #### Remote facet search Meilisearch now has the ability to search across all shards of a network during facet search via the existing dedicated facet search route. - If you are using the `network` experimental feature and have a `leader` defined for your network, **remote calls are now the default** for calls to `POST /indexes/{indexUid}/facet-search` - The behavior can be controlled explicitly via the new `useNetwork` parameter of the [facet search object](https://www.meilisearch.com/docs/reference/api/facet-search/search-in-facets#body-facet-name). By [@&#8203;dureuill](https://github.com/dureuill) in https://github.com/meilisearch/meilisearch/pull/6375 #### Reduce memory usage of the indexing Reduces allocated memory when computing prefixes and speeds up some operations to avoid unnecessary deserialization. If you still see high memory usage while the engine is post-processing, we recommend using the `--experimental-reduce-indexing-memory-usage` option. By [@&#8203;Kerollmops](https://github.com/Kerollmops) in https://github.com/meilisearch/meilisearch/pull/6334 #### Improve GeoJSON indexing performance This PR upgrades the `cellulite` library to a version that includes a GeoJSON indexing optimization. With this change, GeoJSON indexing avoids reprocessing documents that were already indexed in dense cells, and only handles newly added documents incrementally as they descend through the recursive cell tree. By [@&#8203;YoEight](https://github.com/YoEight) in https://github.com/meilisearch/meilisearch/pull/6374 #### Human-formatted sizes and detailed DB sizes in stats Adds two new query parameters to `GET /indexes/{indexUid}/stats` and `GET /stats`: - `showInternalDatabaseSizes`: boolean, optional, defaults to `false`. When present, the index stat objects in responses of the stat routes now contain an additional `internalDatabaseSizes` key, whose value is a dictionary of the internal database names and their current size in the index, like in the stats object of a batch. - `sizeFormat`: `human` or `raw`: optional, defaults to `raw`. When present and set to `human`, then all database sizes in responses of the stat routes will be returned as a string containing an appropriate unit (MiB, GiB, etc). When missing or set to `raw`, then the current behavior of expressing the size in bytes as a number is retained. Note for integrations: The keys in `internalDatabaseSizes` are subject to change and should not be exposed as a strongly typed object. This is the same as the existing `internalDatabaseSizes` in batch stats. <details> <summary> Adding `showInternalDatabaseSizes` to an index stats </summary> ```jsonc // curl -X GET "http://localhost:7700/indexes/movies/stats?showInternalDatabaseSizes=true" { "numberOfDocuments": 31944, "rawDocumentDbSize": 20594688, "avgDocumentSize": 636, "isIndexing": false, "internalDatabaseSizes": { "wordPairProximityDocids": 100827136, "documents": 20594688, "wordPositionDocids": 18694144, "wordFidDocids": 10715136, "wordPrefixPositionDocids": 10256384, "wordDocids": 9453568, "wordPrefixFidDocids": 4603904, "wordPrefixDocids": 3424256, "main": 1425408, "externalDocumentsIds": 999424, "fieldIdWordCountDocids": 245760, "exactWordPrefixDocids": 16384, "celluliteMetadata": 16384 }, "numberOfEmbeddings": 0, "numberOfEmbeddedDocuments": 0, "fieldDistribution": { "genres": 31944, "id": 31944, "overview": 31944, "poster": 31944, "release_date": 31944, "title": 31944 } } ``` </details> <details> <summary> Adding `showInternalDatabaseSizes` and `sizeFormat=human` to global stats </summary> ```jsonc // curl -X GET "http://localhost:7700/stats?showInternalDatabaseSizes=true&sizeFormat=human" { "databaseSize": "351.38 MiB", "usedDatabaseSize": "350.64 MiB", "lastUpdate": "2026-04-16T13:07:02.74243Z", "indexes": { "comics": { "numberOfDocuments": 31944, "rawDocumentDbSize": "23.14 MiB", "avgDocumentSize": "751 B", "isIndexing": false, "internalDatabaseSizes": { "wordPairProximityDocids": "98.06 MiB", "documents": "23.14 MiB", "wordPositionDocids": "17.22 MiB", "wordFidDocids": "10.36 MiB", "wordPrefixPositionDocids": "9.47 MiB", "wordDocids": "8.97 MiB", "wordPrefixFidDocids": "4.36 MiB", "wordPrefixDocids": "3.27 MiB", "main": "1.36 MiB", "externalDocumentsIds": "944 KiB", "fieldIdWordCountDocids": "240 KiB", "exactWordPrefixDocids": "16 KiB", "celluliteMetadata": "16 KiB" }, "numberOfEmbeddings": 0, "numberOfEmbeddedDocuments": 0, "fieldDistribution": { "genres": 31944, "id": 31944, "overview": 31944, "poster": 31944, "release_date": 31944, "title": 31944 } }, "movies": { "numberOfDocuments": 31944, "rawDocumentDbSize": "19.64 MiB", "avgDocumentSize": "636 B", "isIndexing": false, "internalDatabaseSizes": { "wordPairProximityDocids": "96.16 MiB", "documents": "19.64 MiB", "wordPositionDocids": "17.83 MiB", "wordFidDocids": "10.22 MiB", "wordPrefixPositionDocids": "9.78 MiB", "wordDocids": "9.02 MiB", "wordPrefixFidDocids": "4.39 MiB", "wordPrefixDocids": "3.27 MiB", "main": "1.36 MiB", "externalDocumentsIds": "976 KiB", "fieldIdWordCountDocids": "240 KiB", "exactWordPrefixDocids": "16 KiB", "celluliteMetadata": "16 KiB" }, "numberOfEmbeddings": 0, "numberOfEmbeddedDocuments": 0, "fieldDistribution": { "genres": 31944, "id": 31944, "overview": 31944, "poster": 31944, "release_date": 31944, "title": 31944 } } } } ``` </details> <details> <summary> The call without any parameters is the same as in previous versions. </summary> ```jsonc // curl -X GET "http://localhost:7700/stats" { "databaseSize": 368443392, "usedDatabaseSize": 367673344, "lastUpdate": "2026-04-16T13:07:02.74243Z", "indexes": { "comics": { "numberOfDocuments": 31944, "rawDocumentDbSize": 24264704, "avgDocumentSize": 751, "isIndexing": false, "numberOfEmbeddings": 0, "numberOfEmbeddedDocuments": 0, "fieldDistribution": { "genres": 31944, "id": 31944, "overview": 31944, "poster": 31944, "release_date": 31944, "title": 31944 } }, "movies": { "numberOfDocuments": 31944, "rawDocumentDbSize": 20594688, "avgDocumentSize": 636, "isIndexing": false, "numberOfEmbeddings": 0, "numberOfEmbeddedDocuments": 0, "fieldDistribution": { "genres": 31944, "id": 31944, "overview": 31944, "poster": 31944, "release_date": 31944, "title": 31944 } } } } ``` </details> By [@&#8203;dureuill](https://github.com/dureuill) in https://github.com/meilisearch/meilisearch/pull/6338 ### 🦋 Fixes - Settings changes performed via a settings subroute (**not** the ["all settings" route](https://www.meilisearch.com/docs/reference/api/settings/update-all-settings)) are now correctly propagated to other remotes on the network. By [@&#8203;dureuill](https://github.com/dureuill) in https://github.com/meilisearch/meilisearch/pull/6380 - The chat route no longer fails in some condition when using Mistral as a provider. By [@&#8203;renezander030](https://github.com/renezander030) in https://github.com/meilisearch/meilisearch/pull/6327 - Prevent accidentally renaming a remote when modifying the network configuration. By [@&#8203;dureuill](https://github.com/dureuill) in https://github.com/meilisearch/meilisearch/pull/6370 ### 🔩 Miscellaneous changes - Replace boolean by PatternMatch for searchable by [@&#8203;ManyTheFish](https://github.com/ManyTheFish) in https://github.com/meilisearch/meilisearch/pull/6344 - Add query to federated search metadata by [@&#8203;StephaneRob](https://github.com/StephaneRob) in https://github.com/meilisearch/meilisearch/pull/6371 - Remove issue template for feature issues by [@&#8203;curquiza](https://github.com/curquiza) in https://github.com/meilisearch/meilisearch/pull/6372 - Improve the documentation of the health route by [@&#8203;Kerollmops](https://github.com/Kerollmops) in https://github.com/meilisearch/meilisearch/pull/6376 #### New Contributors - [@&#8203;renezander030](https://github.com/renezander030) made their first contribution in https://github.com/meilisearch/meilisearch/pull/6327 - [@&#8203;quyentonndbs](https://github.com/quyentonndbs) made their first contribution in https://github.com/meilisearch/meilisearch/pull/6382 **Full Changelog**: https://github.com/meilisearch/meilisearch/compare/v1.43.1...v1.44.0 </details> --- ### Configuration 📅 **Schedule**: (in timezone Europe/Berlin) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC40OS4wIiwidXBkYXRlZEluVmVyIjoiNDMuMjA1LjEiLCJ0YXJnZXRCcmFuY2giOiJtYWluIiwibGFiZWxzIjpbXX0=-->
kreativmonkey merged commit into main 2026-03-16 19:38:10 +01:00
chore(deps): update getmeili/meilisearch docker tag to v1.45.1
Some checks failed
/ secret_scanner (push) Failing after 7s
6911aecfde
Renovate changed title from chore(deps): update getmeili/meilisearch docker tag to v1.45.1 to Update getmeili/meilisearch Docker tag to v1.45.1 2026-06-01 14:03:11 +02:00
Renovate force-pushed renovate/getmeili-meilisearch-1.x from 6911aecfde
Some checks failed
/ secret_scanner (push) Failing after 7s
to bdc3cfc0fb
Some checks failed
/ secret_scanner (push) Failing after 5s
2026-06-02 18:01:24 +02:00
Compare
Renovate changed title from Update getmeili/meilisearch Docker tag to v1.45.1 to Update getmeili/meilisearch Docker tag to v1.45.2 2026-06-02 18:01:26 +02:00
Some checks failed
/ secret_scanner (push) Failing after 5s
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/getmeili-meilisearch-1.x:renovate/getmeili-meilisearch-1.x
git switch renovate/getmeili-meilisearch-1.x

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff renovate/getmeili-meilisearch-1.x
git switch renovate/getmeili-meilisearch-1.x
git rebase main
git switch main
git merge --ff-only renovate/getmeili-meilisearch-1.x
git switch renovate/getmeili-meilisearch-1.x
git rebase main
git switch main
git merge --no-ff renovate/getmeili-meilisearch-1.x
git switch main
git merge --squash renovate/getmeili-meilisearch-1.x
git switch main
git merge --ff-only renovate/getmeili-meilisearch-1.x
git switch main
git merge renovate/getmeili-meilisearch-1.x
git push origin main
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
kreativmonkey/homelab-app!1
No description provided.