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

fix(deps): update all non-major dependencies #162

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 10, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
@apollo/server 4.7.5 -> 4.9.5 age adoption passing confidence dependencies minor
@types/cors (source) 2.8.13 -> 2.8.15 age adoption passing confidence devDependencies patch
@types/express (source) 4.17.17 -> 4.17.20 age adoption passing confidence devDependencies patch
@typescript-eslint/eslint-plugin 5.61.0 -> 5.62.0 age adoption passing confidence devDependencies minor
@typescript-eslint/parser 5.61.0 -> 5.62.0 age adoption passing confidence devDependencies minor
eslint (source) 8.44.0 -> 8.52.0 age adoption passing confidence devDependencies minor
eslint-config-prettier 8.8.0 -> 8.10.0 age adoption passing confidence devDependencies minor
gradle (source) 8.2 -> 8.4 age adoption passing confidence minor
graphql 16.7.1 -> 16.8.1 age adoption passing confidence dependencies minor
typescript (source) 5.1.6 -> 5.2.2 age adoption passing confidence devDependencies minor
io.spring.dependency-management 1.1.0 -> 1.1.3 age adoption passing confidence plugin patch
org.testcontainers:testcontainers-bom (source) 1.18.3 -> 1.19.1 age adoption passing confidence dependencies minor
com.navercorp.fixturemonkey:fixture-monkey-kotlin 0.6.1 -> 0.6.11 age adoption passing confidence dependencies patch
io.kotest.extensions:kotest-assertions-arrow 1.3.3 -> 1.4.0 age adoption passing confidence dependencies minor
org.hibernate:hibernate-spatial (source) 6.2.6.Final -> 6.3.1.Final age adoption passing confidence dependencies minor
jacoco (source) 0.8.10 -> 0.8.11 age adoption passing confidence dependencies patch
com.amazonaws:aws-java-sdk-bom (source) 1.12.504 -> 1.12.576 age adoption passing confidence dependencies patch
io.mockk:mockk (source) 1.13.5 -> 1.13.8 age adoption passing confidence dependencies patch
io.kotest:kotest-runner-junit5 5.6.2 -> 5.7.2 age adoption passing confidence dependencies minor
org.graalvm.buildtools.native 0.9.23 -> 0.9.28 age adoption passing confidence plugin patch
org.sonarqube 4.2.1.3168 -> 4.4.1.3373 age adoption passing confidence plugin minor
io.jsonwebtoken:jjwt-jackson 0.11.5 -> 0.12.3 age adoption passing confidence dependencies minor
io.jsonwebtoken:jjwt-impl 0.11.5 -> 0.12.3 age adoption passing confidence dependencies minor
io.jsonwebtoken:jjwt-api 0.11.5 -> 0.12.3 age adoption passing confidence dependencies minor
com.squareup.okhttp3:mockwebserver (source) 4.11.0 -> 4.12.0 age adoption passing confidence dependencies minor
io.arrow-kt:arrow-core 1.2.0-RC -> 1.2.1 age adoption passing confidence dependencies patch
org.jmailen.kotlinter 3.15.0 -> 3.16.0 age adoption passing confidence plugin minor
org.jetbrains.kotlin.plugin.jpa 1.9.0 -> 1.9.10 age adoption passing confidence plugin patch
org.jetbrains.kotlin.plugin.spring 1.9.0 -> 1.9.10 age adoption passing confidence plugin patch
org.jetbrains.kotlin.jvm 1.9.0 -> 1.9.10 age adoption passing confidence plugin patch
org.springframework.boot 3.1.1 -> 3.1.5 age adoption passing confidence plugin patch

Release Notes

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

v4.9.5

Compare Source

Patch Changes

v4.9.4

Compare Source

Patch Changes
  • #​7747 ddce036e1 Thanks @​trevor-scheer! - The minimum version of graphql officially supported by Apollo Server 4 as a peer dependency, v16.6.0, contains a serious bug that can crash your Node server. This bug is fixed in the immediate next version, [email protected], and we strongly encourage you to upgrade your installation of graphql to at least v16.7.0 to avoid this bug. (For backwards compatibility reasons, we cannot change Apollo Server 4's minimum peer dependency, but will change it when we release Apollo Server 5.)

    Apollo Server 4 contained a particular line of code that makes triggering this crashing bug much more likely. This line was already removed in Apollo Server v3.8.2 (see #​6398) but the fix was accidentally not included in Apollo Server 4. We are now including this change in Apollo Server 4, which will reduce the likelihood of hitting this crashing bug for users of graphql v16.6.0. That said, taking this @apollo/server upgrade does not prevent this bug from being triggered in other ways, and the real fix to this crashing bug is to upgrade graphql.

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);
      },
    });
typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)

v5.62.0

Compare Source

