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

chore(deps): update minor-and-patch (lts) #5809

Merged
merged 1 commit into from
Nov 19, 2024

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Nov 16, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/server (source) 4.11.0 -> 4.11.2 age adoption passing confidence devDependencies patch
@apollo/server (source) 4.11.0 -> 4.11.2 age adoption passing confidence dependencies patch
@graphql-tools/merge (source) 9.0.8 -> 9.0.9 age adoption passing confidence dependencies patch
@graphql-tools/resolvers-composition (source) 7.0.2 -> 7.0.3 age adoption passing confidence dependencies patch
@graphql-tools/schema (source) 10.0.7 -> 10.0.8 age adoption passing confidence dependencies patch
@graphql-tools/utils (source) 10.5.5 -> 10.5.6 age adoption passing confidence dependencies patch
@graphql-tools/wrap (source) 10.0.12 -> 10.0.16 age adoption passing confidence dependencies patch
@neo4j/cypher-builder (source) 1.22.2 -> 1.22.4 age adoption passing confidence dependencies patch
@types/node (source) 20.17.2 -> 20.17.6 age adoption passing confidence devDependencies patch
@types/ws (source) 8.5.12 -> 8.5.13 age adoption passing confidence devDependencies patch
concurrently 9.0.1 -> 9.1.0 age adoption passing confidence devDependencies minor
eslint-plugin-jest 28.8.3 -> 28.9.0 age adoption passing confidence devDependencies minor
graphql-yoga (source) 5.7.0 -> 5.10.2 age adoption passing confidence dependencies minor
husky 9.1.6 -> 9.1.7 age adoption passing confidence devDependencies patch
nock 13.5.5 -> 13.5.6 age adoption passing confidence devDependencies patch
parcel 2.12.0 -> 2.13.0 age adoption passing confidence devDependencies minor
slackapi/slack-github-action v1.27.0 -> v1.27.1 age adoption passing confidence action patch
tsconfig-paths-webpack-plugin 4.1.0 -> 4.2.0 age adoption passing confidence devDependencies minor
webpack 5.95.0 -> 5.96.1 age adoption passing confidence devDependencies minor

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

apollographql/apollo-server (@​apollo/server)

v4.11.2

Compare Source

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

v4.11.1

Compare Source

Patch Changes
  • #​7952 bb81b2c Thanks @​glasser! - Upgrade dependencies so that automated scans don't detect a vulnerability.

    @apollo/server depends on express which depends on cookie. Versions of express older than v4.21.1 depend on a version of cookie vulnerable to CVE-2024-47764. Users of older express versions who call res.cookie() or res.clearCookie() may be vulnerable to this issue.

    However, Apollo Server does not call this function directly, and it does not expose any object to user code that allows TypeScript users to call this function without an unsafe cast.

    The only way that this direct dependency can cause a vulnerability for users of Apollo Server is if you call startStandaloneServer with a context function that calls Express-specific methods such as res.cookie() or res.clearCookies() on the response object, which is a violation of the TypeScript types provided by startStandaloneServer (which only promise that the response object is a core Node.js http.ServerResponse rather than the Express-specific subclass). So this vulnerability can only affect Apollo Server users who use unsafe JavaScript or unsafe as typecasts in TypeScript.

    However, this upgrade will at least prevent vulnerability scanners from alerting you to this dependency, and we encourage all Express users to upgrade their project's own express dependency to v4.21.1 or newer.

ardatan/graphql-tools (@​graphql-tools/merge)

v9.0.9

Compare Source

Patch Changes
ardatan/graphql-tools (@​graphql-tools/resolvers-composition)

v7.0.3

Compare Source

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

v10.0.8

Compare Source

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

v10.5.6

Compare Source

Patch Changes
  • #​6677
    dc5043b
    Thanks @​enisdenjo! - onError and onEnd callbacks from
    mapAsyncIterator are invoked only once regardless of how many times throw/return was called
    on the iterator
ardatan/graphql-tools (@​graphql-tools/wrap)

v10.0.16

Compare Source

v10.0.15

Compare Source

Patch Changes

v10.0.14

Compare Source

Patch Changes

v10.0.13

Compare Source

Patch Changes
neo4j/cypher-builder (@​neo4j/cypher-builder)

v1.22.4

Compare Source

Patch Changes

v1.22.3

Compare Source

