Skip to content

Releases: preactjs/wmr

wmr 1.7.0

02 May 09:17
43da1f1
Compare
Choose a tag to compare

Minor Changes

Patch Changes

preact-iso 2.0.0

02 May 09:16
43da1f1
Compare
Choose a tag to compare

Major Changes

  • 8e8690a #557 Thanks @marvinhagemeister! - Fix route params being able to overwrite route context. This is a breaking change in that params no need to be pulled off a params object instead of accessing it directly
// Example route: /foo/:id

// before
const id = useRoute().id

// after
const id = useRoute().params.id

Patch Changes

wmr 1.6.0

25 Apr 10:37
7f0d540
Compare
Choose a tag to compare

Minor Changes

  • 81771f5 #543 Thanks @Inviz! - Fixes an issue that caused scss/sass modules to not be properly updated when new classes were added to the file.

Patch Changes

preact-iso 1.2.0

25 Apr 10:35
7f0d540
Compare
Choose a tag to compare

Minor Changes

  • a7e79c9 #530 Thanks @developit! - <Router> is now an async boundary (it handles lazy() descendants by itself), and supports cancellable + stacked route transitions.

Patch Changes

  • 8d5d1d8 #534 Thanks @developit! - [preact-iso] Support setting a manual URL via <LocationProvider url="/" />

create-wmr@0.3.3

25 Apr 10:36
7f0d540
Compare
Choose a tag to compare

Patch Changes

@wmrjs/service-worker 0.3.0

25 Apr 10:34
7f0d540
Compare
Choose a tag to compare

Minor Changes

@wmrjs/nomodule 0.2.0

25 Apr 10:34
7f0d540
Compare
Choose a tag to compare

Minor Changes

@wmrjs/directory-import 0.2.0

25 Apr 10:35
7f0d540
Compare
Choose a tag to compare

Minor Changes

wmr 1.5.0

31 Mar 12:39
fd6b179
Compare
Choose a tag to compare

Minor Changes

Patch Changes

  • 483601f #498 Thanks @developit! - Bugfix: Fix a crash when prerendering encounters an error, and show pretty-printed stack traces instead.

  • f15a0c5 #500 Thanks @developit! - Bugfix: fixes a crash when initializing Chokidar on some systems

preact-iso 1.1.1

31 Mar 12:40
fd6b179
Compare
Choose a tag to compare

Patch Changes

  • 2d0bb8a #504 Thanks @developit! - Bugfix: fix route flashing for routes that render fragments

  • 321dfce #496 Thanks @developit! - [preact-iso] Router: reset page scroll position on forward navigations

  • c07c39f #505 Thanks @developit! - [preact-iso] Prevent the router from intercepting clicks on anchor links

  • 764830f #493 Thanks @developit! - [preact-iso] Prevent the Router from intercepting clicks on links with an "external" target (target="anything").