From 07ed5c57e4eeac1dc75b5a461a7346f8e8176452 Mon Sep 17 00:00:00 2001 From: curquiza Date: Mon, 25 Aug 2025 19:12:28 +0200 Subject: [PATCH 1/2] Fix license detection --- LICENSE-EE => LICENSE-EE.md | 0 LICENSE => LICENSE.md | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename LICENSE-EE => LICENSE-EE.md (100%) rename LICENSE => LICENSE.md (100%) diff --git a/LICENSE-EE b/LICENSE-EE.md similarity index 100% rename from LICENSE-EE rename to LICENSE-EE.md diff --git a/LICENSE b/LICENSE.md similarity index 100% rename from LICENSE rename to LICENSE.md From 062c9c6971d1ce96b9993b0549553183ab9ec48e Mon Sep 17 00:00:00 2001 From: curquiza Date: Mon, 25 Aug 2025 19:39:24 +0200 Subject: [PATCH 2/2] Fix links --- LICENSE.md | 2 +- README.md | 6 +++--- crates/meilisearch-types/src/enterprise_edition/mod.rs | 2 +- crates/meilisearch-types/src/enterprise_edition/network.rs | 2 +- .../src/routes/indexes/enterprise_edition/mod.rs | 2 +- .../src/routes/indexes/enterprise_edition/proxy.rs | 2 +- .../milli/src/update/new/indexer/enterprise_edition/mod.rs | 2 +- .../src/update/new/indexer/enterprise_edition/sharding.rs | 2 +- 8 files changed, 10 insertions(+), 10 deletions(-) diff --git a/LICENSE.md b/LICENSE.md index c6ed62f37..17fda2f28 100644 --- a/LICENSE.md +++ b/LICENSE.md @@ -26,4 +26,4 @@ SOFTWARE. Certain parts of this codebase are not licensed under the MIT license and governed by the Business Source License 1.1. -See the LICENSE-EE file for details. +See the LICENSE-EE.md file for details. diff --git a/README.md b/README.md index aa371d650..598341891 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@

Dependency status - License + License Merge Queues enabled

@@ -95,7 +95,7 @@ Meilisearch is available in two editions: ### 🧪 Community Edition (CE) -- Fully open source under the [MIT license](./LICENSE) +- Fully open source under the [MIT license](./LICENSE.md) - Core search engine with fast and relevant full-text, semantic or hybrid search - Free to use for anyone, including commercial usage @@ -103,7 +103,7 @@ Meilisearch is available in two editions: - Includes advanced features such as: - Sharding -- Governed by a [commercial license](./LICENSE-EE) or the [Business Source License 1.1](https://mariadb.com/bsl11) +- Governed by a [commercial license](./LICENSE-EE.md) or the [Business Source License 1.1](https://mariadb.com/bsl11) - Not allowed in production without a commercial agreement with Meilisearch. - You may use, modify, and distribute the Licensed Work for non-production purposes only, such as testing, development, or evaluation. diff --git a/crates/meilisearch-types/src/enterprise_edition/mod.rs b/crates/meilisearch-types/src/enterprise_edition/mod.rs index 47047de48..a8ab640cb 100644 --- a/crates/meilisearch-types/src/enterprise_edition/mod.rs +++ b/crates/meilisearch-types/src/enterprise_edition/mod.rs @@ -1,6 +1,6 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at pub mod network; diff --git a/crates/meilisearch-types/src/enterprise_edition/network.rs b/crates/meilisearch-types/src/enterprise_edition/network.rs index 9d5c51e25..37b74e574 100644 --- a/crates/meilisearch-types/src/enterprise_edition/network.rs +++ b/crates/meilisearch-types/src/enterprise_edition/network.rs @@ -1,7 +1,7 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at use std::collections::BTreeMap; diff --git a/crates/meilisearch/src/routes/indexes/enterprise_edition/mod.rs b/crates/meilisearch/src/routes/indexes/enterprise_edition/mod.rs index a3ca7350c..7fe2e093c 100644 --- a/crates/meilisearch/src/routes/indexes/enterprise_edition/mod.rs +++ b/crates/meilisearch/src/routes/indexes/enterprise_edition/mod.rs @@ -1,6 +1,6 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at pub mod proxy; diff --git a/crates/meilisearch/src/routes/indexes/enterprise_edition/proxy.rs b/crates/meilisearch/src/routes/indexes/enterprise_edition/proxy.rs index 7cb3eb8cc..257ec85ef 100644 --- a/crates/meilisearch/src/routes/indexes/enterprise_edition/proxy.rs +++ b/crates/meilisearch/src/routes/indexes/enterprise_edition/proxy.rs @@ -1,7 +1,7 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at use std::collections::BTreeMap; use std::fs::File; diff --git a/crates/milli/src/update/new/indexer/enterprise_edition/mod.rs b/crates/milli/src/update/new/indexer/enterprise_edition/mod.rs index 9f89e8e31..a0a5b0e53 100644 --- a/crates/milli/src/update/new/indexer/enterprise_edition/mod.rs +++ b/crates/milli/src/update/new/indexer/enterprise_edition/mod.rs @@ -1,6 +1,6 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at pub mod sharding; diff --git a/crates/milli/src/update/new/indexer/enterprise_edition/sharding.rs b/crates/milli/src/update/new/indexer/enterprise_edition/sharding.rs index c0322f868..bb30feff7 100644 --- a/crates/milli/src/update/new/indexer/enterprise_edition/sharding.rs +++ b/crates/milli/src/update/new/indexer/enterprise_edition/sharding.rs @@ -1,7 +1,7 @@ // Copyright © 2025 Meilisearch Some Rights Reserved // This file is part of Meilisearch Enterprise Edition (EE). // Use of this source code is governed by the Business Source License 1.1, -// as found in the LICENSE-EE file or at +// as found in the LICENSE-EE.md file or at use std::hash::{BuildHasher as _, BuildHasherDefault};