Skip to content

Commit

Permalink
Merge branch 'release/3.3.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
janhenckens committed Mar 1, 2024
2 parents 1a1248d + d7a3390 commit 0d46893
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

All notable changes to this project will be documented in this file.

## 3.3.3 - 2024-03-01
### Fixed
- Fixed an issues with updating and deleting split elements ([#259](https://github.com/studioespresso/craft-scout/issues/259) & [#281](https://github.com/studioespresso/craft-scout/issues/281))
- Fixed an error in DeindexElementJob

## 3.3.3-beta.2 - 2024-02-13
### Fixed
- Fixed missing deletion of orphans of split elements ([#259](https://github.com/studioespresso/craft-scout/issues/259))
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "studioespresso/craft-scout",
"description": "Craft Scout provides a simple solution for adding full-text search to your entries. Scout will automatically keep your search indexes in sync with your entries.",
"type": "craft-plugin",
"version": "3.3.3-beta.2",
"version": "3.3.3",
"keywords": [
"craft",
"cms",
Expand Down
2 changes: 1 addition & 1 deletion src/jobs/DeindexElement.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class DeindexElement extends BaseJob
public $id;

/** @var int|null */
public int|null $siteId;
public int|null $siteId = null;

public function execute($queue): void
{
Expand Down

0 comments on commit 0d46893

Please sign in to comment.