Skip to content

Releases: QwikDev/qwik

v0.0.102

23 Aug 01:06
d1dc4fb

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.101...v0.0.102

v0.0.101

21 Aug 16:41
82a4073

Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v0.0.100...v0.0.101

v0.0.100

11 Aug 16:10
2f313ce

Choose a tag to compare

What's Changed

Full Changelog: v0.0.42...v0.0.100

v0.0.42

10 Aug 11:48
6838b7f

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

Choose a tag to compare

What's Changed

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

v0.0.40

09 Aug 16:59
d6360ac

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

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

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

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

Choose a tag to compare

What's Changed

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