Skip to content
This repository has been archived by the owner on Jul 12, 2023. It is now read-only.

Update all non-major dependencies #10

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 1, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/client (source) 3.7.10 -> 3.7.15 age adoption passing confidence
@apollo/server 4.5.0 -> 4.7.1 age adoption passing confidence
@as-integrations/next 1.2.0 -> 1.3.0 age adoption passing confidence
@babel/core (source) 7.21.3 -> 7.22.1 age adoption passing confidence
@commitlint/cli (source) 17.4.4 -> 17.6.5 age adoption passing confidence
@commitlint/config-conventional (source) 17.4.4 -> 17.6.5 age adoption passing confidence
@dword-design/eslint-plugin-import-alias 3.0.1 -> 3.0.8 age adoption passing confidence
@emotion/react (source) 11.10.6 -> 11.11.0 age adoption passing confidence
@emotion/styled (source) 11.10.6 -> 11.11.0 age adoption passing confidence
@graphql-codegen/cli 3.2.2 -> 3.3.1 age adoption passing confidence
@graphql-codegen/typescript 3.0.2 -> 3.0.4 age adoption passing confidence
@graphql-codegen/typescript-resolvers 3.1.1 -> 3.2.1 age adoption passing confidence
@graphql-tools/schema 9.0.17 -> 9.0.19 age adoption passing confidence
@mui/icons-material (source) 5.11.11 -> 5.11.16 age adoption passing confidence
@mui/joy (source) 5.0.0-alpha.70 -> 5.0.0-alpha.82 age adoption passing confidence
@mui/material (source) 5.11.12 -> 5.13.3 age adoption passing confidence
@next/font 13.2.4 -> 13.4.4 age adoption passing confidence
@storybook/testing-library ^0.0.13 -> ^0.1.0 age adoption passing confidence
@types/jest (source) 29.4.0 -> 29.5.1 age adoption passing confidence
@types/node (source) 18.15.0 -> 18.16.16 age adoption passing confidence
@types/react (source) 18.0.28 -> 18.2.7 age adoption passing confidence
@types/react-dom (source) 18.0.11 -> 18.2.4 age adoption passing confidence
@typescript-eslint/eslint-plugin 5.54.1 -> 5.59.8 age adoption passing confidence
@typescript-eslint/parser 5.54.1 -> 5.59.8 age adoption passing confidence
dotenv 16.0.3 -> 16.1.0 age adoption passing confidence
eslint (source) 8.36.0 -> 8.41.0 age adoption passing confidence
eslint-config-next 13.2.4 -> 13.4.4 age adoption passing confidence
eslint-config-prettier 8.7.0 -> 8.8.0 age adoption passing confidence
eslint-import-resolver-typescript 3.5.3 -> 3.5.5 age adoption passing confidence
eslint-plugin-typescript-sort-keys 2.1.0 -> 2.3.0 age adoption passing confidence
graphql-scalars 1.20.1 -> 1.22.1 age adoption passing confidence
i18next (source) 22.4.11 -> 22.5.0 age adoption passing confidence
i18next-browser-languagedetector 7.0.1 -> 7.0.2 age adoption passing confidence
i18next-http-backend 2.1.1 -> 2.2.1 age adoption passing confidence
lint-staged 13.2.0 -> 13.2.2 age adoption passing confidence
next (source) 13.2.4 -> 13.4.4 age adoption passing confidence
next-auth (source) 4.20.1 -> 4.22.1 age adoption passing confidence
prettier (source) 2.8.4 -> 2.8.8 age adoption passing confidence
react-hook-form (source) 7.43.5 -> 7.44.2 age adoption passing confidence
react-hot-toast 2.4.0 -> 2.4.1 age adoption passing confidence
react-i18next 12.2.0 -> 12.3.1 age adoption passing confidence
release-it 15.8.0 -> 15.10.3 age adoption passing confidence
remark (source) 14.0.2 -> 14.0.3 age adoption passing confidence
trim-newlines 4.0.2 -> 4.1.1 age adoption passing confidence
ts-jest (source) 29.0.5 -> 29.1.0 age adoption passing confidence

Release Notes

apollographql/apollo-client

v3.7.15

Compare Source

Patch Changes
  • #​10891 ab42a5c08 Thanks @​laverdet! - Fixes a bug in how multipart responses are read when using @defer. When reading a multipart body, HttpLink no longer attempts to parse the boundary (e.g. "---" or other boundary string) within the response data itself, only when reading the beginning of each mulitpart chunked message.

  • #​10789 23a4e1578 Thanks @​phryneas! - Fix a bug where other fields could be aliased to __typename or id, in which case an incoming result would be merged into the wrong cache entry.

v3.7.14

Compare Source

Patch Changes
  • #​10764 1b0a61fe5 Thanks @​phryneas! - Deprecate useFragment returnPartialData option

  • #​10810 a6252774f Thanks @​dleavitt! - Fix type signature of ServerError.

    In <3.7 HttpLink and BatchHttpLink would return a ServerError.message of e.g. "Unexpected token 'E', \"Error! Foo bar\" is not valid JSON" and a ServerError.result of undefined in the case where a server returned a >= 300 response code with a response body containing a string that could not be parsed as JSON.

    In >=3.7, message became e.g. Response not successful: Received status code 302 and result became the string from the response body, however the type in ServerError.result was not updated to include the string type, which is now properly reflected.

v3.7.13

Compare Source

Patch Changes
  • #​10805 a5503666c Thanks @​phryneas! - Fix a potential memory leak in SSR scenarios when many persistedQuery instances were created over time.

  • #​10718 577c68bdd Thanks @​Hsifnus! - Delay Concast subscription teardown slightly in useSubscription to prevent unexpected Concast teardown when one useSubscription hook tears down its in-flight Concast subscription immediately followed by another useSubscription hook reusing and subscribing to that same Concast

v3.7.12

Compare Source

Patch Changes

v3.7.11

Compare Source

Patch Changes
  • #​10586 4175af594 Thanks @​alessbell! - Improve WebSocket error handling for generic Event received on error. For more information see https://developer.mozilla.org/en-US/docs/Web/API/WebSocket/error_event.

  • #​10411 152baac34 Thanks @​lovasoa! - Simplify error message generation and make 'undefined' an impossible message string.

  • #​10592 cdb98ae08 Thanks @​alessbell! - Adds support for multipart subscriptions in HttpLink.

  • #​10698 38508a251 Thanks @​jerelmiller! - Changes the behavior of useLazyQuery introduced in #​10427 where unmounting a component before a query was resolved would reject the promise with an abort error. Instead, the promise will now resolve naturally with the result from the request.

    Other notable fixes:

    • Kicking off multiple requests in parallel with the execution function will now ensure each returned promise is resolved with the data from its request. Previously, each promise was resolved with data from the last execution.
    • Re-rendering useLazyQuery with a different query document will now ensure the execution function uses the updated query document. Previously, only the query document rendered the first time would be used for the request.
  • #​10660 364bee98f Thanks @​alessbell! - Upgrades TypeScript to v5. This change is fully backward-compatible and transparent to users.

  • #​10597 8fb9d190d Thanks @​phryneas! - Fix a bug where an incoming cache update could prevent future updates from the active link.

  • #​10629 02605bb3c Thanks @​phryneas! - useQuery: delay unsubscribe to fix race conditions

apollographql/apollo-server

v4.7.1

Compare Source

Patch Changes
  • #​7539 5d3c45be9 Thanks @​mayakoneval! - 🐛 Bug Fix for Apollo Server Landing Pages on Safari. A Content Security Policy was added to our landing page html so that Safari can run the inline scripts we use to call the Embedded Sandbox & Explorer.

v4.7.0

Compare Source

