|
4 | 4 |
|
5 | 5 | ### Major Changes |
6 | 6 |
|
7 | | -- 🐞🩹 `runQrl is not a function` is not a problem any more thanks to a thorough refactor of QRL handling. (by [@Varixo](https://github.com/Varixo) in [#8227](https://github.com/QwikDev/qwik/pull/8227)) |
8 | | - BREAKING: qwikloader now expects a different syntax for QRLs. You cannot use the v2 qwikloader with v1 containers. |
| 7 | +- 🐞🩹 `runQrl is not a function` is not a problem any more thanks to a thorough refactor of QRL handling. (by [@wmertens](https://github.com/wmertens) and [@Varixo](https://github.com/Varixo) in [#8227](https://github.com/QwikDev/qwik/pull/8227)) |
9 | 8 |
|
| 9 | +- BREAKING: qwikloader now expects a different syntax for QRLs. You cannot use the v2 qwikloader with v1 containers. |
10 | 10 | - BREAKING: If you rerender a component with `qidle` or `qinit` handlers, those will run again. Previously they would only run when they were present while the page was first loaded. (by [@wmertens](https://github.com/wmertens) in [#8292](https://github.com/QwikDev/qwik/pull/8292)) |
11 | | - BREAKING: qwikloader no longer support v1 containers. If you want to use v1 containers, you must add the v1 qwikloader on the page as well. |
12 | | - BREAKING: event handlers attributes used to be converted to `on:kebab-eventname` and `on-window:kebab-eventname`, and now they are converted to `q-e:kebab-event-name` and `q-w:kebab-event-name`. This simplifies the parsing and avoids qwikloader v1 trying to handle these events. These are undocumented internal names only, so this should not affect you. |
13 | | - BREAKING: QRLs used to be separated by newline characters in event handler attributes, and are now separated by `|`. This should not affect you. |
14 | | - FIX: `preventdefault:event` and `stoppropagation:event` now expect the event name to be in kebab-case. Note that they were already enforcing lowercase names, and DOM events are almost all lowercase, so this just allows working with custom events. |
15 | | - FEAT: Qwikloader now supports containers added at runtime: It will run `qinit`, `qidle` and `qvisible` events as appropriate. |
| 11 | + |
| 12 | +- BREAKING: qwikloader no longer support v1 containers. If you want to use v1 containers, you must add the v1 qwikloader on the page as well. |
| 13 | + |
| 14 | +- BREAKING: event handlers attributes used to be converted to `on:kebab-eventname` and `on-window:kebab-eventname`, and now they are converted to `q-e:kebab-event-name` and `q-w:kebab-event-name`. This simplifies the parsing and avoids qwikloader v1 trying to handle these events. These are undocumented internal names only, so this should not affect you. |
| 15 | + |
| 16 | +- BREAKING: QRLs used to be separated by newline characters in event handler attributes, and are now separated by `|`. This should not affect you. |
| 17 | + |
| 18 | +- 🐞🩹: `preventdefault:event` and `stoppropagation:event` now expect the event name to be in kebab-case. Note that they were already enforcing lowercase names, and DOM events are almost all lowercase, so this just allows working with custom events. |
| 19 | + |
| 20 | +- ✨: Qwikloader now supports containers added at runtime: It will run `qinit`, `qidle` and `qvisible` events as appropriate. |
16 | 21 |
|
17 | 22 | ### Patch Changes |
18 | 23 |
|
|
0 commit comments