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

Bump the minor_versions group with 42 updates #3053

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2023

Bumps the minor_versions group with 42 updates:

Package From To
@apollo/client 3.7.17 3.8.6
@nrwl/tao 16.7.4 16.10.0
@types/node 16.18.57 16.18.60
@types/tmp 0.2.3 0.2.5
eslint 8.49.0 8.52.0
liquidjs 10.9.2 10.9.3
vite 4.4.9 4.5.0
vitest 0.34.4 0.34.6
eslint-plugin-import 2.28.0 2.29.0
eslint-plugin-vitest 0.2.8 0.3.8
react-router-dom 6.14.2 6.18.0
sass 1.64.2 1.69.5
@shopify/theme-check-node 1.16.1 1.19.0
@shopify/theme-language-server-node 1.3.2 1.4.6
yaml 2.3.2 2.3.3
@opentelemetry/exporter-metrics-otlp-http 0.43.0 0.44.0
get-port-please 3.0.1 3.1.1
kill-port-process 3.1.0 3.2.0
simple-git 3.19.1 3.20.0
zod 3.22.2 3.22.4
@types/commondir 1.0.0 1.0.1
@types/cross-zip 4.0.0 4.0.1
@types/diff 5.0.3 5.0.7
@types/git-diff 2.0.3 2.0.6
@types/gradient-string 1.1.2 1.1.4
@types/lodash 4.14.195 4.14.200
@types/semver 7.5.2 7.5.4
@vitest/coverage-istanbul 0.34.4 0.34.6
typedoc 0.25.1 0.25.3
@cucumber/cucumber 9.5.1 9.6.0
@shopify/shopify-api 7.5.0 7.7.0
h3 0.7.21 0.8.6
ws 8.13.0 8.14.2
@types/ws 8.5.5 8.5.8
@types/body-parser 1.19.2 1.19.4
@types/express 4.17.17 4.17.20
@types/http-proxy 1.17.11 1.17.13
@types/lodash-es 4.17.9 4.17.10
@types/serve-static 1.15.2 1.15.4
mock-socket 9.2.1 9.3.1
jest-websocket-mock 2.4.0 2.5.0
@actions/core 1.10.0 1.10.1

Updates @apollo/client from 3.7.17 to 3.8.6

Release notes

Sourced from @​apollo/client's releases.

v3.8.6

Patch Changes

  • #11291 2be7eafe3 Thanks @​ArioA! - Fix a bug that allows to only call loadErrorMessages without also calling loadDevErrorMessages.

  • #11274 b29f000f3 Thanks @​jerelmiller! - Start the query ref auto dispose timeout after the initial promise has settled. This prevents requests that run longer than the timeout duration from keeping the component suspended indefinitely.

  • #11289 b5894dbf0 Thanks @​phryneas! - MockedProvider: default connectToDevTools to false in created ApolloClient instance.

    This will prevent the mocked ApolloClient instance from trying to connect to the DevTools, which would start a setTimeout that might keep running after a test has finished.

  • #11206 dd2ce7687 Thanks @​phryneas! - cache.modify: Less strict types & new dev runtime warnings.

v3.8.5

Patch Changes

v3.8.4

Patch Changes

  • #11195 9e59b251d Thanks @​phryneas! - For invariant.log etc., error arguments are now serialized correctly in the link to the error page.

v3.8.3

Patch Changes

v3.8.2

Patch Changes

  • #10072 51045c336 Thanks @​Huulivoide! - Fixes race conditions in useReactiveVar that may prevent updates to the reactive variable from propagating through the hook.

  • #11162 d9685f53c Thanks @​jerelmiller! - Ensures GraphQL errors returned in subscription payloads adhere to the errorPolicy set in client.subscribe(...) calls.

  • #11134 96492e142 Thanks @​alessbell! - Use separate type imports in useSuspenseQuery and useBackgroundQuery to workaround SWC compiler issue.

  • #11117 6b8198109 Thanks @​phryneas! - Adds a new devtools registration mechanism and tweaks the mechanism behind the "devtools not found" mechanic.

  • #11186 f1d429f32 Thanks @​jerelmiller! - Fix an issue where race conditions when rapidly switching between variables would sometimes result in the wrong data returned from the query. Specifically this occurs when a query is triggered with an initial set of variables (VariablesA), then triggers the same query with another set of variables (VariablesB) but switches back to the VariablesA before the response for VariablesB is returned. Previously this would result in the data for VariablesB to be displayed while VariablesA was active. The data is for VariablesA is now properly returned.

