Skip to content

The latest news releases from the Qwik team

August 9th, 2022

v0.0.40

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: https://github.com/BuilderIO/qwik/compare/v0.0.39...v0.0.40

Contributors:

  • builder
  • manucorporat
  • mhevery
  • adamdbradley
  • nnelgxorz
  • robisim74
  • shairez
  • gilf
  • ImBIOS
  • Priestch
  • forresst
  • felixsanz

July 26th, 2022

v0.0.39

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.0.38...v0.0.39

Contributors:

  • manucorporat
  • adamdbradley
  • nnelgxorz
  • craigshoemaker
  • youngboy
  • szepeviktor

July 21st, 2022

v0.0.38

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.0.37...v0.0.38

Contributors:

  • nnelgxorz
  • shairez
  • adamdbradley
  • manucorporat
  • leibale
  • craigshoemaker

July 19th, 2022

v0.0.37

What's Changed

New Contributors

Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.0.36...v0.0.37

Contributors:

  • adamdbradley
  • craigshoemaker
  • shairez
  • manucorporat
  • do
  • nnelgxorz
  • mhevery
  • isaac

July 13th, 2022

v0.0.36

What's Changed

Full Changelog: https://github.com/BuilderIO/qwik/compare/v0.0.35...v0.0.36

Contributors:

  • craigshoemaker
  • manucorporat
  • mhevery
1
...
26
27
28
...
30