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 all #11

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

chore(deps): update all #11

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) 1.8.0 -> 1.11.0 age adoption passing confidence
@builder.io/qwik-city (source) 1.8.0 -> 1.11.0 age adoption passing confidence
@​luminescent/ui 1.2.4 -> 1.3.1 age adoption passing confidence
@​luminescent/ui-qwik 1.2.4 -> 1.3.1 age adoption passing confidence
@types/eslint (source) 8.56.11 -> 8.56.12 age adoption passing confidence
@types/node (source) 22.5.0 -> 22.10.2 age adoption passing confidence
@types/node (source) 22.4.2 -> 22.10.2 age adoption passing confidence
chart.js (source) 4.4.4 -> 4.4.7 age adoption passing confidence
eslint-plugin-qwik (source) 1.8.0 -> 1.11.0 age adoption passing confidence
pnpm (source) 9.1.0 -> 9.15.0 age adoption passing confidence
postcss (source) 8.4.41 -> 8.4.49 age adoption passing confidence
tailwindcss (source) 3.4.10 -> 3.4.16 age adoption passing confidence
tsx (source) 4.18.0 -> 4.19.2 age adoption passing confidence
typescript (source) 5.5.4 -> 5.7.2 age adoption passing confidence
undici (source) 6.19.2 -> 6.21.0 age adoption passing confidence
undici (source) 6.19.8 -> 6.21.0 age adoption passing confidence
vite (source) 5.4.2 -> 5.4.11 age adoption passing confidence
vite-tsconfig-paths 5.0.1 -> 5.1.4 age adoption passing confidence
wrangler (source) 3.72.1 -> 3.95.0 age adoption passing confidence

Release Notes

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

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)

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

v1.11.0

Compare Source

v1.10.0

Compare Source

