Skip to content

Commit c8eb8aa

Browse files
bors[bot]meili-botcurquiza
authored
Merge #195
195: Changes related to the next Meilisearch release (v0.29.0) r=curquiza a=meili-bot This PR gathers the changes related to the next Meilisearch release (v0.29.0) so that this package is ready when the official release is out. ⚠️ This PR should NOT be merged until: - the next release of Meilisearch (v0.29.0) is out. - the [`meilisearch-php`](https://github.com/meilisearch/meilisearch-php) dependency has been released to be compatible with Meilisearch v0.29.0. Once the release is out, the upgrade of the `meilisearch-php` dependency might be committed to this branch. _This PR is auto-generated for the [pre-release week](https://github.com/meilisearch/integration-guides/blob/master/guides/pre-release-week.md) purpose._ _Related to this issue: https://github.com/meilisearch/integration-guides/issues/211_ Co-authored-by: meili-bot <[email protected]> Co-authored-by: Clémentine Urquizar <[email protected]>
2 parents e1abc90 + 7da0a50 commit c8eb8aa

File tree

4 files changed

+5
-2
lines changed

4 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Also, see our [Documentation](https://docs.meilisearch.com/learn/tutorials/getti
4848

4949
## 🤖 Compatibility with Meilisearch
5050

51-
This package only guarantees the compatibility with the [version v0.28.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.28.0).
51+
This package only guarantees the compatibility with the [version v0.29.0 of Meilisearch](https://github.com/meilisearch/meilisearch/releases/tag/v0.29.0).
5252

5353
## 💡 Learn More
5454

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"ext-json": "*",
2323
"doctrine/doctrine-bundle": "^2.4",
2424
"illuminate/collections": "^8.47",
25-
"meilisearch/meilisearch-php": "^0.24.2",
25+
"meilisearch/meilisearch-php": "^0.25.0",
2626
"symfony/filesystem": "^4.4 || ^5.0 || ^6.0",
2727
"symfony/property-access": "^4.4 || ^5.0 || ^6.0",
2828
"symfony/serializer": "^4.4 || ^5.0 || ^6.0"

tests/Entity/Comment.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ class Comment
2929

3030
/**
3131
* @var string
32+
*
3233
* @ORM\Column(type="text")
3334
* min=5,
3435
* minMessage="comment.too_short",
@@ -41,6 +42,7 @@ class Comment
4142

4243
/**
4344
* @var \DateTime
45+
*
4446
* @ORM\Column(type="datetime")
4547
* @Groups({"searchable"})
4648
*/

tests/Entity/Post.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ class Post
4545

4646
/**
4747
* @var Comment[]|Collection
48+
*
4849
* @ORM\OneToMany(
4950
* targetEntity="Comment",
5051
* mappedBy="post",

0 commit comments

Comments
 (0)