Patch Changes
  • #​444 be3c49e Thanks @​angrykoala! - Deprecate assignToPath in clauses in favor of assignTo in Pattern

    Before:

    new Cypher.Match(pattern).assignToPath(path).return(path);

    Now:

    new Cypher.Match(pattern.assignTo(path)).return(path);

    Generates the Cypher:

    MATCH p = ()-[]-()
    RETURN p
  • #​444 0a5bf6c Thanks @​angrykoala! - Deprecate Cypher.Path and Cypher.NamedPath in favor of Cypher.PathVariable and Cypher.NamedPathVariable respectively

open-cli-tools/concurrently (concurrently)

v9.1.0

Compare Source

What's Changed

New Contributors

Full Changelog: open-cli-tools/concurrently@v9.0.1...v9.1.0

jest-community/eslint-plugin-jest (eslint-plugin-jest)

v28.9.0

Compare Source

Features

28.8.3 (2024-09-04)

Bug Fixes
  • prefer-importing-jest-globals: don't add imports in the middle of statements (#​1645) (9c4197c)

28.8.2 (2024-09-02)

Performance Improvements
  • prefer-importing-jest-globals: stop collecting import specifiers for no reason (#​1646) (0660242)

28.8.1 (2024-08-29)

Bug Fixes
  • prefer-importing-jest-globals: support typescript-eslint parser (#​1639) (307f6a7)
dotansimha/graphql-yoga (graphql-yoga)

v5.10.2

Compare Source

Patch Changes
  • #​3491
    7a413bc
    Thanks @​n1ru4l! - dependencies updates:

  • #​3491
    7a413bc
    Thanks @​n1ru4l! - Fix issue where context values being shared between
    batched requests.

    A bug within @whatwg-node/server caused properties assigned to a batched requests context to be
    propagated to all other batched requests contexts. It is resolved by updating the dependency of
    @whatwg-node/server to 0.9.55.

v5.10.1

Compare Source

Patch Changes

v5.10.0

Compare Source

Minor Changes

v5.9.0

Compare Source

Minor Changes
Patch Changes

v5.8.0

Compare Source

Minor Changes
Patch Changes
typicode/husky (husky)

v9.1.7

Compare Source

nock/nock (nock)

v13.5.6

Compare Source

Bug Fixes
parcel-bundler/parcel (parcel)

v2.13.0

Compare Source

Added
  • Core

    • Expose watcher ignore and watcher backend options – Details
    • Improve large watcher events payload experience – Details
    • Add support for globs in package.json#source – Details
    • Add config key invalidation – Details
  • Bundler

  • Dev Server

  • Resolver

    • 12x faster resolver cache – Details
    • Correctly handle empty resolver diagnostics array – Details
Fixed
  • Core

    • Remove abortcontroller-polyfill – Details
    • Fix missing content key in symbol propagation when asset is removed – Details
    • Update minimum supported node version to 16 – Details
    • Ensure the snapshot directory matches the watch dir – Details
    • Add parcel version to PluginOptions – Details
    • Fix possible race condition in the caching of request graph – Details
    • Ensure empty extended config throws a diagnostic – Details
    • Ensure Asset public ids are assigned deterministically – Details
    • Directories ignored by watcher should be relative to the watch directory – Details
    • Fix request tracker incremental cache write for new nodes – Details
    • Improve request graph cache reading – Details
    • Exit process with error code when reporters fail – Details
    • Write tmp files to the OS tmp directory - Details
    • Fix small HMR issues – Details
    • Fix crash in EntryRequest with multiple globs in the source field – Details
    • Revert split manifest runtime bundles – Details
    • Revert chunked cache blobs for improved stability – Details
    • Update dependencies – Details
  • Bundler

    • Fix assets outside project root with Manual Shared Bundles – Details
  • JavaScript

    • Avoid non-identifier export names in non-entry library bundles – Details
    • Relax react-refresh version range – Details
    • Also emit swc recoverable errors – Details
    • Bump swc – Details, Details, Details, Details
    • Bump swc and browserslist-rs – Details
    • Replace std::sync locks with parking_lot locks for better stability – Details
    • Ensure const modules in async bundles are wrapped – Details
    • Fix dev packager global reference – Details
    • Fix import usage tracking for destructure defaulting – Details
    • Update Node.js globals replacer to use SWC VisitMut – Details
    • Update process.env replacer to use SWC VisitMut – Details
    • Update Node.js __filename and __dirname replace to use SWC VisitMut – Details
    • Fix parcelRequire being added to multi-target libraries – Details
    • Handle TypeScript expressions in macro evaluator – Details
  • Resolver

    • Fix NUL byte crash in resolver – Details
    • Change default resolver error message for custom specifiers – Details
  • TypeScript

    • Handle dynamic import type references in TS types transformer – Details
    • Correctly handle qualified names in TS types import() – Details
  • SASS

    • Migrate to new sass API – Details
  • SVG

    • Load svgo version from project – Details
    • Update svgr and use project svgo version – Details
  • Image

  • Vue

    • Upgrade consolidate to v1 – Details
  • Web Extensions

    • Allow both service_worker and scripts in MV3 Web Extensions – Details
slackapi/slack-github-action (slackapi/slack-github-action)

v1.27.1: Slack Send V1.27.1

Compare Source

What's changed

This release tags multiple updates to dependencies and a clarification in documentation 📚

No changes are needed to update from slackapi/[email protected] - other than bumping the version - but ongoing development is now happening on version @v2 and @v1 is no longer planning to receive significant updates after this.

Please stay tuned for upcoming changes, and may all of your workflows run well ❤️

📚 Documentation
🧪 Maintenance
📦 Dependencies

Full Changelog: slackapi/slack-github-action@v1.27.0...v1.27.1

dividab/tsconfig-paths-webpack-plugin (tsconfig-paths-webpack-plugin)

v4.2.0

Compare Source

Added
Fixed
webpack/webpack (webpack)

v5.96.1

Compare Source

v5.96.0

Compare Source

Bug Fixes

  • Fixed Module Federation should track all referenced chunks
  • Handle Data URI without base64 word
  • HotUpdateChunk have correct runtime when modified with new runtime
  • Order of chunks ids in generated chunk code
  • No extra Javascript chunks when using asset module as an entrypoint
  • Use optimistically logic for output.environment.dynamicImport to determine chunk format when no browserslist or target
  • Collision with global variables for optimization.avoidEntryIife
  • Avoid through variables in inlined module
  • Allow chunk template strings in output.devtoolNamespace
  • No extra runtime for get javascript/css chunk filename
  • No extra runtime for prefetch and preload in JS runtime when it was unsed in CSS
  • Avoid cache invalidation using ProgressPlugin
  • Increase parallelism when using importModule on the execution stage
  • Correctly parsing string in export and import
  • Typescript types
  • [CSS] css/auto considers a module depending on its filename as css (pure CSS) or css/local, before it was css/global and css/local
  • [CSS] Always interpolate classes even if they are not involved in export
  • [CSS] No extra runtime in Javascript runtime chunks for asset modules used in CSS
  • [CSS] No extra runtime in Javascript runtime chunks for external asset modules used in CSS
  • [CSS] No extra runtime for the node target
  • [CSS] Fixed url()s and @import parsing
  • [CSS] Fixed - emit a warning on broken :local and :global

New Features

  • Export CSS and ESM runtime modules
  • Single Runtime Chunk and Federation eager module hoisting
  • [CSS] Support /* webpackIgnore: true */ for CSS files
  • [CSS] Support src() support
  • [CSS] CSS nesting in CSS modules

Configuration

📅 Schedule: Branch creation - "after 10pm every weekday,before 5am every weekday,every weekend" in timezone Europe/London, Automerge - At any time (no schedule defined).

🚦 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.


  • 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
Contributor Author

renovate bot commented Nov 16, 2024

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: examples/subscriptions/yoga_sse/package-lock.json
npm WARN ignoring workspace config at /tmp/renovate/repos/github/neo4j/graphql/examples/subscriptions/yoga_sse/.npmrc 
npm ERR! code EUNSUPPORTEDPROTOCOL
npm ERR! Unsupported URL Type "link:": link:../../..

npm ERR! A complete log of this run can be found in:
npm ERR!     /tmp/renovate/cache/others/npm/_logs/2024-11-18T15_37_19_594Z-debug-0.log

Copy link

changeset-bot bot commented Nov 16, 2024

⚠️ No Changeset found

Latest commit: c4dbc0e

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

@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch 5 times, most recently from cbe8057 to ac975ce Compare November 18, 2024 13:50
@renovate renovate bot force-pushed the renovate/lts-minor-and-patch branch from ac975ce to c4dbc0e Compare November 18, 2024 15:38
@darrellwarde darrellwarde merged commit ccd2aa6 into lts Nov 19, 2024
65 of 66 checks passed
@renovate renovate bot deleted the renovate/lts-minor-and-patch branch November 19, 2024 15:46
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.

1 participant