Minor Changes
  • #​7504 22a5be934 Thanks @​mayakoneval! - In the Apollo Server Landing Page Local config, you can now opt out of the telemetry that Apollo Studio runs in the
    embedded Sandbox & Explorer landing pages. This telemetry includes Google Analytics for event tracking and
    Sentry for error tracking.

    Example of the new config option:

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      plugins: [
        process.env.NODE_ENV === 'production'
          ? ApolloServerPluginLandingPageProductionDefault({
              graphRef: 'my-graph-id@my-graph-variant',
              embed: {
                runTelemetry: false
              },
            })
          : ApolloServerPluginLandingPageLocalDefault({
              embed: {
                runTelemetry: false
              },
            }),
      ],
    });
    

v4.6.0

Compare Source

Minor Changes
  • #​7465 1e808146a Thanks @​trevor-scheer! - Introduce new opt-in configuration option to mitigate v4 status code regression

    Apollo Server v4 accidentally started responding to requests with an invalid variables object with a 200 status code, where v3 previously responded with a 400. In order to not break current behavior (potentially breaking users who have creatively worked around this issue) and offer a mitigation, we've added the following configuration option which we recommend for all users.

    new ApolloServer({
      // ...
      status400ForVariableCoercionErrors: true,
    });

    Specifically, this regression affects cases where input variable coercion fails. Variables of an incorrect type (i.e. String instead of Int) or unexpectedly null are examples that fail variable coercion. Additionally, missing or incorrect fields on input objects as well as custom scalars that throw during validation will also fail variable coercion. For more specifics on variable coercion, see the "Input Coercion" sections in the GraphQL spec.

    This will become the default behavior in Apollo Server v5 and the configuration option will be ignored / no longer needed.

Patch Changes
  • #​7454 f6e3ae021 Thanks @​trevor-scheer! - Start building packages with TS 5.x, which should have no effect for users

  • #​7433 e0db95b96 Thanks @​KGAdamCook! - Previously, when users provided their own documentStore, Apollo Server used a random prefix per schema in order to guarantee there was no shared state from one schema to the next. Now Apollo Server uses a hash of the schema, which enables the provided document store to be shared if you choose to do so.

apollo-server-integrations/apollo-server-integration-next

v1.3.0

Compare Source

Minor Changes
babel/babel

v7.22.1

Compare Source

🐛 Bug Fix

v7.22.0

Compare Source

🚀 New Feature
  • babel-parser, babel-plugin-transform-typescript
  • babel-compat-data, babel-core, babel-plugin-proposal-unicode-sets-regex, babel-plugin-transform-unicode-sets-regex, babel-preset-env, babel-standalone
  • babel-helpers, babel-plugin-proposal-explicit-resource-management, babel-plugin-transform-runtime, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime, babel-standalone
  • babel-plugin-proposal-import-attributes-to-assertions
  • babel-core, babel-generator, babel-parser, babel-plugin-syntax-import-attributes, babel-preset-env, babel-standalone, babel-types
  • babel-generator, babel-parser, babel-traverse, babel-types
  • babel-core, babel-helper-create-regexp-features-plugin, babel-parser
  • babel-helpers, babel-plugin-proposal-decorators, babel-plugin-syntax-decorators, babel-runtime-corejs2, babel-runtime-corejs3, babel-runtime
💅 Polish
  • babel-plugin-transform-react-constant-elements, babel-plugin-transform-react-jsx, babel-traverse, babel-types
