Skip to content

Releases: QwikDev/qwik

v0.0.106

29 Aug 16:31
5eb4933
Compare
Choose a tag to compare

What's Changed

New Contributors

  • @jhadev made their first contribution in #1143
  • @jmmon made their first contribution in #1130
  • @ahhshm made their first contribution in #1153

Full Changelog: v0.0.105...v0.0.106

v0.0.105

24 Aug 20:57
1757694
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.104...v0.0.105

v0.0.104

24 Aug 14:30
0e8dee9
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.103...v0.0.104

v0.0.103

23 Aug 04:06
448184b
Compare
Choose a tag to compare

What's Changed

Full Changelog: v0.0.102...v0.0.103

v0.0.102

23 Aug 01:06
d1dc4fb
Compare
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
Compare
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
Compare
Choose a tag to compare

What's Changed

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

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