... (truncated)

Changelog

Sourced from @​apollo/client's changelog.

3.8.6

Patch Changes

  • #11291 2be7eafe3 Thanks @​ArioA! - Fix a bug that allows to only call loadErrorMessages without also calling loadDevErrorMessages.

  • #11274 b29f000f3 Thanks @​jerelmiller! - Start the query ref auto dispose timeout after the initial promise has settled. This prevents requests that run longer than the timeout duration from keeping the component suspended indefinitely.

  • #11289 b5894dbf0 Thanks @​phryneas! - MockedProvider: default connectToDevTools to false in created ApolloClient instance.

    This will prevent the mocked ApolloClient instance from trying to connect to the DevTools, which would start a setTimeout that might keep running after a test has finished.

  • #11206 dd2ce7687 Thanks @​phryneas! - cache.modify: Less strict types & new dev runtime warnings.

3.8.5

Patch Changes

3.8.4

Patch Changes

  • #11195 9e59b251d Thanks @​phryneas! - For invariant.log etc., error arguments are now serialized correctly in the link to the error page.

3.8.3

Patch Changes

3.8.2

Patch Changes

  • #10072 51045c336 Thanks @​Huulivoide! - Fixes race conditions in useReactiveVar that may prevent updates to the reactive variable from propagating through the hook.

  • #11162 d9685f53c Thanks @​jerelmiller! - Ensures GraphQL errors returned in subscription payloads adhere to the errorPolicy set in client.subscribe(...) calls.

  • #11134 96492e142 Thanks @​alessbell! - Use separate type imports in useSuspenseQuery and useBackgroundQuery to workaround SWC compiler issue.

... (truncated)

Commits

Updates @nrwl/tao from 16.7.4 to 16.10.0

Release notes

Sourced from @​nrwl/tao's releases.

16.10.0

🚀 Features

  • angular: support incremental TypeScript semantic diagnostics in ng-packagr executors (#19405)
  • core: add NX_IGNORE_CYCLES environment variable (#18708)
  • core: switch nx release changelog to offline first with CHANGELOG.md files (#19327)
  • js: upgrade @​swc-node/register to 1.6.7 (#19429)
  • linter: add app import exception for remotes (#19301)
  • nuxt: add private Nuxt plugin (#19420)
  • nx-dev: add the new Nx blog home (c2297297c)
  • nx-dev: add link to AI Chat beta in docs header (#19261)
  • nx-dev: only show the first 5 sources in ai chat (#19331)
  • react: add remote to tspaths for typing (#19276)
  • react: update @​types/react and @​types/react-dom versions (#19442)
  • react: use JS webpack config files for module federation (#19452)
  • vue: storybook configuration generator for vue (#19141)
  • vue: update generated file setup for apps (#19428)

🩹 Fixes

  • angular: throw an error when generating a component and the specified module can't be found (#19324)
  • angular: remove leftover code causing duplicated route config when generating a library (#19326)
  • angular: update tsconfig included and excluded files when generating a library secondary entry point (#19366)
  • angular: do not set less math option in ng-packagr executors (#19402)
  • core: generate permissions on github ci workflow (#19357)
  • core: set prerelease on Github request for nx release changelog (#19343)
  • core: include client env when hashing tasks in the daemon (#19422)
  • core: adjust how findMatchingProjects works when provided additive patterns after an exclusion to be more intuitive (#19295)
  • core: cache runtime hashes with the env as part of the key (#19426)
  • core: add vue to cnw implicitDependencies (#19443)
  • linter: fix rule typings (#19294)
  • linter: add schema for nx plugin checks rule (#19447)
  • misc: properly add extra dependencies to packages (#19334)
  • misc: fixing discord link in npm page (#19372)
  • misc: report should not throw when no nx.json file is present (#19333)
  • repo: ensure cypress is installed on agents (#19430)
  • testing: install devkit when init playwright (#19406)
  • web: disable tsnode service after loading config (#19387)

❤️ Thank You

... (truncated)

Commits

Updates @types/node from 16.18.57 to 16.18.60

Commits

Updates @types/tmp from 0.2.3 to 0.2.5

Commits

Updates eslint from 8.49.0 to 8.52.0

Release notes

Sourced from eslint's releases.

v8.52.0

Features

  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)

Bug Fixes

  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)

Documentation

  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

Chores

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)

v8.51.0

Features

  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)

Bug Fixes

  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)

Documentation

  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 1866da5 docs: Update README (GitHub Actions Bot)

Chores

... (truncated)

Changelog

Sourced from eslint's changelog.

v8.52.0 - October 20, 2023

  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671) (Milos Djermanovic)
  • d63d4fe chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664) (Nicholas C. Zakas)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666) (Nicholas C. Zakas)
  • f30cefe test: fix FlatESLint tests for caching (#17658) (Milos Djermanovic)
  • ef650cb test: update tests for no-promise-executor-return (#17661) (Milos Djermanovic)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611) (Yosuke Ota)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649) (Francesco Trotta)
  • 660ed3a docs: Plugin flat config migration guide (#17640) (Nicholas C. Zakas)
  • a58aa20 docs: fix examples for several rules (#17645) (Milos Djermanovic)
  • 179929b docs: Remove trailing newline from the code of Playground links (#17641) (Francesco Trotta)
  • f8e5c30 docs: Update README (GitHub Actions Bot)
  • b7ef2f3 docs: Enable pretty code formatter output (#17635) (Nicholas C. Zakas)
  • 0bcb9a8 docs: Fix syntax errors in rule examples (#17633) (Francesco Trotta)
  • 61b9083 docs: Make no-continue example code work (#17643) (Zhongyuan Zhou)
  • 9fafe45 docs: upgrade to 11ty 2.0 (#17632) (Percy Ma)
  • ff8e4bf docs: Update README (GitHub Actions Bot)
  • fab249a docs: Update README (GitHub Actions Bot)
  • 392305b docs: Update no-irregular-whitespace and fix examples (#17626) (Francesco Trotta)
  • 6b8acfb docs: Add real whitespace to no-trailing-spaces examples (#17630) (Francesco Trotta)
  • 1000187 docs: Fix examples in unicode-bom (#17631) (Francesco Trotta)
  • 000290c docs: Update README (GitHub Actions Bot)

v8.51.0 - October 6, 2023

  • 1ef39ea chore: upgrade @​eslint/js@​8.51.0 (#17624) (Milos Djermanovic)
  • f8c7403 chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • f976b2f fix: make rule severity case-sensitive in flat config (#17619) (Milos Djermanovic)
  • 0edfe36 fix: Ensure crash error messages are not duplicated (#17584) (Nicholas C. Zakas)
  • ee5be81 docs: default to sourceType: "module" in rule examples (#17615) (Francesco Trotta)
  • dd79abc fix: eslint-disable to be able to parse quoted rule names (#17612) (Yosuke Ota)
  • d2f6801 fix: Ensure correct code path for && followed by ?? (#17618) (Nicholas C. Zakas)
  • 2665552 test: fix flat config linter tests to use Linter in flat config mode (#17616) (Milos Djermanovic)
  • 1aa26df docs: Add more examples for multiline-ternary (#17610) (George Ashiotis)
  • 47d0b44 docs: Update README (GitHub Actions Bot)
  • dbf831e docs: use generated og image (#17601) (Percy Ma)
  • 0a9c433 feat: Add --no-warn-ignored CLI option for flat config (#17569) (Domantas Petrauskas)
  • 1866da5 docs: Update README (GitHub Actions Bot)
  • 7b77bcc chore: Refactor CodePathState (#17510) (Nicholas C. Zakas)
  • 977e67e feat: logical-assignment-operators to report expressions with 3 operands (#17600) (Yosuke Ota)
  • bc77c9a chore: Document and refactor ForkContext (#17566) (Nicholas C. Zakas)
  • 24e1f14 chore: Refactor and document CodePath (#17558) (Nicholas C. Zakas)

v8.50.0 - September 22, 2023

  • f8a8a2d chore: upgrade @​eslint/js@​8.50.0 (#17599) (Milos Djermanovic)
  • 38ada6d chore: package.json update for @​eslint/js release (ESLint Jenkins)
  • 27d5a9e feat: add suggestions to array-callback-return (#17590) (Tanuj Kanti)

... (truncated)

Commits
  • 331cf62 8.52.0
  • 7dc28ed Build: changelog update for 8.52.0
  • 6d1f0c2 chore: upgrade @​eslint/js@​8.52.0 (#17671)
  • d63d4fe chore: package.json update for @​eslint/js release
  • 476d58a docs: Add note about invalid CLI flags when using flat config. (#17664)
  • 5de9637 fix: Ensure shared references in rule configs are separated (#17666)
  • f30cefe test: fix FlatESLint tests for caching (#17658)
  • ef650cb test: update tests for no-promise-executor-return (#17661)
  • 70648ee feat: report-unused-disable-directive to report unused eslint-enable (#17611)
  • dcfe573 fix: add preceding semicolon in suggestions of no-object-constructor (#17649)
  • Additional commits viewable in compare view

Updates liquidjs from 10.9.2 to 10.9.3

Release notes

Sourced from liquidjs's releases.

v10.9.3

10.9.3 (2023-10-15)

Bug Fixes

  • package version in released files (67a5b22)
Changelog

Sourced from liquidjs's changelog.

10.9.3 (2023-10-15)

Bug Fixes

  • package version in released files (67a5b22)
Commits

Updates vite from 4.4.9 to 4.5.0

Changelog

Sourced from vite's changelog.

4.5.0 (2023-10-18)

4.4.11 (2023-10-05)

  • revert: "fix: use string manipulation instead of regex to inject esbuild helpers (54e1275), closes #14094

4.4.10 (2023-10-03)

Commits
  • 055d2b8 release: v4.5.0
  • ed7bdc5 feat: scan .marko files (#14669)
  • 45595ef feat: backport mdx as known js source (#14560) (#14670)
  • 520139c feat(ssr): backport ssr.resolve.conditions and ssr.resolve.externalConditions...
  • b50db04 release: v4.4.11
  • 54e1275 revert: "fix: use string manipulation instead of regex to inject esbuild helpers
  • f3a3e77 release: v4.4.10
  • f8b9adb fix: restore builtins list
  • 104971d fix(resolve): support submodules of optional peer deps (#14489)
  • 0c6d289 fix(analysis): warnings for dynamic imports that use static template literals...
  • Additional commits viewable in compare view

Updates vitest from 0.34.4 to 0.34.6

Release notes

Sourced from vitest's releases.

v0.34.6

   🐞 Bug Fixes

    View changes on GitHub

v0.34.5

   🚀 Features

Bumps the minor_versions group with 42 updates:

| Package | From | To |
| --- | --- | --- |
| [@apollo/client](https://github.com/apollographql/apollo-client) | `3.7.17` | `3.8.6` |
| [@nrwl/tao](https://github.com/nrwl/nx/tree/HEAD/packages/tao) | `16.7.4` | `16.10.0` |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `16.18.57` | `16.18.60` |
| [@types/tmp](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/tmp) | `0.2.3` | `0.2.5` |
| [eslint](https://github.com/eslint/eslint) | `8.49.0` | `8.52.0` |
| [liquidjs](https://github.com/harttle/liquidjs) | `10.9.2` | `10.9.3` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `4.4.9` | `4.5.0` |
| [vitest](https://github.com/vitest-dev/vitest/tree/HEAD/packages/vitest) | `0.34.4` | `0.34.6` |
| [eslint-plugin-import](https://github.com/import-js/eslint-plugin-import) | `2.28.0` | `2.29.0` |
| [eslint-plugin-vitest](https://github.com/veritem/eslint-plugin-vitest) | `0.2.8` | `0.3.8` |
| [react-router-dom](https://github.com/remix-run/react-router/tree/HEAD/packages/react-router-dom) | `6.14.2` | `6.18.0` |
| [sass](https://github.com/sass/dart-sass) | `1.64.2` | `1.69.5` |
| [@shopify/theme-check-node](https://github.com/Shopify/theme-tools) | `1.16.1` | `1.19.0` |
| [@shopify/theme-language-server-node](https://github.com/Shopify/theme-tools) | `1.3.2` | `1.4.6` |
| [yaml](https://github.com/eemeli/yaml) | `2.3.2` | `2.3.3` |
| [@opentelemetry/exporter-metrics-otlp-http](https://github.com/open-telemetry/opentelemetry-js) | `0.43.0` | `0.44.0` |
| [get-port-please](https://github.com/unjs/get-port-please) | `3.0.1` | `3.1.1` |
| [kill-port-process](https://github.com/hilleer/kill-port-process) | `3.1.0` | `3.2.0` |
| [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) | `3.19.1` | `3.20.0` |
| [zod](https://github.com/colinhacks/zod) | `3.22.2` | `3.22.4` |
| [@types/commondir](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/commondir) | `1.0.0` | `1.0.1` |
| [@types/cross-zip](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/cross-zip) | `4.0.0` | `4.0.1` |
| [@types/diff](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/diff) | `5.0.3` | `5.0.7` |
| [@types/git-diff](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/git-diff) | `2.0.3` | `2.0.6` |
| [@types/gradient-string](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/gradient-string) | `1.1.2` | `1.1.4` |
| [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) | `4.14.195` | `4.14.200` |
| [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) | `7.5.2` | `7.5.4` |
| [@vitest/coverage-istanbul](https://github.com/vitest-dev/vitest/tree/HEAD/packages/coverage-istanbul) | `0.34.4` | `0.34.6` |
| [typedoc](https://github.com/TypeStrong/TypeDoc) | `0.25.1` | `0.25.3` |
| [@cucumber/cucumber](https://github.com/cucumber/cucumber-js) | `9.5.1` | `9.6.0` |
| [@shopify/shopify-api](https://github.com/Shopify/shopify-api-js) | `7.5.0` | `7.7.0` |
| [h3](https://github.com/unjs/h3) | `0.7.21` | `0.8.6` |
| [ws](https://github.com/websockets/ws) | `8.13.0` | `8.14.2` |
| [@types/ws](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/ws) | `8.5.5` | `8.5.8` |
| [@types/body-parser](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/body-parser) | `1.19.2` | `1.19.4` |
| [@types/express](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/express) | `4.17.17` | `4.17.20` |
| [@types/http-proxy](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/http-proxy) | `1.17.11` | `1.17.13` |
| [@types/lodash-es](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash-es) | `4.17.9` | `4.17.10` |
| [@types/serve-static](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/serve-static) | `1.15.2` | `1.15.4` |
| [mock-socket](https://github.com/thoov/mock-socket) | `9.2.1` | `9.3.1` |
| [jest-websocket-mock](https://github.com/romgain/jest-websocket-mock) | `2.4.0` | `2.5.0` |
| [@actions/core](https://github.com/actions/toolkit/tree/HEAD/packages/core) | `1.10.0` | `1.10.1` |


Updates `@apollo/client` from 3.7.17 to 3.8.6
- [Release notes](https://github.com/apollographql/apollo-client/releases)
- [Changelog](https://github.com/apollographql/apollo-client/blob/main/CHANGELOG.md)
- [Commits](apollographql/apollo-client@v3.7.17...v3.8.6)

Updates `@nrwl/tao` from 16.7.4 to 16.10.0
- [Release notes](https://github.com/nrwl/nx/releases)
- [Commits](https://github.com/nrwl/nx/commits/16.10.0/packages/tao)

Updates `@types/node` from 16.18.57 to 16.18.60
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Updates `@types/tmp` from 0.2.3 to 0.2.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/tmp)

Updates `eslint` from 8.49.0 to 8.52.0
- [Release notes](https://github.com/eslint/eslint/releases)
- [Changelog](https://github.com/eslint/eslint/blob/main/CHANGELOG.md)
- [Commits](eslint/eslint@v8.49.0...v8.52.0)

Updates `liquidjs` from 10.9.2 to 10.9.3
- [Release notes](https://github.com/harttle/liquidjs/releases)
- [Changelog](https://github.com/harttle/liquidjs/blob/master/CHANGELOG.md)
- [Commits](harttle/liquidjs@v10.9.2...v10.9.3)

Updates `vite` from 4.4.9 to 4.5.0
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v4.5.0/packages/vite)

Updates `vitest` from 0.34.4 to 0.34.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v0.34.6/packages/vitest)

Updates `eslint-plugin-import` from 2.28.0 to 2.29.0
- [Release notes](https://github.com/import-js/eslint-plugin-import/releases)
- [Changelog](https://github.com/import-js/eslint-plugin-import/blob/main/CHANGELOG.md)
- [Commits](import-js/eslint-plugin-import@v2.28.0...v2.29.0)

Updates `eslint-plugin-vitest` from 0.2.8 to 0.3.8
- [Release notes](https://github.com/veritem/eslint-plugin-vitest/releases)
- [Commits](vitest-dev/eslint-plugin-vitest@v0.2.8...v0.3.8)

Updates `react-router-dom` from 6.14.2 to 6.18.0
- [Release notes](https://github.com/remix-run/react-router/releases)
- [Changelog](https://github.com/remix-run/react-router/blob/main/packages/react-router-dom/CHANGELOG.md)
- [Commits](https://github.com/remix-run/react-router/commits/react-router-dom@6.18.0/packages/react-router-dom)

Updates `sass` from 1.64.2 to 1.69.5
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.64.2...1.69.5)

Updates `@shopify/theme-check-node` from 1.16.1 to 1.19.0
- [Release notes](https://github.com/Shopify/theme-tools/releases)
- [Commits](https://github.com/Shopify/theme-tools/compare/@shopify/theme-check-node@1.16.1...@shopify/theme-check-node@1.19.0)

Updates `@shopify/theme-language-server-node` from 1.3.2 to 1.4.6
- [Release notes](https://github.com/Shopify/theme-tools/releases)
- [Commits](https://github.com/Shopify/theme-tools/compare/@shopify/theme-language-server-node@1.3.2...@shopify/theme-language-server-node@1.4.6)

Updates `yaml` from 2.3.2 to 2.3.3
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.3.2...v2.3.3)

Updates `@opentelemetry/exporter-metrics-otlp-http` from 0.43.0 to 0.44.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-js/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-js/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-js@experimental/v0.43.0...experimental/v0.44.0)

Updates `get-port-please` from 3.0.1 to 3.1.1
- [Release notes](https://github.com/unjs/get-port-please/releases)
- [Changelog](https://github.com/unjs/get-port-please/blob/main/CHANGELOG.md)
- [Commits](unjs/get-port-please@v3.0.1...v3.1.1)

Updates `kill-port-process` from 3.1.0 to 3.2.0
- [Release notes](https://github.com/hilleer/kill-port-process/releases)
- [Commits](hilleer/kill-port-process@v3.1.0...v3.2.0)

Updates `simple-git` from 3.19.1 to 3.20.0
- [Release notes](https://github.com/steveukx/git-js/releases)
- [Changelog](https://github.com/steveukx/git-js/blob/main/simple-git/CHANGELOG.md)
- [Commits](https://github.com/steveukx/git-js/commits/simple-git@3.20.0/simple-git)

Updates `zod` from 3.22.2 to 3.22.4
- [Release notes](https://github.com/colinhacks/zod/releases)
- [Changelog](https://github.com/colinhacks/zod/blob/master/CHANGELOG.md)
- [Commits](colinhacks/zod@v3.22.2...v3.22.4)

Updates `@types/commondir` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/commondir)

Updates `@types/cross-zip` from 4.0.0 to 4.0.1
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/cross-zip)

Updates `@types/diff` from 5.0.3 to 5.0.7
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/diff)

Updates `@types/git-diff` from 2.0.3 to 2.0.6
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/git-diff)

Updates `@types/gradient-string` from 1.1.2 to 1.1.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/gradient-string)

Updates `@types/lodash` from 4.14.195 to 4.14.200
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)

Updates `@types/semver` from 7.5.2 to 7.5.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver)

Updates `@vitest/coverage-istanbul` from 0.34.4 to 0.34.6
- [Release notes](https://github.com/vitest-dev/vitest/releases)
- [Commits](https://github.com/vitest-dev/vitest/commits/v0.34.6/packages/coverage-istanbul)

Updates `typedoc` from 0.25.1 to 0.25.3
- [Release notes](https://github.com/TypeStrong/TypeDoc/releases)
- [Changelog](https://github.com/TypeStrong/typedoc/blob/master/CHANGELOG.md)
- [Commits](TypeStrong/typedoc@v0.25.1...v0.25.3)

Updates `@cucumber/cucumber` from 9.5.1 to 9.6.0
- [Release notes](https://github.com/cucumber/cucumber-js/releases)
- [Changelog](https://github.com/cucumber/cucumber-js/blob/main/CHANGELOG.md)
- [Commits](cucumber/cucumber-js@v9.5.1...v9.6.0)

Updates `@shopify/shopify-api` from 7.5.0 to 7.7.0
- [Release notes](https://github.com/Shopify/shopify-api-js/releases)
- [Changelog](https://github.com/Shopify/shopify-api-js/blob/v7.7.0/CHANGELOG.md)
- [Commits](Shopify/shopify-api-js@v7.5.0...v7.7.0)

Updates `h3` from 0.7.21 to 0.8.6
- [Release notes](https://github.com/unjs/h3/releases)
- [Changelog](https://github.com/unjs/h3/blob/main/CHANGELOG.md)
- [Commits](unjs/h3@v0.7.21...v0.8.6)

Updates `ws` from 8.13.0 to 8.14.2
- [Release notes](https://github.com/websockets/ws/releases)
- [Commits](websockets/ws@8.13.0...8.14.2)

Updates `@types/ws` from 8.5.5 to 8.5.8
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/ws)

Updates `@types/body-parser` from 1.19.2 to 1.19.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/body-parser)

Updates `@types/express` from 4.17.17 to 4.17.20
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/express)

Updates `@types/http-proxy` from 1.17.11 to 1.17.13
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/http-proxy)

Updates `@types/lodash-es` from 4.17.9 to 4.17.10
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash-es)

Updates `@types/serve-static` from 1.15.2 to 1.15.4
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/serve-static)

Updates `mock-socket` from 9.2.1 to 9.3.1
- [Release notes](https://github.com/thoov/mock-socket/releases)
- [Changelog](https://github.com/thoov/mock-socket/blob/master/CHANGELOG.md)
- [Commits](https://github.com/thoov/mock-socket/commits)

Updates `jest-websocket-mock` from 2.4.0 to 2.5.0
- [Release notes](https://github.com/romgain/jest-websocket-mock/releases)
- [Commits](romgain/jest-websocket-mock@v2.4.0...v2.5.0)

Updates `@actions/core` from 1.10.0 to 1.10.1
- [Changelog](https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md)
- [Commits](https://github.com/actions/toolkit/commits/HEAD/packages/core)

---
updated-dependencies:
- dependency-name: "@apollo/client"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@nrwl/tao"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/tmp"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: liquidjs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: vitest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: eslint-plugin-import
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: eslint-plugin-vitest
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: react-router-dom
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: sass
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@shopify/theme-check-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@shopify/theme-language-server-node"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: yaml
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@opentelemetry/exporter-metrics-otlp-http"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: get-port-please
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: kill-port-process
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: simple-git
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: zod
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/commondir"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/cross-zip"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/diff"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/git-diff"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/gradient-string"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/lodash"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/semver"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@vitest/coverage-istanbul"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: typedoc
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@cucumber/cucumber"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@shopify/shopify-api"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: h3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: ws
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@types/ws"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/body-parser"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/express"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/http-proxy"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/lodash-es"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: "@types/serve-static"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
- dependency-name: mock-socket
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: jest-websocket-mock
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor_versions
- dependency-name: "@actions/core"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor_versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Nov 1, 2023
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 6, 2023

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Nov 6, 2023
@dependabot dependabot bot deleted the dependabot-npm_and_yarn-minor_versions-61ae792b5f branch November 6, 2023 11:03
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.

0 participants