Skip to content

fix(deps): update all dependencies - patch updates #260

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

Conversation

svc-secops
Copy link
Contributor

@svc-secops svc-secops commented Jan 7, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client-devtools-vscode 4.19.1 -> 4.19.13 age adoption passing confidence
@changesets/changelog-github (source) 0.5.0 -> 0.5.1 age adoption passing confidence
@graphql-codegen/cli (source) 5.0.2 -> 5.0.5 age adoption passing confidence
@graphql-tools/schema (source) 10.0.13 -> 10.0.23 age adoption passing confidence
esbuild 0.25.0 -> 0.25.2 age adoption passing confidence
eslint-plugin-prettier 5.2.1 -> 5.2.6 age adoption passing confidence
glob 11.0.0 -> 11.0.1 age adoption passing confidence
graphql-http 1.22.1 -> 1.22.4 age adoption passing confidence
import-fresh 3.3.0 -> 3.3.1 age adoption passing confidence
undici (source) 6.21.1 -> 6.21.2 age adoption passing confidence
ws 8.18.0 -> 8.18.1 age adoption passing confidence
zod (source) 3.24.1 -> 3.24.2 age adoption passing confidence

Release Notes

apollographql/apollo-client-devtools (@​apollo/client-devtools-vscode)

v4.19.13

Compare Source

Patch Changes

v4.19.12

Compare Source

Patch Changes

v4.19.11

Compare Source

Patch Changes

v4.19.10

Compare Source

Patch Changes

v4.19.9

Compare Source

Patch Changes

v4.19.8

Compare Source

Patch Changes

v4.19.7

Compare Source

Patch Changes

v4.19.6

Compare Source

v4.19.5

Compare Source

v4.19.4

Compare Source

v4.19.3

Compare Source

v4.19.2

Compare Source

changesets/changesets (@​changesets/changelog-github)

v0.5.1

Compare Source

Patch Changes
dotansimha/graphql-code-generator (@​graphql-codegen/cli)

v5.0.5

Compare Source

Patch Changes

v5.0.4

Compare Source

Patch Changes

v5.0.3

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/schema)

v10.0.23

Compare Source

Patch Changes

v10.0.22

Compare Source

Patch Changes

v10.0.21

Compare Source

Patch Changes

v10.0.20

Compare Source

Patch Changes

v10.0.19

Compare Source

Patch Changes

v10.0.18

Compare Source

Patch Changes

v10.0.17

Compare Source

Patch Changes

v10.0.16

Compare Source

Patch Changes

v10.0.15

Compare Source

Patch Changes

v10.0.14

Compare Source

Patch Changes
evanw/esbuild (esbuild)

v0.25.2

