Skip to content
Open
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
7 changes: 7 additions & 0 deletions UPGRADE-3.0.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,13 @@ class MyLiveComponent {
* Options `authReferrerPolicy`, `mapIds`, `channel`, `solutionChannel` have been added
* Options `ìd`, `nonce`, `retries`, `url` have been removed

## Svelte

* The support for Svelte 3 has been dropped, only Svelte 5 is supported now.
Make sure to upgrade your Svelte components accordingly.

TODO: to complete...

## Swup

* The package has been removed, see the [previous README](https://raw.githubusercontent.com/symfony/ux/refs/heads/2.x/src/Turbo/README.md)
Expand Down
160 changes: 74 additions & 86 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions src/Svelte/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
- Minimum required Symfony version is now 6.4
- Minimum required PHP version is now 8.2
- Remove old compatibility layer with deprecated `StimulusTwigExtension` from WebpackEncoreBundle ^1.0, use StimulusBundle instead
- Drop support of Svelte 3, only Svelte 5 is supported now

## 2.30

Expand Down
4 changes: 2 additions & 2 deletions src/Svelte/assets/dist/render_controller.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ declare class export_default extends Controller<Element & {
intro: BooleanConstructor;
};
connect(): void;
disconnect(): void;
_destroyIfExists(): void;
disconnect(): Promise<void>;
_destroyIfExists(): Promise<void>;
private dispatchEvent;
}

Expand Down
Loading
Loading