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

build(deps-dev): bump the qwik group with 3 updates #420

Merged
merged 1 commit into from
Nov 30, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 25, 2024

Bumps the qwik group with 3 updates: @builder.io/qwik, @builder.io/qwik-city and eslint-plugin-qwik.

Updates @builder.io/qwik from 1.9.1 to 1.11.0

Release notes

Sourced from @​builder.io/qwik's releases.

@​builder.io/[email protected]

No release notes provided.

@​builder.io/[email protected]

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.

@​builder.io/[email protected]

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)

@​builder.io/[email protected]

Minor Changes

... (truncated)

Changelog

Sourced from @​builder.io/qwik's changelog.

1.11.0

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.

1.10.0

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) => {

... (truncated)

Commits
  • 0f00a82 Version Packages
  • c26b429 updated migration version
  • 8d1a7c4 Merge pull request #7059 from QwikDev/pr-cli-monorepo
  • cbc2dd5 Merge pull request #7054 from QwikDev/ds/cli-migrate-v2-cmd-for-v1
  • 46a8303 feat: use published alpha version
  • 1cf13bc add projectDir param to the cli
  • 26af133 chore: move internals out of JSXNode
  • 34b9103 feat: add migrate-v2 command
  • 4258852 Version Packages
  • 546d3b0 lint: rust/optimizer plugin
  • Additional commits viewable in compare view

Updates @builder.io/qwik-city from 1.9.1 to 1.11.0

Release notes

Sourced from @​builder.io/qwik-city's releases.

@​builder.io/[email protected]

No release notes provided.

@​builder.io/[email protected]

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)

Changelog

Sourced from @​builder.io/qwik-city's changelog.

1.11.0

1.10.0

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)

Commits

Updates eslint-plugin-qwik from 1.9.1 to 1.11.0

Release notes

Sourced from eslint-plugin-qwik's releases.

[email protected]

No release notes provided.

[email protected]

Patch Changes

  • 🐞🩹 the @​typescript-eslint/utils dependency is upgraded and made explicit in the package (by @​wmertens in #7030)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the qwik group with 3 updates: [@builder.io/qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik), [@builder.io/qwik-city](https://github.com/QwikDev/qwik/tree/HEAD/packages/qwik-city) and [eslint-plugin-qwik](https://github.com/QwikDev/qwik/tree/HEAD/packages/eslint-rules).


Updates `@builder.io/qwik` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Changelog](https://github.com/QwikDev/qwik/blob/@builder.io/[email protected]/packages/qwik/CHANGELOG.md)
- [Commits](https://github.com/QwikDev/qwik/commits/@builder.io/[email protected]/packages/qwik)

Updates `@builder.io/qwik-city` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Changelog](https://github.com/QwikDev/qwik/blob/@builder.io/[email protected]/packages/qwik-city/CHANGELOG.md)
- [Commits](https://github.com/QwikDev/qwik/commits/@builder.io/[email protected]/packages/qwik-city)

Updates `eslint-plugin-qwik` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/QwikDev/qwik/releases)
- [Commits](https://github.com/QwikDev/qwik/commits/[email protected]/packages/eslint-rules)

---
updated-dependencies:
- dependency-name: "@builder.io/qwik"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: qwik
- dependency-name: "@builder.io/qwik-city"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: qwik
- dependency-name: eslint-plugin-qwik
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: qwik
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 25, 2024
Copy link

vercel bot commented Nov 25, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
content-collections ✅ Ready (Inspect) Visit Preview 💬 Add feedback Nov 25, 2024 5:46pm

Copy link

changeset-bot bot commented Nov 25, 2024

⚠️ No Changeset found

Latest commit: 4f6ed62

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link

pkg-pr-new bot commented Nov 25, 2024

Open in Stackblitz

@content-collections/cli

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/cli@420

content-collections

npm i https://pkg.pr.new/sdorra/content-collections@420

@content-collections/installer

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/installer@420

@content-collections/core

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/core@420

@content-collections/integrations

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/integrations@420

@content-collections/markdown

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/markdown@420

@content-collections/mdx

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/mdx@420

@content-collections/next

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/next@420

@content-collections/remix-vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/remix-vite@420

@content-collections/solid-start

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/solid-start@420

@content-collections/vite

npm i https://pkg.pr.new/sdorra/content-collections/@content-collections/vite@420

commit: 4f6ed62

@sdorra sdorra merged commit f792ec4 into main Nov 30, 2024
8 checks passed
@sdorra sdorra deleted the dependabot/npm_and_yarn/qwik-66bd677393 branch November 30, 2024 04:37
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant