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

Update All #21

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

Update All #21

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 17, 2023

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) 1.9.0 -> 1.12.0 age adoption passing confidence
@builder.io/qwik-city (source) 1.9.0 -> 1.12.0 age adoption passing confidence
@​luminescent/ui 1.2.9 -> 1.3.1 age adoption passing confidence
@​luminescent/ui-qwik 1.2.9 -> 1.3.1 age adoption passing confidence
eslint-plugin-qwik (source) 1.9.0 -> 1.12.0 age adoption passing confidence
postcss (source) 8.4.47 -> 8.5.1 age adoption passing confidence
tailwindcss (source) 3.4.13 -> 3.4.17 age adoption passing confidence
typescript (source) 5.6.2 -> 5.7.3 age adoption passing confidence
undici (source) 6.19.8 -> 6.21.1 age adoption passing confidence
vite (source) 5.4.8 -> 5.4.11 age adoption passing confidence
vite-tsconfig-paths 5.0.1 -> 5.1.4 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)

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

v1.12.0

Compare Source

Patch Changes

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).
QwikDev/qwik (eslint-plugin-qwik)

v1.12.0

Compare Source

v1.11.0

Compare Source

v1.10.0

Compare Source

Patch Changes

v1.9.1

Compare Source

postcss/postcss (postcss)

v8.5.1

Compare Source

v8.5.0

Compare Source

v8.4.49

Compare Source

v8.4.48

Compare Source

  • Fixed position calculation in error/warnings methods (by @​romainmenke).
tailwindlabs/tailwindcss (tailwindcss)

v3.4.17

Compare Source

v3.4.16

Compare Source

Fixed
  • Ensure the TypeScript types for PluginsConfig allow undefined values (#​14668)

Changed

v3.4.15

Compare Source

  • Bump versions for security vulnerabilities (#​14697)
  • Ensure the TypeScript types for the boxShadow theme configuration allows arrays (#​14856)
  • Set fallback for opacity variables to ensure setting colors with the selection:* variant works in Chrome 131 (#​15003)

v3.4.14

Compare Source

Fixed
  • Don't set display: none on elements that use hidden="until-found" (#​14625)
microsoft/TypeScript (typescript)

v5.7.3

Compare Source

v5.7.2

Compare Source

v5.6.3

Compare Source

nodejs/undici (undici)

v6.21.1

Compare Source

v6.21.0

Compare Source

What's Changed

Full Changelog: nodejs/undici@v6.20.1...v6.21.0

v6.20.1

Compare Source

v6.20.0

Compare Source

What's Changed

Full Changelog: nodejs/undici@v6.19.8...v6.20.0

vitejs/vite (vite)

v5.4.11

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.10

Compare Source

Please refer to CHANGELOG.md for details.

v5.4.9

Compare Source

Please refer to CHANGELOG.md for details.

aleclarson/vite-tsconfig-paths (vite-tsconfig-paths)

v5.1.4

Compare Source

v5.1.3

Compare Source

  • fix: Once an importer is matched, end directory traversal (b0d8ecb)
  • feat: Add vite-tsconfig-paths:resolve debug logs (7160d6e)
  • chore: Ensure debug logs can be enabled in vitest (0dc9a8b)

v5.1.2

Compare Source

  • fix Windows regression introduced in v5.1.1 (#​162)

v5.1.1

Compare Source

  • support ${configDir} syntax in include/exclude (#​156)

v5.1.0

Compare Source

  • Add skip option for adding additional directories to be skipped when searching for tsconfig.json files (#​146)
  • Fix path resolution on Windows when other Vite plugins neglect to normalize the importer path before calling this.resolve in their resolveId hooks (#​157)
  • Allow both tsconfig.json and jsconfig.json in the same directory (4124b09)

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get 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.

@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Jun 17, 2023

Deploying luminescent with  Cloudflare Pages  Cloudflare Pages

Latest commit: a5be514
Status: ✅  Deploy successful!
Preview URL: https://01c38156.luminescent.pages.dev
Branch Preview URL: https://renovate-all.luminescent.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 2c272a1 to 6575368 Compare July 3, 2023 11:11
@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 29eaf61 to c538baf Compare July 11, 2023 15:45
@renovate renovate bot changed the title Update All Update All - autoclosed Jul 13, 2023
@renovate renovate bot closed this Jul 13, 2023
@renovate renovate bot deleted the renovate/all branch July 13, 2023 07:43
@renovate renovate bot changed the title Update All - autoclosed Update All Jul 13, 2023
@renovate renovate bot reopened this Jul 13, 2023
@renovate renovate bot restored the renovate/all branch July 13, 2023 17:40
@renovate renovate bot changed the title Update All Update dependency tailwindcss to v3.3.3 Jul 13, 2023
@renovate renovate bot changed the title Update dependency tailwindcss to v3.3.3 Update All Jul 13, 2023
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 1a4bf49 to 99fec2b Compare July 14, 2023 17:05
@renovate renovate bot changed the title Update All Update All - autoclosed Jul 16, 2023
@renovate renovate bot closed this Jul 16, 2023
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 66ff8b6 to adfc063 Compare October 8, 2024 22:42
@renovate renovate bot changed the title Update All to v1.9.1 Update All Oct 8, 2024
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from d52bb4a to 40f9b2f Compare October 15, 2024 11:19
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 060d58c to 8783970 Compare November 11, 2024 16:25
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from f847da5 to 3c49c70 Compare November 14, 2024 21:45
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 22a4ff8 to 6758760 Compare November 25, 2024 16:11
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from dfb352e to 698338a Compare December 6, 2024 17:40
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from ce08d75 to ff9ad40 Compare December 23, 2024 10:52
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 801a98e to 9995163 Compare January 14, 2025 14:05
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