Compare Source

  • Support flags in regular expressions for the API (#​4121)

    The JavaScript plugin API for esbuild takes JavaScript regular expression objects for the filter option. Internally these are translated into Go regular expressions. However, this translation previously ignored the flags property of the regular expression. With this release, esbuild will now translate JavaScript regular expression flags into Go regular expression flags. Specifically the JavaScript regular expression /\.[jt]sx?$/i is turned into the Go regular expression `(?i)\.[jt]sx?$` internally inside of esbuild's API. This should make it possible to use JavaScript regular expressions with the i flag. Note that JavaScript and Go don't support all of the same regular expression features, so this mapping is only approximate.

  • Fix node-specific annotations for string literal export names (#​4100)

    When node instantiates a CommonJS module, it scans the AST to look for names to expose via ESM named exports. This is a heuristic that looks for certain patterns such as exports.NAME = ... or module.exports = { ... }. This behavior is used by esbuild to "annotate" CommonJS code that was converted from ESM with the original ESM export names. For example, when converting the file export let foo, bar from ESM to CommonJS, esbuild appends this to the end of the file:

    // Annotate the CommonJS export names for ESM import in node:
    0 && (module.exports = {
      bar,
      foo
    });

    However, this feature previously didn't work correctly for export names that are not valid identifiers, which can be constructed using string literal export names. The generated code contained a syntax error. That problem is fixed in this release:

    // Original code
    let foo
    export { foo as "foo!" }
    
    // Old output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!"
    });
    
    // New output (with --format=cjs --platform=node)
    ...
    0 && (module.exports = {
      "foo!": null
    });
  • Basic support for index source maps (#​3439, #​4109)

    The source map specification has an optional mode called index source maps that makes it easier for tools to create an aggregate JavaScript file by concatenating many smaller JavaScript files with source maps, and then generate an aggregate source map by simply providing the original source maps along with some offset information. My understanding is that this is rarely used in practice. I'm only aware of two uses of it in the wild: ClojureScript and Turbopack.

    This release provides basic support for indexed source maps. However, the implementation has not been tested on a real app (just on very simple test input). If you are using index source maps in a real app, please try this out and report back if anything isn't working for you.

    Note that this is also not a complete implementation. For example, index source maps technically allows nesting source maps to an arbitrary depth, while esbuild's implementation in this release only supports a single level of nesting. It's unclear whether supporting more than one level of nesting is important or not given the lack of available test cases.

    This feature was contributed by @​clyfish.

v0.25.1

Compare Source

  • Fix incorrect paths in inline source maps (#​4070, #​4075, #​4105)

    This fixes a regression from version 0.25.0 where esbuild didn't correctly resolve relative paths contained within source maps in inline sourceMappingURL data URLs. The paths were incorrectly being passed through as-is instead of being resolved relative to the source file containing the sourceMappingURL comment, which was due to the data URL not being a file URL. This regression has been fixed, and this case now has test coverage.

  • Fix invalid generated source maps (#​4080, #​4082, #​4104, #​4107)

    This release fixes a regression from version 0.24.1 that could cause esbuild to generate invalid source maps. Specifically under certain conditions, esbuild could generate a mapping with an out-of-bounds source index. It was introduced by code that attempted to improve esbuild's handling of "null" entries in source maps (i.e. mappings with a generated position but no original position). This regression has been fixed.

    This fix was contributed by @​jridgewell.

  • Fix a regression with non-file source map paths (#​4078)

    The format of paths in source maps that aren't in the file namespace was unintentionally changed in version 0.25.0. Path namespaces is an esbuild-specific concept that is optionally available for plugins to use to distinguish paths from file paths and from paths meant for other plugins. Previously the namespace was prepended to the path joined with a : character, but version 0.25.0 unintentionally failed to prepend the namespace. The previous behavior has been restored.

  • Fix a crash with switch optimization (#​4088)

    The new code in the previous release to optimize dead code in switch statements accidentally introduced a crash in the edge case where one or more switch case values include a function expression. This is because esbuild now visits the case values first to determine whether any cases are dead code, and then visits the case bodies once the dead code status is known. That triggered some internal asserts that guard against traversing the AST in an unexpected order. This crash has been fixed by changing esbuild to expect the new traversal ordering. Here's an example of affected code:

    switch (x) {
      case '':
        return y.map(z => z.value)
      case y.map(z => z.key).join(','):
        return []
    }
  • Update Go from 1.23.5 to 1.23.7 (#​4076, #​4077)

    This should have no effect on existing code as this version change does not change Go's operating system support. It may remove certain reports from vulnerability scanners that detect which version of the Go compiler esbuild uses.

    This PR was contributed by @​MikeWillCook.

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.2.6

Compare Source

Patch Changes

v5.2.5

Compare Source

Patch Changes

v5.2.4

Compare Source

Patch Changes

v5.2.3

Compare Source

Patch Changes

v5.2.2

Compare Source

Patch Changes
isaacs/node-glob (glob)

v11.0.1

Compare Source

graphql/graphql-http (graphql-http)

v1.22.4

Compare Source

Bug Fixes

v1.22.3

Compare Source

Bug Fixes
  • handler: Response options status and statusText are optional (38a0191), closes #​133

v1.22.2

Compare Source

Bug Fixes
  • use/koa: Use the parsed request body rather than ctx.body (#​132) (9f8b1f1)
sindresorhus/import-fresh (import-fresh)

v3.3.1

Compare Source


nodejs/undici (undici)

v6.21.2

Compare Source

What's Changed

New Contributors

Full Changelog: nodejs/undici@v6.21.1...v6.21.2

websockets/ws (ws)

v8.18.1

Compare Source

Bug fixes

  • The length of the UNIX domain socket paths in the tests has been shortened to
    make them work when run via CITGM (021f7b8).
colinhacks/zod (zod)

v3.24.2

Compare Source

Notes

Support asynchronous checks in z.custom() .

const customSchema = z.custom<number>(async (x) => {
  return typeof x === "number";
});

Commits:


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - "after 8am and before 4pm on tuesday" in timezone America/Los_Angeles.

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


This PR has been generated by Renovate Bot.

Copy link

changeset-bot bot commented Jan 7, 2025

⚠️ No Changeset found

Latest commit: 5f1fa67

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

github-actions bot commented Jan 7, 2025

You can download the latest build of the extension for this PR here:
vscode-apollo-0.0.0-build-1740057481.pr-260.commit-ce50ddd.zip.

To install the extension, download the file, unzip it and install it in VS Code by selecting "Install from VSIX..." in the Extensions view.

Alternatively, run

code --install-extension vscode-apollo-0.0.0-build-1740057481.pr-260.commit-ce50ddd.vsix --force

from the command line.

For older builds, please see the edit history of this comment.

@svc-secops svc-secops force-pushed the renovate/all-patch branch 3 times, most recently from 03eb847 to ac498ce Compare January 17, 2025 12:16
@svc-secops svc-secops force-pushed the renovate/all-patch branch 6 times, most recently from 200d8d6 to 752f75a Compare January 25, 2025 12:24
@svc-secops svc-secops force-pushed the renovate/all-patch branch 5 times, most recently from 2881ea1 to c4abf8d Compare February 2, 2025 13:37
@svc-secops svc-secops force-pushed the renovate/all-patch branch 4 times, most recently from 14eb997 to 4ba74b0 Compare February 8, 2025 14:15
@svc-secops svc-secops force-pushed the renovate/all-patch branch 5 times, most recently from 6a404a1 to 19872c0 Compare February 18, 2025 12:46
@svc-secops svc-secops force-pushed the renovate/all-patch branch 2 times, most recently from 3ba77d9 to 778353f Compare February 20, 2025 13:18
@svc-secops svc-secops force-pushed the renovate/all-patch branch 2 times, most recently from a9a2e53 to 5430e12 Compare March 7, 2025 13:28
@svc-secops svc-secops force-pushed the renovate/all-patch branch 4 times, most recently from dd93865 to 0dfafec Compare March 18, 2025 12:06
@svc-secops svc-secops force-pushed the renovate/all-patch branch 2 times, most recently from f35af45 to d169270 Compare March 29, 2025 13:55
@svc-secops svc-secops force-pushed the renovate/all-patch branch 3 times, most recently from deb0f9c to 93bc350 Compare April 8, 2025 12:23
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant