Skip to content

Releases: QwikDev/qwik

v0.0.42

10 Aug 11:48
6838b7f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.41...v0.0.42

v0.0.41

09 Aug 20:53
2856b5d
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.40...v0.0.41

v0.0.40

09 Aug 16:59
d6360ac
Compare
Choose a tag to compare

What's Changed

useWatch() track argument changes

Previously useWatch() was passed a callback which would receive a track function. As of 0.0.40 the passed in argument is now an object with the track property that's a function.

-useWatch$((track) => {
+useWatch$(({ track }) => {
  const doubleCount = track(store, 'doubleCount');
  const timer = setTimeout(() => {
    store.debounced = doubleCount;
  }, 2000);
  return () => {
    clearTimeout(timer);
  };
 });

useScopedStyles() renamed to useStylesScoped()

- import { useScopedStyles } from '@builder.io/qwik';
+ import { useStylesScoped } from '@builder.io/qwik';

Features

Fixes

Refactor

New Contributors

Full Changelog: v0.0.39...v0.0.40

v0.0.39

26 Jul 19:44
9b4915a
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.38...v0.0.39

v0.0.38

21 Jul 16:21
e6bbf39
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.37...v0.0.38

v0.0.37

19 Jul 04:07
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.36...v0.0.37

v0.0.36

13 Jul 18:28
242bdb0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.35...v0.0.36

v0.0.35

13 Jul 15:03
5d0a7ae
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.34...v0.0.35

v0.0.34

30 Jun 23:30
170f6ba
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.33...v0.0.34

v0.0.33

29 Jun 16:21
622721c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.32...v0.0.33