Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 17, 2025

Coming soon: The Renovate bot (GitHub App) will be renamed to Mend. PRs from Renovate will soon appear from 'Mend'. Learn more here.

This PR contains the following updates:

Package Change Age Confidence
@envelop/core (source) 5.3.1 -> 5.3.2 age confidence
@graphql-yoga/plugin-defer-stream (source) 3.15.2 -> 3.16.0 age confidence
@types/node (source) 24.5.1 -> 24.5.2 age confidence
esbuild 0.25.9 -> 0.25.10 age confidence
eslint (source) 9.35.0 -> 9.36.0 age confidence
eslint-plugin-n 17.23.0 -> 17.23.1 age confidence
graphql-yoga (source) 5.15.2 -> 5.16.0 age confidence
puppeteer (source) 24.21.0 -> 24.22.0 age confidence
svelte (source) 5.38.10 -> 5.39.2 age confidence
ts-jest (source) 29.4.2 -> 29.4.4 age confidence
wrangler (source) 4.37.1 -> 4.38.0 age confidence

Release Notes

graphql-hive/envelop (@​envelop/core)

v5.3.2

Compare Source

Patch Changes
  • #​2665
    92948d8
    Thanks @​EmrysMyrddin! - Fix getters and setters being stripped
    away. The value was copied at plugin creation instead of copying the getter and setter (if any).
graphql-hive/graphql-yoga (@​graphql-yoga/plugin-defer-stream)

v3.16.0

Compare Source

evanw/esbuild (esbuild)

v0.25.10

Compare Source

  • Fix a panic in a minification edge case (#​4287)

    This release fixes a panic due to a null pointer that could happen when esbuild inlines a doubly-nested identity function and the final result is empty. It was fixed by emitting the value undefined in this case, which avoids the panic. This case must be rare since it hasn't come up until now. Here is an example of code that previously triggered the panic (which only happened when minifying):

    function identity(x) { return x }
    identity({ y: identity(123) })
  • Fix @supports nested inside pseudo-element (#​4265)

    When transforming nested CSS to non-nested CSS, esbuild is supposed to filter out pseudo-elements such as ::placeholder for correctness. The CSS nesting specification says the following:

    The nesting selector cannot represent pseudo-elements (identical to the behavior of the ':is()' pseudo-class). We’d like to relax this restriction, but need to do so simultaneously for both ':is()' and '&', since they’re intentionally built on the same underlying mechanisms.

    However, it seems like this behavior is different for nested at-rules such as @supports, which do work with pseudo-elements. So this release modifies esbuild's behavior to now take that into account:

    /* Original code */
    ::placeholder {
      color: red;
      body & { color: green }
      @​supports (color: blue) { color: blue }
    }
    
    /* Old output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
       {
        color: blue;
      }
    }
    
    /* New output (with --supported:nesting=false) */
    ::placeholder {
      color: red;
    }
    body :is() {
      color: green;
    }
    @​supports (color: blue) {
      ::placeholder {
        color: blue;
      }
    }
eslint/eslint (eslint)

v9.36.0

Compare Source

eslint-community/eslint-plugin-n (eslint-plugin-n)

v17.23.1

Compare Source

🩹 Fixes
  • node-builtins-modules/tls.js: Update minimal version (#​484) (fe94432)
📚 Documentation
  • improve clarity of no-missing-import and no-missing-require (#​455) (92ea876)
graphql-hive/graphql-yoga (graphql-yoga)

v5.16.0

Compare Source

Minor Changes
Patch Changes
  • #​4191
    0a7a635
    Thanks @​ardatan! - Fix workers' loading in online GraphiQL mode, so
    that Monaco features like autocomplete can work properly
puppeteer/puppeteer (puppeteer)

v24.22.0

Compare Source

Miscellaneous Chores
  • puppeteer: Synchronize puppeteer versions
Dependencies
  • The following workspace dependencies were updated
    • dependencies
      • puppeteer-core bumped from 24.21.0 to 24.22.0
Features
Bug Fixes
  • a11y: handle leaf nodes without heuristics that rely on name (#​14221) (076cc2e)
sveltejs/svelte (svelte)

v5.39.2

Compare Source

Patch Changes
  • fix: preserve SSR context when block expressions contain await (#​16791)

  • chore: bump some devDependencies (#​16787)

v5.39.1

Compare Source

Patch Changes
  • fix: issue state_proxy_unmount warning when unmounting a state proxy (#​16747)

  • fix: add then to class component render output (#​16783)

v5.39.0

Compare Source

Minor Changes
Patch Changes
  • fix: correctly SSR hidden="until-found" (#​16773)
kulshekhar/ts-jest (ts-jest)

v29.4.4

Compare Source

Bug Fixes

v29.4.3

Compare Source

Bug Fixes
cloudflare/workers-sdk (wrangler)

v4.38.0

Compare Source

Minor Changes
Patch Changes

Configuration

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

🚦 Automerge: Enabled.

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.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Sep 17, 2025
Copy link

changeset-bot bot commented Sep 17, 2025

⚠️ No Changeset found

Latest commit: 202b8ca

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
Contributor

coderabbitai bot commented Sep 17, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 6 times, most recently from ef7519d to 005ec58 Compare September 18, 2025 17:53
@renovate renovate bot requested review from EmrysMyrddin and n1ru4l September 18, 2025 21:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 005ec58 to 0065e47 Compare September 19, 2025 17:27
Copy link
Contributor

💻 Website Preview

The latest changes are available as preview in: https://pr-7497.graphql-tools.pages.dev

@ardatan ardatan merged commit 28475cb into master Sep 19, 2025
14 checks passed
@ardatan ardatan deleted the renovate/all-minor-patch branch September 19, 2025 18:57
ardatan pushed a commit that referenced this pull request Sep 22, 2025
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
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