Bug Fixes
  • eslint-plugin: [comma-spacing] allow no space after trailing comma in objects and arrays (#​6938) (24bdacc)
  • eslint-plugin: [prefer-includes] escape special characters (#​7161) (5a347a5), closes #​7145
  • eslint-plugin: replace auto-fix of class literal property style rule with suggestion (#​7054) (a8c824a)
Features
  • eslint-plugin: [prefer-nullish-coalescing] add ignorePrimitives option (#​6487) (6edaa04)

You can read about our versioning strategy and releases on our website.

typescript-eslint/typescript-eslint (@​typescript-eslint/parser)

v5.62.0

Compare Source

Note: Version bump only for package @​typescript-eslint/parser

You can read about our versioning strategy and releases on our website.

eslint/eslint (eslint)

v8.52.0

Compare Source

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

v8.51.0

Compare Source

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

v8.50.0

Compare Source

Features

  • 27d5a9e feat: add suggestions to array-callback-return (#​17590) (Tanuj Kanti)
  • f9082ff feat: flat-rule-tester make sure default config always matches (#​17585) (fnx)
  • 83914ad feat: Implement SourceCode#applyInlineConfig() (#​17351) (Nicholas C. Zakas)
  • 22a5582 feat: add rule no-object-constructor, deprecate no-new-object (#​17576) (Francesco Trotta)
  • 85a3d9e feat: allowVoid option in array-callback-return (#​17564) (Tanuj Kanti)

Bug Fixes

  • cc4d26b fix: Ensure deprecated context.parserServices warns (#​17593) (Nicholas C. Zakas)
  • 1ea4cfb fix: Ensure all RuleTester tests all deprecated context methods (#​17587) (Nicholas C. Zakas)
  • aa1b657 fix: wrong suggestion and message in no-misleading-character-class (#​17571) (Yosuke Ota)

Documentation

  • 1800537 docs: Fix and standardize JSX code examples (#​17591) (Francesco Trotta)
  • 48a44a7 docs: Add correct/incorrect tags to prefer-arrow-callback (#​17589) (Francesco Trotta)
  • 20893d4 docs: fix incorrect tag's place (#​17575) (Tanuj Kanti)
  • bd7a71f docs: Update README (GitHub Actions Bot)

Chores

v8.49.0

Compare Source

Features

  • da09f4e feat: Implement onUnreachableCodePathStart/End (#​17511) (Nicholas C. Zakas)
  • 32b2327 feat: Emit deprecation warnings in RuleTester (#​17527) (Nicholas C. Zakas)
  • acb7df3 feat: add new enforce option to lines-between-class-members (#​17462) (Nitin Kumar)

Documentation

  • ecfb54f docs: Update README (GitHub Actions Bot)
  • de86b3b docs: update no-promise-executor-return examples (#​17529) (Nitin Kumar)
  • 032c4b1 docs: add typescript template (#​17500) (James)
  • cd7da5c docs: Update README (GitHub Actions Bot)

Chores

v8.48.0

Compare Source

Features
  • 1fbb3b0 feat: correct update direction in for-direction (#​17483) (Francesco Trotta)
  • d73fbf2 feat: rule tester do not create empty valid or invalid test suites (#​17475) (fnx)
  • ee2f718 feat: Allow void in rule no-promise-executor-return (#​17282) (nopeless)
Bug Fixes
  • 7234f6a fix: update RuleTester JSDoc and deprecations (#​17496) (Jonas Berlin)
Documentation
  • 7a51d77 docs: no-param-reassign mention strict mode (#​17494) (Stephen Hardy)
  • 9cd7ac2 docs: add fetch script to package.json conventions (#​17459) (Nitin Kumar)
  • cab21e6 docs: advice for inline disabling of rules (#​17458) (Ashish Yadav)
  • 056499d docs: fix example of flat config from plugin (#​17482) (Francesco Trotta)
  • 9e9edf9 docs: update documentation URL in error message (#​17465) (Nitin Kumar)
Chores

v8.47.0

Compare Source

Features

  • 53d7508 feat: update regex for methods with thisArg (#​17439) (Francesco Trotta)

Bug Fixes

  • 631648e fix: do not report on shadowed constructors in no-new-wrappers (#​17447) (Francesco Trotta)

Documentation

Chores


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 changed the title chore(deps): update dependency gradle to v8.2.1 chore(deps): update all non-major dependencies Jul 10, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 9d887a2 to 9f9ded0 Compare July 17, 2023 18:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 31f0ac2 to 46828ca Compare July 21, 2023 04:38
@renovate renovate bot changed the title chore(deps): update all non-major dependencies fix(deps): update all non-major dependencies Jul 21, 2023
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 76e1af0 to b182230 Compare July 28, 2023 22:08
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b182230 to b29948b Compare August 1, 2023 05:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from c39d0c1 to f91bd3b Compare October 10, 2023 19:31
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 04dfd2b to 1f49bc7 Compare October 19, 2023 00:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 9 times, most recently from 2b0914e to 2e05b63 Compare October 26, 2023 03:21
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2e05b63 to 706ad4a Compare October 26, 2023 22:47
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 706ad4a to 364eb67 Compare October 28, 2023 00:37
@jbl428 jbl428 closed this Oct 28, 2023
@jbl428 jbl428 deleted the renovate/all-minor-patch branch October 28, 2023 09:14
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