Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency @builder.io/qwik to v1.12.0 #63

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 22, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) 1.2.18 -> 1.12.0 age adoption passing confidence

Release Notes

QwikDev/qwik (@​builder.io/qwik)

v1.12.0

Compare Source

Minor Changes
  • ✨ The build constants isDev, isBrowser and isServer are now exported from @builder.io/qwik directly, so they are more discoverable and easier to add. @builder.io/qwik/build still remains. (by @​wmertens in #​7138)
Patch Changes

v1.11.0

Compare Source

Minor Changes
  • CHORE: Prepare backwards compatibility for V1 libraries in V2. (by @​wmertens in #​7044)

    We move internal fields immutableProps and flags out of JSXNode as they are not meant for public use.

    This will allow projects using older V1 libraries to continue to work with the Qwik V2 by adding the following package.json changes:

    {
      "dependencies": {
        "@​builder.io/qwik": "^1.11.0",
        "@​qwik.dev/core": "^2.0.0"
      }
    }

    And will prevent typescript errors when using libraries which haven't upgraded to V2 yet.

  • ✨ add monorepo support to the qwik add command by adding a projectDir param (by @​shairez in #​7059)

    That way you can run qwik add --projectDir=packages/my-package and it will add the feature to the specified project/package (sub) folder, instead of the root folder.

v1.10.0

Compare Source

Minor Changes
  • Async functions in useComputed are deprecated. (by @​wmertens in #​7013)

    Why?

    • Qwik can't track used signals after the first await, which leads to subtle bugs.
    • When calculating the first time, it will see it's a promise and it will restart the render function.
    • Both useTask and useResource are available, without these problems.

    In v2, async functions won't work.

    Again, to get the same functionality use useTask or useResource instead, or this function:

    export const useAsyncComputed$ = (qrlFn: QRL<() => Promise<any>>) => {
      const sig = useSignal();
      useTask(({ track }) => {
        const result = track(qrlFn);
        if (result && 'then' in result) {
          result.then(
            (val) => (sig.value = val),
            (err) => {
              console.error('async computed function threw!', err);
              throw error;
            }
          );
        } else {
          sig.value = result;
        }
      });
      return sig;
    };
  • ✨ Expose unwrapStore as a low level AP (by @​GrandSchtroumpf in #​6960)

    This enables developers to clone the content of a useStore() using structureClone or IndexedDB

Patch Changes
  • 📃 fix useResource docs example & remove unused demo (by @​ianlet in #​6893)

  • 🐞🩹 QRL segment filenames are no longer lowercased. This was giving trouble with parent lookups in dev mode and there was no good reason for it. (by @​wmertens in #​7003)

  • 🐞🩹 the type for <textarea> now accepts text children, as per spec. (by @​wmertens in #​7016)

  • 🐞🩹 dev-mode QRL paths are now handled by Vite so they are the same as the parent paths. You can see this in the Sources section of the browser devtools, where the segments are now always next to their parents (when the parent is loaded). (by @​wmertens in #​7037)

  • 🐞🩹 vite is now a peer dependency of qwik, qwik-city, qwik-react and qwik-labs, so that there can be no duplicate imports. This should not have consequences, since all apps also directly depend on vite. (by @​wmertens in #​6945)

  • ✨ sync$ QRLs will now be serialized into the HTML in a shorter form (by @​wmertens in #​6944)

  • 🐞🩹 cli build command appearing to "hang" on errors (by @​shairez in #​6943)

  • ✨ Allow setting linkFetchPriority for modulepreload links in the prefetch strategy. Also fix the links in dev mode (by @​GrandSchtroumpf in #​6947)

v1.9.1

Compare Source

Patch Changes
  • ✨ showing qrl parent names. (by @​wmertens in #​6881)
    in dev mode, qrl segments now start with their parent filename so it's easy to see where they came from. Furthermore, in production builds these filenames are also used so that origins in q-manifest.json are easy to understand.

  • 🐞🩹 Optimizer now ignores unknown deps in graph that caused crashes during build (by @​wmertens in #​6888)

  • 🐞🩹 Do not allow object methods to be serialized with style prop (by @​jakovljevic-mladen in #​6932)

  • 🐞🩹 In dev mode, changes to QRLs now explicitly invalidate the segment so that the browser will reload it (by @​wmertens in #​6938)

v1.9.0

Compare Source

Patch Changes
  • ✨ Introducing the experimental[] option to the Vite plugin. This allows you to opt in to features that are not guaranteed to have a stable API. (by @​wmertens in #​6880)

  • 🐞🩹 fix typo in using useStore() (by @​zaynet in #​6875)

  • 🐞🩹 gracefully handle image dimensions service errors (by @​JerryWu1234 in #​6855)

  • ✨ Lib builds no longer perform qwik transformation. (by @​wmertens in #​6850)

    This prevents using unstable internal APIs, and doesn't make a difference for the end user. Library authors are strongly urged to push a new library patch version built with this qwik version, and to add | ^2.0.0 to their accepted qwik version range.

  • 🐞🩹 SSG Link component strips search parameters (by @​JerryWu1234 in #​6778)

  • 🐞🩹 The PrefetchServiceWorker now has a more efficient graph and only prefetches direct imports and, at a lower priority, task QRL segments. This greatly improves its load performance. (by @​wmertens in #​6853)

v1.8.0

Compare Source

Minor Changes
  • Updated SWC parser means that the optimizer now understands import ... with syntax and that enums are replaced with numbers where possible. (by @​wmertens in #​6005)

  • The optimizer plugin will now rely on Rollup to group QRL segments. It will only provide hints on which segments fit well together. The result of this change is that now code splitting happens during the transform phase only, and other Rollup/Vite plugins (such as css-in-js plugins) can transform the code before Qwik transforms it. (by @​wmertens in #​6670)

  • The default asset filenames in the build have changed. Now they are under assets/hash-name.ext, so they are clearly separated from code. (by @​wmertens in #​5745)

Patch Changes
  • The fileFilter option to qwikVite() now always allows *.qwik.{m,c,}js files so that QRLs in libraries can be processed. (by @​wmertens in #​6760)

v1.7.3

v1.7.2

Patch Changes
  • Library builds now correctly generate _fnSignal calls again. Any Qwik library that exports components should be built again. (by @​wmertens in #​6732)

    • built files are now under dist/ or lib/. All tools that respect package export maps should just work. (by @​wmertens in #​6715)
      If you have trouble with Typescript, ensure that you use moduleResolution: "Bundler" in your tsconfig.json.
    • @builder.io/qwik no longer depends on undici
  • fix dev mode on windows (by @​Varixo in #​6713)

v1.7.1

Compare Source

What's Changed

There are very important bugfixes around build and development in this release and we recommend upgrading.

PRs

Full Changelog: QwikDev/qwik@v1.7.0...v1.7.1

v1.7.0

Compare Source

Notable changes
  • Form errors when using dot notation have a slightly different type
  • Changes to search parameters in the URL will cause routeloaders to re-run now
  • Fixed several issues in dev mode
PRs merged
New Contributors

Full Changelog: QwikDev/qwik@v1.6.0...v1.7.0

v1.6.0

Compare Source

What's Changed
Features
Bug Fixes
Docs
New Contributors

Full Changelog: QwikDev/qwik@v1.5.7...v1.6.0

v1.5.7

Compare Source

What's Changed
New Contributors

Full Changelog: QwikDev/qwik@v1.5.6...v1.5.7

v1.5.6

Compare Source

What's Changed

Many bugfixes and documentation updates.

We also added an API tech preview: createSignal, useConstant and createComputed$, which should be self-explanatory. Feedback welcome on Discord or in issues. We cannot guarantee the stability of these APIs yet, although they are simple enough that they probably won't need changing.

Commits
New Contributors

Full Changelog: QwikDev/qwik@v1.5.5...v1.5.6

v1.5.5

Compare Source

What's Changed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

sweep-ai bot commented Nov 22, 2023

Apply Sweep Rules to your PR?

  • Apply: All new business logic should have corresponding unit tests.
  • Apply: Refactor large functions to be more modular.
  • Apply: Add docstrings to all functions and file headers.

@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.2.19 chore(deps): update dependency @builder.io/qwik to v1.3.0 Dec 6, 2023
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 2d5be83 to 7514728 Compare December 6, 2023 23:16
@pull-request-size pull-request-size bot added size/L and removed size/S labels Dec 6, 2023
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch 2 times, most recently from b4531cb to cdd9da5 Compare December 14, 2023 21:08
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.0 chore(deps): update dependency @builder.io/qwik to v1.3.1 Dec 15, 2023
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch 2 times, most recently from 494a63d to 26c60ab Compare December 16, 2023 21:10
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 26c60ab to b8d1baa Compare January 1, 2024 22:40
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.1 chore(deps): update dependency @builder.io/qwik to v1.3.2 Jan 1, 2024
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.2 chore(deps): update dependency @builder.io/qwik to v1.3.3 Jan 10, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch 2 times, most recently from f4e0c95 to 1e33619 Compare January 11, 2024 20:08
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.3 chore(deps): update dependency @builder.io/qwik to v1.3.4 Jan 11, 2024
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.4 chore(deps): update dependency @builder.io/qwik to v1.3.5 Jan 12, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 1e33619 to c423c7d Compare January 12, 2024 12:14
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.3.5 chore(deps): update dependency @builder.io/qwik to v1.4.0 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch 2 times, most recently from f0fe93f to d124829 Compare January 25, 2024 14:51
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.4.0 chore(deps): update dependency @builder.io/qwik to v1.4.1 Jan 25, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from d124829 to a4abfb8 Compare January 27, 2024 01:52
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.4.1 chore(deps): update dependency @builder.io/qwik to v1.4.2 Jan 27, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from a4abfb8 to 4d00f74 Compare January 30, 2024 16:28
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.4.2 chore(deps): update dependency @builder.io/qwik to v1.4.3 Jan 30, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 4d00f74 to 9813a8f Compare February 7, 2024 01:38
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.4.3 chore(deps): update dependency @builder.io/qwik to v1.4.4 Feb 7, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 9813a8f to 3f2231c Compare February 13, 2024 22:42
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 04b9f00 to f87b0df Compare June 9, 2024 15:01
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.5.5 chore(deps): update dependency @builder.io/qwik to v1.5.6 Jun 9, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from f87b0df to 70ce6c5 Compare June 12, 2024 17:25
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.5.6 chore(deps): update dependency @builder.io/qwik to v1.5.7 Jun 12, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 70ce6c5 to 6efb77f Compare June 28, 2024 21:09
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.5.7 chore(deps): update dependency @builder.io/qwik to v1.6.0 Jun 28, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 6efb77f to ebb11ac Compare July 9, 2024 22:03
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.6.0 chore(deps): update dependency @builder.io/qwik to v1.7.0 Jul 9, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from ebb11ac to 6a64d9a Compare July 11, 2024 14:44
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.7.0 chore(deps): update dependency @builder.io/qwik to v1.7.1 Jul 11, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 6a64d9a to f2aa1d2 Compare July 29, 2024 18:22
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.7.1 chore(deps): update dependency @builder.io/qwik to v1.7.2 Jul 29, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from f2aa1d2 to 3ee60c2 Compare July 30, 2024 00:11
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.7.2 chore(deps): update dependency @builder.io/qwik to v1.7.3 Jul 30, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 3ee60c2 to 6954268 Compare August 8, 2024 14:02
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.7.3 chore(deps): update dependency @builder.io/qwik to v1.8.0 Aug 8, 2024
Copy link

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

Review details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits

Files that changed from the base of the PR and between f04658f and 6954268.

Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
Files selected for processing (1)
  • package.json (1 hunks)
Additional comments not posted (1)
package.json (1)

40-40: Verify compatibility and potential impact of the @builder.io/qwik update.

The update from version 1.2.18 to 1.8.0 is a significant upgrade. Ensure that the updated package is compatible with the existing codebase and test thoroughly to identify any breaking changes or new features that might affect functionality.

@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 6954268 to 4c504cd Compare September 17, 2024 15:13
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.8.0 chore(deps): update dependency @builder.io/qwik to v1.9.0 Sep 17, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 4c504cd to 91afd9d Compare October 6, 2024 19:22
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.9.0 chore(deps): update dependency @builder.io/qwik to v1.9.1 Oct 6, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 91afd9d to 0e4e890 Compare November 11, 2024 18:15
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.9.1 chore(deps): update dependency @builder.io/qwik to v1.10.0 Nov 11, 2024
@pull-request-size pull-request-size bot added size/M and removed size/L labels Nov 11, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 0e4e890 to 36533c1 Compare November 25, 2024 18:01
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.10.0 chore(deps): update dependency @builder.io/qwik to v1.11.0 Nov 25, 2024
@renovate renovate bot force-pushed the renovate/builder.io-qwik-1.x branch from 36533c1 to 737bdfb Compare December 23, 2024 14:06
@renovate renovate bot changed the title chore(deps): update dependency @builder.io/qwik to v1.11.0 chore(deps): update dependency @builder.io/qwik to v1.12.0 Dec 23, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants