Skip to content

Commit 7dbfb81

Browse files
weaverryandaFish
authored andcommitted
adding missing entries to 2.5 CHANGELOG
1 parent 1050b08 commit 7dbfb81

File tree

4 files changed

+27
-1
lines changed

4 files changed

+27
-1
lines changed

src/Autocomplete/CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,16 @@
66
than your limit, when the user scrolls to the bottom of the options, it will
77
make a second Ajax call to load more.
88

9+
- Added `max_results` option to limit the number of results returned by the
10+
Ajax endpoint - #478.
11+
12+
- Support added for setting the required minimum search query length (defaults to 3) (#492)
13+
14+
- Fix support for more complex ids, like UUIDs - #494.
15+
16+
- Fixed bug where sometimes an error could occur in the Ajax call related to
17+
the label - #520.
18+
919
## 2.4.0
1020

11-
- Support added for setting the required minimum search query length (defaults to 3) (#492) - @daFish
21+
- Component added!

src/LiveComponent/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
- [BEHAVIOR CHANGE] If a model is updated, but the new value is equal to the old
3636
one, a re-render will now be avoided.
3737
38+
- [BEHAVIOR CHANGE] Priority of `DoctrineObjectNormalizer` changed from 100 to -100
39+
so that any custom normalizers are used before trying `DoctrineObjectNormalizer`.
40+
3841
- [BC BREAK] The `live:update-model` and `live:render` events are not longer
3942
dispatched. You can now use the "hook" system directly on the `Component` object/
4043
@@ -50,6 +53,11 @@
5053
- Added the ability to add `data-loading` behavior, which is only activated
5154
when a specific **model** has been updated - e.g. `<span data-loading="model(firstName)|show">Loading</span>`.
5255
56+
- Unexpected Ajax errors are now displayed in a modal to ease debugging! #467.
57+
58+
- Fixed bug where sometimes a live component was broken after hitting "Back:
59+
in your browser - #436.
60+
5361
## 2.4.0
5462
5563
- [BC BREAK] Previously, the `id` attribute was used with `morphdom` as the

src/TwigComponent/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
- Added `PostMountEvent` and `PreMountEvent` which are dispatched just before
1414
or after the component's data is mounted.
1515

16+
- Added Twig template namespaces - #460.
17+
1618
## 2.2
1719

1820
- Allow to pass stringable object as non mapped component attribute.

src/Vue/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# CHANGELOG
22

3+
## 2.5
4+
5+
- Added support for lazily-loaded Vue components - #482.
6+
7+
- Added `vue:before-mount` JavaScript event - #444.
8+
39
## 2.4
410

511
- Component added

0 commit comments

Comments
 (0)