Skip to content

Commit 03a3b21

Browse files
authored
Merge pull request #3401 from bolt/release/5.1.23
Prepare release 5.1.23
2 parents b550872 + 3497170 commit 03a3b21

10 files changed

+154
-140
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
Changelog
22
=========
33

4+
## 5.1.23
5+
6+
Released: 2023-02-03
7+
8+
### 🐛 Bug fixes
9+
10+
- Partial reverse of #3395, we really need those \Iterators #3400
11+
12+
413
## 5.1.22
514

615
Released: 2023-01-31

assets/js/version.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
// generated by genversion
2-
export const version = '5.1.20';
2+
export const version = '5.1.23';

package-lock.json

+137-132
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bolt",
3-
"version": "5.1.22",
3+
"version": "5.1.23",
44
"homepage": "https://boltcms.io",
55
"author": "Bob den Otter <[email protected]> (https://boltcms.io)",
66
"license": "MIT",

src/Entity/Field/CollectionField.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
/**
1818
* @ORM\Entity
1919
*/
20-
class CollectionField extends Field implements Excerptable, FieldInterface, FieldParentInterface, ListFieldInterface, RawPersistable
20+
class CollectionField extends Field implements Excerptable, FieldInterface, FieldParentInterface, ListFieldInterface, RawPersistable, \Iterator
2121
{
2222
use FieldParentTrait;
2323
use IterableFieldTrait;

src/Entity/Field/FilelistField.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @ORM\Entity
1616
*/
17-
class FilelistField extends Field implements FieldInterface, ListFieldInterface, RawPersistable
17+
class FilelistField extends Field implements FieldInterface, ListFieldInterface, RawPersistable, \Iterator
1818
{
1919
use IterableFieldTrait;
2020

src/Entity/Field/ImagelistField.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @ORM\Entity
1616
*/
17-
class ImagelistField extends Field implements FieldInterface, ListFieldInterface, RawPersistable
17+
class ImagelistField extends Field implements FieldInterface, ListFieldInterface, RawPersistable, \Iterator
1818
{
1919
use IterableFieldTrait;
2020

src/Entity/Field/SelectField.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
/**
1515
* @ORM\Entity
1616
*/
17-
class SelectField extends Field implements FieldInterface, RawPersistable
17+
class SelectField extends Field implements FieldInterface, RawPersistable, \Iterator
1818
{
1919
use IterableFieldTrait;
2020

src/Entity/Field/SetField.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
/**
1919
* @ORM\Entity
2020
*/
21-
class SetField extends Field implements Excerptable, FieldInterface, FieldParentInterface, ListFieldInterface, RawPersistable
21+
class SetField extends Field implements Excerptable, FieldInterface, FieldParentInterface, ListFieldInterface, RawPersistable, \Iterator
2222
{
2323
use FieldParentTrait;
2424
use IterableFieldTrait;

src/Version.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ final class Version
2323
* Stable — 3.0.0
2424
* Development — 3.1.0 alpha 1
2525
*/
26-
public const VERSION = '5.1.22';
26+
public const VERSION = '5.1.23';
2727
public const CODENAME = '';
2828

2929
/**

0 commit comments

Comments
 (0)