Skip to content

Update All #55

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

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

Update All #55

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 6, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@builder.io/qwik (source) 1.11.0 -> 1.14.1 age adoption passing confidence
@builder.io/qwik-city (source) 1.11.0 -> 1.14.1 age adoption passing confidence
@​luminescent/ui 1.3.1 -> 1.4.4 age adoption passing confidence
@​luminescent/ui-qwik 1.3.1 -> 1.4.4 age adoption passing confidence
@types/eslint (source) 8.56.10 -> 8.56.12 age adoption passing confidence
autoprefixer 10.4.20 -> 10.4.21 age adoption passing confidence
eslint-plugin-qwik (source) 1.11.0 -> 1.14.1 age adoption passing confidence
pnpm (source) 9.14.4 -> 9.15.9 age adoption passing confidence
postcss (source) 8.4.49 -> 8.5.4 age adoption passing confidence
typescript (source) 5.7.2 -> 5.8.3 age adoption passing confidence
undici (source) 7.1.0 -> 7.10.0 age adoption passing confidence
uuid 11.0.3 -> 11.1.0 age adoption passing confidence
vite (source) 5.1.8 -> 5.4.19 age adoption passing confidence
zod (source) 3.23.8 -> 3.25.51 age adoption passing confidence

Release Notes

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

v1.14.1

Compare Source

v1.14.0

Compare Source

Minor Changes
  • ✨ Major improvements to prefetching with automatic bundle preloading (by @​wmertens in #​7453)

    • This removes the need for service workers, and instead utilize modulepreload link tags for better browser integration.
    • Improves initial load performance by including dynamic imports in the prefetch
    • Reduces complexity while maintaining similar (and even better) functionality
    • Enables some preloading capabilities in dev mode (SSR result only)
    • Includes path-to-bundle mapping in bundle graph (this improves the experience using the <Link> component, AKA "single page app" mode)
    • Server now has built-in manifest support (so no need to pass manifest around)
    • Moves insights-related build code to insights plugin

    ⚠️ ATTENTION:

    • Keep your service worker code as is (either <ServiceWorkerRegister/> or <PrefetchServiceWorker/>).
    • Configure your server to provide long caching headers.

    Service Worker:

    This new implementation will use it to uninstall the current service worker to reduce the unnecessary duplication.

    The builtin service workers components are deprecated but still exist for backwards compatibility.

    ⚠️ IMPORTANT: Caching Headers:

    The files under build/ and assets/ are named with their content hash and may therefore be cached indefinitely. Typically you should serve build/* and assets/* with Cache-Control: public, max-age=31536000, immutable.

    However, if you changed the rollup configuration for output filenames, you will have to adjust the caching configuration accordingly.


    You can configure the preload behavior in your SSR configuration:

    // entry.ssr.ts
    export default function (opts: RenderToStreamOptions) {
      return renderToStream(<Root />, {
        preload: {
          // Enable debug logging for preload operations
          debug: true,
          // Maximum simultaneous preload links
          maxIdlePreloads: 5,
          // Minimum probability threshold for preloading
          preloadProbability: 0.25
          // ...and more, see the type JSDoc on hover
        },
        ...opts,
      });
    }
Optional for legacy apps:

For legacy apps that still need service worker functionality, you can add it back using:

npm run qwik add service-worker

This will add a basic service worker setup that you can customize for specific caching strategies, offline support, or other PWA features beyond just prefetching.

Patch Changes

v1.13.0

Compare Source

Minor Changes
  • The useTask# @&#8203;builder.io/qwik function's eagerness` option is deprecated and will be removed in version 2. (by @​sreeisalso in #​7345)
Patch Changes
  • 🐞🩹 Error boundary ErrorBoundary and fix useErrorBoundary (by @​damianpumar in #​7342)

  • 🐞 🩹 The qwik-city ServiceWorkerRegister and qwik PrefetchServiceWorker now prefetch all their qrls to prevent under-prefetching (by @​maiieul in #​7417)

  • 🐞🩹 When csr is true, it causes a crash because resolve cannot be null as the second parameter (by @​JerryWu1234 in #​7420)

  • updated drizzle to latest version (by @​sreeisalso in #​7288)

  • 🐞 fix(rollup): improve manualChunks logic to minimize over-prefetching (by @​maiieul in #​7362)

  • ✨ Add the ability to see chunks names in preview/production environments to facilitate debugging of production-only bugs (by @​maiieul in #​7293)

  • Emit an CustomEvent qviewTransition when view transition starts. (by @​GrandSchtroumpf in #​7237)

  • ✨ Ability to keep using tailwind v3 through the cli (by @​maiieul in #​7403)

  • dev server now correctly handles css and js importers, also hmr persistence (by @​thejackshelton in #​7389)

  • 🐞🩹 set default value of lint to false to improve the execution performance (by @​JerryWu1234 in #​7425)

  • 🐞🩹 manual QRL grouping now works again. This is needed for Insights to work. (by @​wmertens in #​7444)

v1.12.1

Compare Source

Patch Changes

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
QwikDev/qwik (@​builder.io/qwik-city)

v1.14.1

Compare Source

v1.14.0

Compare Source

Minor Changes
  • 🐞🩹 qwik-city no longer forces q-data.json downloads, instead relying on the cache headers. This means that you have to make sure your q-data.json is served with Cache-Control headers that suit you. That file contains all the information about the route and is read for each qwik-city navigation. By default the data is cached for one hour. (by @​wmertens in #​7537)

  • 🛠 the service workers have been deprecated and replaced with entries that unregister them. If you have it enabled in production, you can remove it after a while once you are sure all your users have the new version. (by @​wmertens in #​7453)

Patch Changes
  • 🐞🩹 linting errors which were previously being ignored across the monorepo. (by @​better-salmon in #​7418)

  • 🐞🩹 Link SPA subsequent navigation now properly prefetch the next routes. (by @​maiieul in #​7590)

  • 🐞🩹 SPA Link now handle subsequent onQVisible$ passed as props. (by @​maiieul in #​7612)

v1.13.0

Compare Source

Minor Changes
Patch Changes

v1.12.1

Compare Source

Patch Changes
  • 🐞🩹 MDX content now accepts a prop of type components that lets you use your own custom components (by @​double-thinker in #​7277)

    To add custom components to your MDX content, you can now do this:

    // routes/example/index.tsx
    import Content from './markdown.mdx';
    import MyComponent from '../../components/my-component/my-component';
    import { component$ } from '@&#8203;builder.io/qwik';
    
    export default component$(() => <Content components={{ MyComponent }} />);

    You can also use props in JS expressions. See https://mdxjs.com/docs/using-mdx/#props

  • 🐞🩹 mdx not rendering (by @​shairez in #​7168)

  • 📃 added a "Qwik for Mobile" guide to build iOS and Android Qwik apps (by @​srapport in #​7205)

  • 🐞🩹 some qrls weren't fetched correctly on page load (by @​shairez in #​7286)

v1.12.0

Compare Source

Patch Changes
postcss/autoprefixer (autoprefixer)

v10.4.21

Compare Source

QwikDev/qwik (eslint-plugin-qwik)

v1.14.1

Compare Source

v1.14.0

Compare Source

Minor Changes
Patch Changes
  • ✨ Improve types and README documentation with clear configuration examples for ESLint 9+ (flat config). Added globalIgnores for more clarity and tseslint.config for better type inference inside the parserOptions option. (by @​better-salmon in #​7418)

v1.13.0

Compare Source

Minor Changes
Patch Changes

v1.12.1

Compare Source

v1.12.0

Compare Source

pnpm/pnpm (pnpm)

v9.15.9: pnpm 9.15.9

Compare Source

Patch Changes

  • Fix running pnpm CLI from pnpm CLI on Windows when the CLI is bundled to an executable #​8971.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

v9.15.8: pnpm 9.15.8

Compare Source

Patch Changes

  • pnpm self-update should always update the version in the packageManager field of package.json.
  • The pnpm CLI process should not stay hanging, when --silent reporting is used.
  • When --loglevel is set to error, don't show installation summary, execution time, and big tarball download progress.
  • Don't show info output when --loglevel=error is used.

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

v9.15.7: pnpm 9.15.7

Compare Source

Patch Changes

  • pnpm self-update should not leave a directory with a broken pnpm installation if the installation fails.
  • Allow scope registry CLI option without --config. prefix such as --@&#8203;scope:registry=https://scope.example.com/npm #​9089.
  • pnpm self-update should not read the pnpm settings from the package.json file in the current working directory.
  • pnpm update -i should list only packages that have newer versions #​9206.
  • Fix a bug causing entries in the catalogs section of the pnpm-lock.yaml file to be removed when dedupe-peer-dependents=false on a filtered install. #​9112

Platinum Sponsors

Bit Bit Syntax

Gold Sponsors

Discord u|screen
JetBrains Nx
CodeRabbit Route4Me
Workleap Stackblitz

v9.15.6: pnpm 9.15.6

Compare Source

Patch Changes

  • Fix instruction for updating pnpm with corepack #​9101.
  • Print pnpm's version after the execution time at the end of the console output.
  • The pnpm version specified by packageManager cannot start with v.
  • Fix a bug causing catalog snapshots to be removed from the pnpm-lock.yaml file when using --fix-lockfile and --filter. #​8639
  • Fix a bug causing catalog protocol dependencies to not re-resolve on a filtered install #​8638.

v9.15.5: pnpm 9.15.5

Compare Source

Patch Changes

  • Verify that the package name is valid when executing the publish command.
  • When running pnpm install, the preprepare and postprepare scripts of the project should be executed #​8989.
  • Quote args for scripts with shell-quote to support new lines (on POSIX only) #​8980.
  • Proxy settings should be respected, when resolving Git-hosted dependencies #​6530.
  • Replace strip-ansi with the built-in util.stripVTControlCharacters #​9009.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.4: pnpm 9.15.4

Compare Source

Patch Changes

  • Ensure that recursive pnpm update --latest <pkg> updates only the specified package, with dedupe-peer-dependents=true.

Platinum Sponsors

Bit Bit Figma

Gold Sponsors

Discord Prisma
u|screen JetBrains
Nx CodeRabbit
Route4Me Workleap
Canva

v9.15.3: pnpm 9.15.3

Compare Source

Patch Changes

  • Fixed the Regex used to find the package manifest during packing #​8938.
  • pnpm update --filter <pattern> --latest <pkg> should only change the specified package for the specified workspace, when dedupe-peer-dependents is set to true #​8877.
  • Exclude .DS_Store file at patch-commit #​8922.
  • Fix a bug in which pnpm patch is unable to bring back old patch without specifying @version suffix [#​8919](https://redirec

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.

Copy link

cloudflare-workers-and-pages bot commented Feb 6, 2024

Deploying burgersonfleek with  Cloudflare Pages  Cloudflare Pages

Latest commit: 4da3e06
Status:🚫  Build failed.

View logs

@renovate renovate bot changed the title Update dependency undici to v6.6.2 Update All Feb 7, 2024
@renovate renovate bot force-pushed the renovate/all branch 5 times, most recently from 6ebb9d7 to fcf8c8b Compare February 13, 2024 21:17
@renovate renovate bot force-pushed the renovate/all branch 3 times, most recently from 922a0a8 to 35d56eb Compare February 21, 2024 12:55
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from fbb12b7 to c54db5d Compare February 29, 2024 03:18
@renovate renovate bot force-pushed the renovate/all branch 4 times, most recently from 95894df to 4c2904a Compare March 6, 2024 20:10
@renovate renovate bot changed the title Update All Update All - autoclosed Mar 6, 2024
@renovate renovate bot closed this Mar 6, 2024
@renovate renovate bot deleted the renovate/all branch March 6, 2024 20:39
@renovate renovate bot changed the title Update All - autoclosed Update All Mar 8, 2024
@renovate renovate bot restored the renovate/all branch March 8, 2024 11:05
@renovate renovate bot reopened this Mar 8, 2024
@renovate renovate bot changed the title Update All Update dependency undici to v6.7.1 Mar 8, 2024
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 8a901fc to 4534273 Compare March 11, 2024 16:41
@renovate renovate bot changed the title Update dependency undici to v6.7.1 Update All Mar 11, 2024
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f8c4ff9 to 779a17d Compare March 13, 2024 11:37
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from 4252232 to 41a0af0 Compare May 10, 2025 18:59
@renovate renovate bot force-pushed the renovate/all branch 11 times, most recently from 7c9ab4f to 85e413a Compare May 23, 2025 23:19
@renovate renovate bot force-pushed the renovate/all branch 13 times, most recently from de6782d to 8d91710 Compare June 2, 2025 10:53
@renovate renovate bot force-pushed the renovate/all branch 2 times, most recently from f6456b9 to 7a234ed Compare June 4, 2025 01:32
@renovate renovate bot force-pushed the renovate/all branch from 7a234ed to 4da3e06 Compare June 4, 2025 10: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