🏠 Internal
  • babel-parser
  • babel-compat-data, babel-helper-transform-fixture-test-runner, babel-node, babel-plugin-proposal-decorators, babel-plugin-proposal-duplicate-named-capturing-groups-regex, babel-plugin-transform-async-generator-functions, babel-plugin-transform-named-capturing-groups-regex, babel-plugin-transform-runtime, babel-preset-env, babel-runtime-corejs3
  • babel-core, babel-plugin-proposal-async-generator-functions, babel-plugin-proposal-class-properties, babel-plugin-proposal-class-static-block, babel-plugin-proposal-decorators, babel-plugin-proposal-dynamic-import, babel-plugin-proposal-export-namespace-from, babel-plugin-proposal-function-sent, babel-plugin-proposal-json-strings, babel-plugin-proposal-logical-assignment-operators, babel-plugin-proposal-nullish-coalescing-operator, babel-plugin-proposal-numeric-separator, babel-plugin-proposal-object-rest-spread, babel-plugin-proposal-optional-catch-binding, babel-plugin-proposal-optional-chaining, babel-plugin-proposal-pipeline-operator, babel-plugin-proposal-private-methods, babel-plugin-proposal-private-property-in-object, babel-plugin-proposal-unicode-property-regex, babel-preset-env, babel-standalone

v7.21.8

Compare Source

👓 Spec Compliance
🐛 Bug Fix
  • babel-helper-create-class-features-plugin, babel-helper-create-regexp-features-plugin

v7.21.5

Compare Source

👓 Spec Compliance
  • babel-generator, babel-parser, babel-types
🐛 Bug Fix
  • babel-core, babel-generator, babel-plugin-transform-modules-commonjs, babel-plugin-transform-react-jsx
  • babel-preset-env
💅 Polish
🏠 Internal
  • babel-core
  • babel-helper-fixtures, babel-preset-typescript
    • #​15568 Handle .overrides and .env when resolving plugins/presets from fixture options (@​JLHwung)
  • babel-helper-create-class-features-plugin, babel-helper-create-regexp-features-plugin

v7.21.4

Compare Source

🐛 Bug Fix
  • babel-core, babel-helper-module-imports, babel-preset-typescript
  • babel-generator
💅 Polish
  • babel-helper-create-class-features-plugin, babel-plugin-proposal-class-properties, babel-plugin-transform-typescript, babel-traverse
🏠 Internal

Configuration

📅 Schedule: Branch creation - "on the first day of the month" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 has been generated by Mend Renovate. View repository job log here.

@vercel
Copy link

vercel bot commented Apr 1, 2023

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

Name Status Preview Comments Updated (UTC)
next-apollo-joy-starter ❌ Failed (Inspect) Jun 2, 2023 5:37pm

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3a108e4 to c392cd6 Compare April 1, 2023 20:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c392cd6 to 1910557 Compare April 3, 2023 00:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1910557 to d710cc8 Compare April 3, 2023 10:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d710cc8 to 368c648 Compare April 3, 2023 11:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 368c648 to e54ee44 Compare April 3, 2023 22:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e54ee44 to 9e28dae Compare April 4, 2023 14:50
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9e28dae to a05712c Compare April 5, 2023 09:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a05712c to c65a0e9 Compare April 5, 2023 14:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c65a0e9 to 716f4db Compare April 5, 2023 17:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 716f4db to cfb0f62 Compare April 6, 2023 08:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from cfb0f62 to 9c2d2ad Compare April 6, 2023 12:38
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9c2d2ad to 1958303 Compare April 6, 2023 21:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1958303 to 101612b Compare April 7, 2023 05:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 101612b to c7dcdfe Compare April 7, 2023 16:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fcaac5b to f9284af Compare May 14, 2023 21:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f9284af to 125b663 Compare May 15, 2023 00:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 125b663 to 3c45a38 Compare May 15, 2023 09:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3c45a38 to f79d07f Compare May 15, 2023 11:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f79d07f to ce8abcd Compare May 16, 2023 08:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ce8abcd to f42d58a Compare May 28, 2023 12:20
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f42d58a to a7e4fc7 Compare May 28, 2023 22:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a7e4fc7 to 136ca95 Compare May 29, 2023 15:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 136ca95 to 53aa5da Compare May 29, 2023 21:15
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53aa5da to 6b933ba Compare May 30, 2023 03:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6b933ba to 6d7747e Compare May 30, 2023 09:57
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 6d7747e to e4fd066 Compare May 31, 2023 18:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e4fd066 to 3d3833f Compare May 31, 2023 23:36
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants