Skip to content

adding missing entries to 2.5 CHANGELOG #531

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion src/Autocomplete/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
than your limit, when the user scrolls to the bottom of the options, it will
make a second Ajax call to load more.

- Added `max_results` option to limit the number of results returned by the
Ajax endpoint - #478.

- Support added for setting the required minimum search query length (defaults to 3) (#492)

- Fix support for more complex ids, like UUIDs - #494.

- Fixed bug where sometimes an error could occur in the Ajax call related to
the label - #520.

## 2.4.0

- Support added for setting the required minimum search query length (defaults to 3) (#492) - @daFish
- Component added!
8 changes: 8 additions & 0 deletions src/LiveComponent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@
- [BEHAVIOR CHANGE] If a model is updated, but the new value is equal to the old
one, a re-render will now be avoided.

- [BEHAVIOR CHANGE] Priority of `DoctrineObjectNormalizer` changed from 100 to -100
so that any custom normalizers are used before trying `DoctrineObjectNormalizer`.

- [BC BREAK] The `live:update-model` and `live:render` events are not longer
dispatched. You can now use the "hook" system directly on the `Component` object/

Expand All @@ -50,6 +53,11 @@
- Added the ability to add `data-loading` behavior, which is only activated
when a specific **model** has been updated - e.g. `<span data-loading="model(firstName)|show">Loading</span>`.

- Unexpected Ajax errors are now displayed in a modal to ease debugging! #467.

- Fixed bug where sometimes a live component was broken after hitting "Back:
in your browser - #436.

## 2.4.0

- [BC BREAK] Previously, the `id` attribute was used with `morphdom` as the
Expand Down
2 changes: 2 additions & 0 deletions src/TwigComponent/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
- Added `PostMountEvent` and `PreMountEvent` which are dispatched just before
or after the component's data is mounted.

- Added Twig template namespaces - #460.

## 2.2

- Allow to pass stringable object as non mapped component attribute.
Expand Down
6 changes: 6 additions & 0 deletions src/Vue/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# CHANGELOG

## 2.5

- Added support for lazily-loaded Vue components - #482.

- Added `vue:before-mount` JavaScript event - #444.

## 2.4

- Component added