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

Update all dependencies #237

Merged
merged 1 commit into from Sep 16, 2023
Merged

Update all dependencies #237

merged 1 commit into from Sep 16, 2023

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 16, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@apollo/server 4.7.4 -> 4.9.3 age adoption passing confidence
@nestjs/cli 10.0.3 -> 10.1.17 age adoption passing confidence
@nestjs/common (source) 10.0.2 -> 10.2.5 age adoption passing confidence
@nestjs/config 3.0.0 -> 3.1.1 age adoption passing confidence
@nestjs/core (source) 10.0.2 -> 10.2.5 age adoption passing confidence
@nestjs/platform-express (source) 10.0.2 -> 10.2.5 age adoption passing confidence
@nestjs/testing (source) 10.0.2 -> 10.2.5 age adoption passing confidence
@opentelemetry/api (source) 1.4.1 -> 1.6.0 age adoption passing confidence
@opentelemetry/auto-instrumentations-node (source) 0.37.1 -> 0.39.2 age adoption passing confidence
@opentelemetry/core (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@opentelemetry/exporter-jaeger (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@opentelemetry/exporter-trace-otlp-http (source) 0.40.0 -> 0.43.0 age adoption passing confidence
@opentelemetry/instrumentation (source) 0.40.0 -> 0.43.0 age adoption passing confidence
@opentelemetry/resources (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@opentelemetry/sdk-node (source) 0.40.0 -> 0.43.0 age adoption passing confidence
@opentelemetry/sdk-trace-base (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@opentelemetry/sdk-trace-node (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@opentelemetry/semantic-conventions (source) 1.14.0 -> 1.17.0 age adoption passing confidence
@prisma/client (source) 5.0.0 -> 5.3.1 age adoption passing confidence
@prisma/instrumentation (source) 5.0.0 -> 5.3.1 age adoption passing confidence
@types/node (source) 18.16.18 -> 18.17.16 age adoption passing confidence
@typescript-eslint/eslint-plugin 6.0.0 -> 6.7.0 age adoption passing confidence
@typescript-eslint/parser 6.0.0 -> 6.7.0 age adoption passing confidence
@vitest/coverage-v8 (source) ^0.32.0 -> ^0.34.0 age adoption passing confidence
bullmq (source) 4.0.0 -> 4.10.0 age adoption passing confidence
eslint (source) 8.45.0 -> 8.49.0 age adoption passing confidence
eslint-config-prettier 8.8.0 -> 8.10.0 age adoption passing confidence
eslint-plugin-import 2.27.5 -> 2.28.1 age adoption passing confidence
firebase-admin (source) 11.9.0 -> 11.10.1 age adoption passing confidence
graphql 16.6.0 -> 16.8.0 age adoption passing confidence
graphql-ws 5.13.1 -> 5.14.0 age adoption passing confidence
lint-staged 13.2.2 -> 13.3.0 age adoption passing confidence
prisma (source) 5.0.0 -> 5.3.1 age adoption passing confidence
typescript (source) 5.1.3 -> 5.2.2 age adoption passing confidence
unplugin-swc (source) 1.3.2 -> 1.4.2 age adoption passing confidence
vitest 0.32.2 -> 0.34.4 age adoption passing confidence
vitest-mock-extended 1.1.3 -> 1.2.1 age adoption passing confidence
ws 8.13.0 -> 8.14.1 age adoption passing confidence

Release Notes

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

v4.9.3

Compare Source

Patch Changes
  • a1c725eaf Thanks @​trevor-scheer! - Ensure API keys are valid header values on startup

    Apollo Server previously performed no sanitization or validation of API keys on startup. In the case that an API key was provided which contained characters that are invalid as header values, Apollo Server could inadvertently log the API key in cleartext.

    This only affected users who:

    • Provide an API key with characters that are invalid as header values
    • Use either schema or usage reporting
    • Use the default fetcher provided by Apollo Server or configure their own node-fetch fetcher

    Apollo Server now trims whitespace from API keys and validates that they are valid header values. If an invalid API key is provided, Apollo Server will throw an error on startup.

    For more details, see the security advisory:
    GHSA-j5g3-5c8r-7qfx

v4.9.2

Compare Source

Patch Changes
  • #​7699 62e7d940d Thanks @​trevor-scheer! - Fix error path attachment for list items

    Previously, when errors occurred while resolving a list item, the trace builder would fail to place the error at the correct path and just default to the root node with a warning message:

    Could not find node with path x.y.1, defaulting to put errors on root node.

    This change places these errors at their correct paths and removes the log.

v4.9.1

Compare Source

Patch Changes

v4.9.0

Compare Source

Minor Changes
  • #​7617 4ff81ca50 Thanks @​trevor-scheer! - Introduce new ApolloServerPluginSubscriptionCallback plugin. This plugin implements the subscription callback protocol which is used by Apollo Router. This feature implements subscriptions over HTTP via a callback URL which Apollo Router registers with Apollo Server. This feature is currently in preview and is subject to change.

    You can enable callback subscriptions like so:

    import { ApolloServerPluginSubscriptionCallback } from '@​apollo/server/plugin/subscriptionCallback';
    import { ApolloServer } from '@​apollo/server';
    
    const server = new ApolloServer({
      // ...
      plugins: [ApolloServerPluginSubscriptionCallback()],
    });

    Note that there is currently no tracing or metrics mechanism in place for callback subscriptions. Additionally, this plugin "intercepts" callback subscription requests and bypasses some of Apollo Server's internals. The result of this is that certain plugin hooks (notably executionDidStart and willResolveField) will not be called when handling callback subscription requests or when sending subscription events.

    For more information on the subscription callback protocol, visit the docs:
    https://www.apollographql.com/docs/router/executing-operations/subscription-callback-protocol/

Patch Changes

v4.8.1

Compare Source

Patch Changes

v4.8.0

Compare Source

Minor Changes
  • #​7634 f8a8ea08f Thanks @​dfperry5! - Updating the ApolloServer constructor to take in a stringifyResult function that will allow a consumer to pass in a function that formats the result of an http query.

    Usage:

    const server = new ApolloServer({
      typeDefs,
      resolvers,
      stringifyResult: (value: FormattedExecutionResult) => {
        return JSON.stringify(value, null, 2);
      },
    });

v4.7.5

Compare Source

Patch Changes
nestjs/nest-cli (@​nestjs/cli)

v10.1.17

Compare Source

v10.1.16

Compare Source

  • fix(swc): disable paths mapping on windows (0cc6c92)
  • chore(deps): update dependency @​types/node to v18.17.11 (4747852)
  • chore(deps): update dependency jest to v29.6.4 (183d07b)

v10.1.15

Compare Source

v10.1.14

Compare Source

v10.1.13

Compare Source

v10.1.12

Compare Source

v10.1.11

Compare Source

  • Merge pull request #​2206 from micalevisk/fix/preservewatch (226d506)
  • fix: support using preserveWatchOutput from tsconfig file (fd2f735)
  • feat: support --preserveWatchOutput for 'build' command (b923083)
  • style: format all files (ff52a06)
  • chore(deps): update dependency @​swc/core to v1.3.72 (ddcaaa1)
  • chore(deps): update dependency eslint to v8.46.0 (de55c2c)
  • chore(deps): update dependency eslint-config-prettier to v8.9.0 (2a444d5)
  • chore(deps): update dependency jest to v29.6.2 (92cd16f)
  • chore(deps): update dependency @​types/node to v18.17.1 (b1b5404)
  • chore(deps): update dependency @​swc/core to v1.3.71 (baa9ff6)
  • chore(deps): update typescript-eslint monorepo to v6.2.0 (02cc313)
  • chore(deps): update dependency @​types/node to v18.17.0 (0dc6cd3)
  • chore(deps): update dependency @​types/node to v18.16.20 (a9a724a)
  • chore(deps): update dependency release-it to v16.1.3 (534659d)

v10.1.10

Compare Source

  • Merge pull request #​2188 from JohanManders/swc-reload (99d32e7)
  • chore(deps): update commitlint monorepo to v17.6.7 (e8b82b9)
  • fix(swc): SWC doesn't reload the application on Windows (ad30bcb)
  • chore(deps): update dependency @​swc/core to v1.3.70 (cb547fa)
  • chore(deps): update typescript-eslint monorepo to v6.1.0 (e8d82e5)

v10.1.9

Compare Source

  • Merge pull request #​2159 from nestjs/renovate/angular-cli-monorepo (707cb55)
  • Merge pull request #​2169 from nestjs/renovate/tsconfig-paths-webpack-plugin-4.x (56c7b83)
  • Merge pull request #​2179 from micalevisk/perf/eage-load-compilers (7609844)
  • Merge pull request #​2175 from sezanzeb/patch-1 (36a7111)
  • chore: ignore type declaration files from eslint checking (5cc0c8a)
  • perf(actions): on build, only import the used compiler (984b697)
  • chore(deps): update dependency release-it to v16.1.2 (27faa64)
  • chore(deps): update dependency eslint to v8.45.0 (d368823)
  • fix(cli): don't fail if the argument contains multiple '--' (72f94f1)
  • chore(deps): update dependency @​swc/core to v1.3.69 (e21dd65)
  • fix(deps): update dependency tsconfig-paths-webpack-plugin to v4.1.0 (4dd8bf2)
  • fix(deps): update angular-cli monorepo to v16.1.4 (e8dd638)

v10.1.8

Compare Source

  • Merge pull request #​2161 from powerfulyang/master (c2e2d26)
  • Merge pull request #​2155 from tuxmachine/patch-1 (be5d1d0)
  • chore(deps): update typescript-eslint monorepo to v6 (2d8a8d5)
  • chore(deps): update typescript-eslint monorepo to v5.62.0 (e13f4df)
  • chore(deps): update dependency @​types/jest to v29.5.3 (8d512ee)
  • chore(deps): update dependency release-it to v16.1.0 (ac30e00)
  • fix(swc): deepMerge didn't handle array type properly (bc18e83)
  • chore(deps): update dependency jest to v29.6.1 (1b9ab26)
  • chore(deps): update dependency release-it to v16 (77915d8)
  • chore(deps): update dependency prettier to v3 (ac0a98d)
  • fix(swc): don't set missing class fields (37813f4)

v10.1.7

Compare Source

  • feat(plugin): use local ts binary for meta printer (1fc18f6)

v10.1.6

Compare Source

  • fix(plugin): use unknown to fix ts incompatibility issues (882722d)

v10.1.5

Compare Source

v10.1.4

Compare Source

  • refactor: update readonly visitor methods to take type args (d0f086d)

v10.1.3

Compare Source

  • fix: swc default factory should be usable for swc loader (b00c3e1)

v10.1.2

Compare Source

v10.1.1

Compare Source

v10.1.0

Compare Source


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), 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.

@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from db2680d to e3d63f8 Compare July 24, 2023 09:58
@renovate renovate bot force-pushed the renovate/all branch 12 times, most recently from 623a43e to cfa7f61 Compare July 31, 2023 10:16
@renovate renovate bot force-pushed the renovate/all branch 10 times, most recently from 0fbb312 to 642878a Compare August 6, 2023 04:25
@renovate renovate bot force-pushed the renovate/all branch 11 times, most recently from 760e71f to 6c2e490 Compare September 2, 2023 23:21
@renovate renovate bot force-pushed the renovate/all branch 8 times, most recently from 891a336 to fe0c8a6 Compare September 11, 2023 16:13
@renovate renovate bot force-pushed the renovate/all branch 6 times, most recently from 9fa3aaf to 2f14781 Compare September 15, 2023 09:06
@sonarcloud
Copy link

sonarcloud bot commented Sep 15, 2023

Kudos, SonarCloud Quality Gate passed!    Quality Gate passed

Bug A 0 Bugs
Vulnerability A 0 Vulnerabilities
Security Hotspot A 0 Security Hotspots
Code Smell A 0 Code Smells

No Coverage information No Coverage information
0.0% 0.0% Duplication

@jbl428 jbl428 merged commit b5ccb08 into main Sep 16, 2023
5 checks passed
@jbl428 jbl428 deleted the renovate/all branch September 16, 2023 00:31
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.

None yet

1 participant