Patch Changes
  • 🐞🩹 MDX content no longer ignores Layout components. See the MDX docs for more information. (by @​danielvaijk in #​6845)

  • 🐞🩹 SSG errors now show the path that failed (by @​wmertens in #​6998)

  • 🐞🩹 Fixed action redirect regression where searchParams were appended (by @​brandonpittman in #​6927)

  • 🐞🩹 Redirect, error, and fail request events no longer forcefully delete user-defined Cache-Control HTTP header value. (by @​nelsonprsousa in #​6991)

  • 🐞🩹 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)

  • 🐞🩹 Fixed MDX layout default export being ignored by transformer. (by @​danielvaijk in #​6845)

  • 🐞🩹 Prevent unexpected caching for q-data.json (by @​genki in #​6808)

  • 🐞🩹 Multiple rewrite routes pointing to the same route is no longer an error. (by @​JerryWu1234 in #​6970)

v1.9.1

Compare Source

Patch Changes
  • ✨ Experimental feature - noSPA. (by @​wmertens in #​6937)
    This disables history patching, slightly reducing code size and startup time. Use this when your application is MPA only, meaning you don't use the Link component. To enable this, add it to the experimental array of the qwikVite plugin (not the qwikCity plugin).

v1.9.0

Compare Source

Minor Changes
  • (EXPERIMENTAL) valibot$ validator and a fix for zod$ types. (by @​fabian-hiller in #​6752)

    To use it, you need to pass experimental: ['valibot'] as an option to the qwikVite plugin as such:

    // vite.config.ts
    
    export default defineConfig(({ command, mode }): UserConfig => {
      return {
        plugins: [
          // ... other plugins like qwikCity() etc
          qwikVite({
            experimental: ['valibot']
            // ... other options
          }),
    
        ],
        // ... rest of the config
      };
    }
  • (EXPERIMENTAL) usePreventNavigate lets you prevent navigation while your app's state is unsaved. It works asynchronously for SPA navigation and falls back to the browser's default dialogs for other navigations. To use it, add experimental: ['preventNavigate'] to your qwikVite options. (by @​wmertens in #​6825)

Patch Changes
  • 🐞🩹 added .ico to be detected by isStaticFile (by @​intellix in #​6860)

  • 🐞🩹 fixed delays caused from inefficient Service Worker prefetching (buffering) (by @​shairez in #​6863)

chartjs/Chart.js (chart.js)

v4.4.7

Compare Source

Essential Links
Types
  • #​11521 fix: correct typing for doughnut, pie, and polarArea charts
  • #​11948 Export TRBL from geometric
Documentation
  • #​11968 Add documentation about setting default tooltip fonts
  • #​11962 Show correct title in multi series pie chart example
Development

Thanks to @​Connormiha, @​DustinEwan, @​LeeLenaleee, @​dependabot and @​dependabot[bot]

v4.4.6

Compare Source

v4.4.5

Compare Source

Essential Links

Bugs Fixed

  • #​11927 Don't apply default colors in the colors plugin when defaults are used
  • #​11907 Avoid error if borderOpts.dash is undefined
  • #​11882 Fix initial dataset stacks

Types

  • #​11931 Allow array's in backgroundColor defaults and add hover background and border color to defaults

Documentation

Development

Thanks to @​HieroglypH, @​LeeLenaleee, @​dependabot, @​dependabot[bot] and @​dregad

QwikDev/qwik (eslint-plugin-qwik)

v1.11.0

Compare Source

v1.10.0

Compare Source

Patch Changes

v1.9.1

Compare Source

v1.9.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.0

Compare Source

v9.14.4

Compare Source

v9.14.3

Compare Source

v9.14.2

Compare Source

Patch Changes

  • pnpm publish --json should work #​8788.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.1

Compare Source

Minor Changes

  • Added support for pnpm pack --json to print packed tarball and contents in JSON format #​8765.

Patch Changes

  • pnpm exec should print a meaningful error message when no command is provided #​8752.
  • pnpm setup should remove the CLI from the target location before moving the new binary #​8173.
  • Fix ERR_PNPM_TARBALL_EXTRACT error while installing a dependency from GitHub having a slash in branch name #​7697.
  • Don't crash if the use-node-version setting is used and the system has no Node.js installed #​8769.
  • Convert settings in local .npmrc files to their correct types. For instance, child-concurrency should be a number, not a string #​5075.
  • pnpm should fail if a project requires a different package manager even if manage-package-manager-versions is set to true.
  • pnpm init should respect the --dir option #​8768.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

v9.14.0

Compare Source

v9.13.2: pnpm 9.13.2

Compare Source

Patch Changes

  • Detection of circular peer dependencies should not crash with aliased dependencies #​8759. Fixes a regression introduced in the previous version.
  • Fix race condition of symlink creations caused by multiple parallel dlx processes.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
Depot moonrepo
devowl.io Cerbos
vlt Vite

v9.13.1: pnpm 9.13.1

Compare Source

Patch Changes

  • Fixed some edge cases where resolving circular peer dependencies caused a dead lock #​8720.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me

Silver Sponsors

Leniolabs_ Vercel
config help if that's undesired.


  • 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

cloudflare-workers-and-pages bot commented May 9, 2024

Deploying ui with  Cloudflare Pages  Cloudflare Pages

Latest commit: fe02b9b
Status:🚫  Build failed.

View logs

@renovate renovate bot changed the title Update dependency wrangler to v3.55.0 Update All May 10, 2024
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 78adf2b to b3c5105 Compare May 17, 2024 14:46
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from a8dd0f0 to 8477199 Compare May 27, 2024 11:39
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from 36f842f to b307c97 Compare June 4, 2024 11:33
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 934c82b to 12c69c6 Compare June 10, 2024 22:42
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from c9faf4f to 5e8a1a5 Compare November 20, 2024 14:08
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from 8caa4d2 to af80429 Compare November 28, 2024 18:30
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 4cbc657 to e6178db Compare December 5, 2024 05:12
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 015e966 to ed48113 Compare December 10, 2024 20:44
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants