Open renovate[bot] opened 11 months ago
This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.
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:
The artifact failure details are included below:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: @as-integrations/fastify@2.1.1
npm ERR! Found: cspell@7.3.9
npm ERR! node_modules/cspell
npm ERR! dev cspell@"7.3.9" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer cspell@"8.0.0" from @oly_op/cspell-dict@1.1.10
npm ERR! node_modules/@oly_op/cspell-dict
npm ERR! dev @oly_op/cspell-dict@"1.1.10" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-05-07T15_55_16_738Z-debug-0.log
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:
The artifact failure details are included below:
npm ERR! code ERESOLVE
npm ERR! ERESOLVE unable to resolve dependency tree
npm ERR!
npm ERR! While resolving: @as-integrations/fastify@2.1.1
npm ERR! Found: cspell@7.3.9
npm ERR! node_modules/cspell
npm ERR! dev cspell@"7.3.9" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer cspell@"8.12.1" from @oly_op/cspell-dict@1.1.16
npm ERR! node_modules/@oly_op/cspell-dict
npm ERR! dev @oly_op/cspell-dict@"1.1.16" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /tmp/renovate/cache/others/npm/eresolve-report.txt for a full report.
npm ERR! A complete log of this run can be found in:
npm ERR! /tmp/renovate/cache/others/npm/_logs/2024-11-03T06_22_56_833Z-debug-0.log
This PR contains the following updates:
4.9.5
->4.11.2
4.9.5
->4.11.2
1.0.115
->1.1.16
6.1.0
->6.7.23
1.3.2
->1.9.7
1.0.25
->1.2.3
29.5.8
->29.5.14
16.18.62
->16.18.119
6.11.0
->6.21.0
8.54.0
->8.57.1
2.29.0
->2.31.0
6.1.1
->6.6.0
4.24.3
->4.28.1
16.8.1
->16.9.0
20.9.0
->20.18.0
5.1.0
->5.3.0
10.2.4
->10.9.0
3.1.0
->3.3.3
5.0.5
->5.0.10
29.1.1
->29.2.5
10.9.1
->10.9.2
5.2.2
->5.6.3
Release Notes
apollographql/apollo-server (@apollo/server)
### [`v4.11.2`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4112) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.11.1...@apollo/server@4.11.2) (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`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4111) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.11.0...@apollo/server@4.11.1) ##### Patch Changes - [#7952](https://redirect.github.com/apollographql/apollo-server/pull/7952) [`bb81b2c`](https://redirect.github.com/apollographql/apollo-server/commit/bb81b2c6b794dcd98fea9d01e4e38c6450287f53) Thanks [@glasser](https://redirect.github.com/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. ### [`v4.11.0`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4110) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.5...@apollo/server@4.11.0) ##### Minor Changes - [#7916](https://redirect.github.com/apollographql/apollo-server/pull/7916) [`4686454`](https://redirect.github.com/apollographql/apollo-server/commit/46864546e131d0079785575f621d69862e635663) Thanks [@andrewmcgivery](https://redirect.github.com/andrewmcgivery)! - Add `hideSchemaDetailsFromClientErrors` option to ApolloServer to allow hiding 'did you mean' suggestions from validation errors. Even with introspection disabled, it is possible to "fuzzy test" a graph manually or with automated tools to try to determine the shape of your schema. This is accomplished by taking advantage of the default behavior where a misspelt field in an operation will be met with a validation error that includes a helpful "did you mean" as part of the error text. For example, with this option set to `true`, an error would read `Cannot query field "help" on type "Query".` whereas with this option set to `false` it would read `Cannot query field "help" on type "Query". Did you mean "hello"?`. We recommend enabling this option in production to avoid leaking information about your schema to malicious actors. To enable, set this option to `true` in your `ApolloServer` options: ```javascript const server = new ApolloServer({ typeDefs, resolvers, hideSchemaDetailsFromClientErrors: true, }); ``` ### [`v4.10.5`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4105) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.4...@apollo/server@4.10.5) ##### Patch Changes - [#7821](https://redirect.github.com/apollographql/apollo-server/pull/7821) [`b2e15e7`](https://redirect.github.com/apollographql/apollo-server/commit/b2e15e7db6902769d02de2b06ff920ce74701c51) Thanks [@renovate](https://redirect.github.com/apps/renovate)! - Non-major dependency updates - [#7900](https://redirect.github.com/apollographql/apollo-server/pull/7900) [`86d7111`](https://redirect.github.com/apollographql/apollo-server/commit/86d711133f3746d094cfb3b39e21fdfa3723181b) Thanks [@trevor-scheer](https://redirect.github.com/trevor-scheer)! - Inline a small dependency that was causing build issues for ESM projects ### [`v4.10.4`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4104) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.3...@apollo/server@4.10.4) ##### Patch Changes - [#7871](https://redirect.github.com/apollographql/apollo-server/pull/7871) [`18a3827`](https://redirect.github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7) Thanks [@tninesling](https://redirect.github.com/tninesling)! - Subscription heartbeats are initialized prior to awaiting subscribe(). This allows long-running setup to happen in the returned Promise without the subscription being terminated prior to resolution. ### [`v4.10.3`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4103) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.2...@apollo/server@4.10.3) ##### Patch Changes - [#7866](https://redirect.github.com/apollographql/apollo-server/pull/7866) [`5f335a5`](https://redirect.github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf) Thanks [@tninesling](https://redirect.github.com/tninesling)! - Catch errors thrown by subscription generators, and gracefully clean up the subscription instead of crashing. ### [`v4.10.2`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4102) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.1...@apollo/server@4.10.2) ##### Patch Changes - [#7849](https://redirect.github.com/apollographql/apollo-server/pull/7849) [`c7e514c`](https://redirect.github.com/apollographql/apollo-server/commit/c7e514cf67b05521c66d0561448b3c36b2facee6) Thanks [@TylerBloom](https://redirect.github.com/TylerBloom)! - In the subscription callback server plugin, terminating a subscription now immediately closes the internal async generator. This avoids that generator existing after termination and until the next message is received. ### [`v4.10.1`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4101) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.10.0...@apollo/server@4.10.1) ##### Patch Changes - [#7843](https://redirect.github.com/apollographql/apollo-server/pull/7843) [`72f568e`](https://redirect.github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba) Thanks [@bscherlein](https://redirect.github.com/bscherlein)! - Improves timing of the `willResolveField` end hook on fields which return Promises resolving to Arrays. This makes the use of the `setCacheHint` method more reliable. ### [`v4.10.0`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/server/CHANGELOG.md#4100) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server@4.9.5...@apollo/server@4.10.0) ##### Minor Changes - [#7786](https://redirect.github.com/apollographql/apollo-server/pull/7786) [`869ec98`](https://redirect.github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b) Thanks [@ganemone](https://redirect.github.com/ganemone)! - Restore missing v1 `skipValidation` option as `dangerouslyDisableValidation`. Note that enabling this option exposes your server to potential security and unexpected runtime issues. Apollo will not support issues that arise as a result of using this option. - [#7803](https://redirect.github.com/apollographql/apollo-server/pull/7803) [`e9a0d6e`](https://redirect.github.com/apollographql/apollo-server/commit/e9a0d6ed035d1a4f509ce39f0558dc17dfb9ccd0) Thanks [@favna](https://redirect.github.com/favna)! - allow `stringifyResult` to return a `Promiseapollographql/apollo-server (@apollo/server-integration-testsuite)
### [`v4.11.2`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4112) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.11.1...@apollo/server-integration-testsuite@4.11.2) ##### Patch Changes - [#7879](https://redirect.github.com/apollographql/apollo-server/pull/7879) [`b0fb33b`](https://redirect.github.com/apollographql/apollo-server/commit/b0fb33b1e22b18923d2e88fb6b30e23de3b664a1) Thanks [@renovate](https://redirect.github.com/apps/renovate)! - Update graphql-http dependency - [#7968](https://redirect.github.com/apollographql/apollo-server/pull/7968) [`68977e2`](https://redirect.github.com/apollographql/apollo-server/commit/68977e2b7fdf87197cd5c5cd7035c3b74298150a) Thanks [@glasser](https://redirect.github.com/glasser)! - Upgrade supertest and superagent dependencies - Updated dependencies \[]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).11.2 ### [`v4.11.1`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4111) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.11.0...@apollo/server-integration-testsuite@4.11.1) ##### Patch Changes - [#7952](https://redirect.github.com/apollographql/apollo-server/pull/7952) [`bb81b2c`](https://redirect.github.com/apollographql/apollo-server/commit/bb81b2c6b794dcd98fea9d01e4e38c6450287f53) Thanks [@glasser](https://redirect.github.com/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. - Updated dependencies \[[`bb81b2c`](https://redirect.github.com/apollographql/apollo-server/commit/bb81b2c6b794dcd98fea9d01e4e38c6450287f53)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).11.1 ### [`v4.11.0`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4110) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.5...@apollo/server-integration-testsuite@4.11.0) ##### Patch Changes - Updated dependencies \[[`4686454`](https://redirect.github.com/apollographql/apollo-server/commit/46864546e131d0079785575f621d69862e635663)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).11.0 ### [`v4.10.5`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4105) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.4...@apollo/server-integration-testsuite@4.10.5) ##### Patch Changes - [#7821](https://redirect.github.com/apollographql/apollo-server/pull/7821) [`b2e15e7`](https://redirect.github.com/apollographql/apollo-server/commit/b2e15e7db6902769d02de2b06ff920ce74701c51) Thanks [@renovate](https://redirect.github.com/apps/renovate)! - Non-major dependency updates - [#7900](https://redirect.github.com/apollographql/apollo-server/pull/7900) [`86d7111`](https://redirect.github.com/apollographql/apollo-server/commit/86d711133f3746d094cfb3b39e21fdfa3723181b) Thanks [@trevor-scheer](https://redirect.github.com/trevor-scheer)! - Inline a small dependency that was causing build issues for ESM projects - Updated dependencies \[[`b2e15e7`](https://redirect.github.com/apollographql/apollo-server/commit/b2e15e7db6902769d02de2b06ff920ce74701c51), [`86d7111`](https://redirect.github.com/apollographql/apollo-server/commit/86d711133f3746d094cfb3b39e21fdfa3723181b)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.5 ### [`v4.10.4`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4104) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.3...@apollo/server-integration-testsuite@4.10.4) ##### Patch Changes - Updated dependencies \[[`18a3827`](https://redirect.github.com/apollographql/apollo-server/commit/18a3827d63c3916f6aaccbc4bdef3e0d550d91a7)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.4 ### [`v4.10.3`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4103) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.2...@apollo/server-integration-testsuite@4.10.3) ##### Patch Changes - Updated dependencies \[[`5f335a5`](https://redirect.github.com/apollographql/apollo-server/commit/5f335a527b6549219366fa44f4bea829e7359aaf)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.3 ### [`v4.10.2`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4102) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.1...@apollo/server-integration-testsuite@4.10.2) ##### Patch Changes - Updated dependencies \[[`c7e514c`](https://redirect.github.com/apollographql/apollo-server/commit/c7e514cf67b05521c66d0561448b3c36b2facee6)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.2 ### [`v4.10.1`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4101) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.10.0...@apollo/server-integration-testsuite@4.10.1) ##### Patch Changes - Updated dependencies \[[`72f568e`](https://redirect.github.com/apollographql/apollo-server/commit/72f568edd512a865e37e4777bf16a319433ca5ba)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.1 ### [`v4.10.0`](https://redirect.github.com/apollographql/apollo-server/blob/HEAD/packages/integration-testsuite/CHANGELOG.md#4100) [Compare Source](https://redirect.github.com/apollographql/apollo-server/compare/@apollo/server-integration-testsuite@4.9.5...@apollo/server-integration-testsuite@4.10.0) ##### Minor Changes - [#7786](https://redirect.github.com/apollographql/apollo-server/pull/7786) [`869ec98`](https://redirect.github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b) Thanks [@ganemone](https://redirect.github.com/ganemone)! - Restore missing v1 `skipValidation` option as `dangerouslyDisableValidation`. Note that enabling this option exposes your server to potential security and unexpected runtime issues. Apollo will not support issues that arise as a result of using this option. ##### Patch Changes - [#7740](https://redirect.github.com/apollographql/apollo-server/pull/7740) [`fe68c1b`](https://redirect.github.com/apollographql/apollo-server/commit/fe68c1b05323931d766a5e081061b70e305ac67e) Thanks [@barnisanov](https://redirect.github.com/barnisanov)! - Uninstalled `body-parser` and used `express` built-in `body-parser` functionality instead(mainly the json middleware) - Updated dependencies \[[`869ec98`](https://redirect.github.com/apollographql/apollo-server/commit/869ec980458df3b22dcc2ed128cedc9d3a85c54b), [`9bd7748`](https://redirect.github.com/apollographql/apollo-server/commit/9bd7748565735e3e01cdce38674dbc7dcc44507b), [`63dc50f`](https://redirect.github.com/apollographql/apollo-server/commit/63dc50fc65cd7b4a9df0e1de4ab6d6ee82dbeb5c), [`fe68c1b`](https://redirect.github.com/apollographql/apollo-server/commit/fe68c1b05323931d766a5e081061b70e305ac67e), [`e9a0d6e`](https://redirect.github.com/apollographql/apollo-server/commit/e9a0d6ed035d1a4f509ce39f0558dc17dfb9ccd0)]: - [@apollo/server](https://redirect.github.com/apollo/server)[@4](https://redirect.github.com/4).10.0olyop/cspell-dict (@oly_op/cspell-dict)
### [`v1.1.16`](https://redirect.github.com/olyop/cspell-dict/compare/a713f5d37a7f1e7b47c7d0cbf2a30a45d9fe9145...d6df75a58c447deacc2d7cc5a31fa25a9988aead) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/a713f5d37a7f1e7b47c7d0cbf2a30a45d9fe9145...d6df75a58c447deacc2d7cc5a31fa25a9988aead) ### [`v1.1.14`](https://redirect.github.com/olyop/cspell-dict/compare/dd42edf063935759fa2275b29714e4507efaec49...a713f5d37a7f1e7b47c7d0cbf2a30a45d9fe9145) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/dd42edf063935759fa2275b29714e4507efaec49...a713f5d37a7f1e7b47c7d0cbf2a30a45d9fe9145) ### [`v1.1.13`](https://redirect.github.com/olyop/cspell-dict/compare/7230e1088f6beaa34c56f0666e7762502fa76231...dd42edf063935759fa2275b29714e4507efaec49) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/7230e1088f6beaa34c56f0666e7762502fa76231...dd42edf063935759fa2275b29714e4507efaec49) ### [`v1.1.12`](https://redirect.github.com/olyop/cspell-dict/compare/a09e9eb3ebc7310e29839be07a26ff88e9e34266...7230e1088f6beaa34c56f0666e7762502fa76231) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/a09e9eb3ebc7310e29839be07a26ff88e9e34266...7230e1088f6beaa34c56f0666e7762502fa76231) ### [`v1.1.11`](https://redirect.github.com/olyop/cspell-dict/compare/32914d141115a080e6ae9ca0ae98f7cad5dc9646...a09e9eb3ebc7310e29839be07a26ff88e9e34266) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/32914d141115a080e6ae9ca0ae98f7cad5dc9646...a09e9eb3ebc7310e29839be07a26ff88e9e34266) ### [`v1.1.10`](https://redirect.github.com/olyop/cspell-dict/compare/f526ae41de7b309fa8901c6112eb046895428d2e...32914d141115a080e6ae9ca0ae98f7cad5dc9646) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/f526ae41de7b309fa8901c6112eb046895428d2e...32914d141115a080e6ae9ca0ae98f7cad5dc9646) ### [`v1.1.9`](https://redirect.github.com/olyop/cspell-dict/compare/cea2abed85e4c68940d638bbf420a09c03f0ccee...f526ae41de7b309fa8901c6112eb046895428d2e) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/cea2abed85e4c68940d638bbf420a09c03f0ccee...f526ae41de7b309fa8901c6112eb046895428d2e) ### [`v1.1.8`](https://redirect.github.com/olyop/cspell-dict/compare/e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5...cea2abed85e4c68940d638bbf420a09c03f0ccee) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5...cea2abed85e4c68940d638bbf420a09c03f0ccee) ### [`v1.1.7`](https://redirect.github.com/olyop/cspell-dict/compare/e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5...e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5...e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5) ### [`v1.1.6`](https://redirect.github.com/olyop/cspell-dict/compare/549b38d91581bd7b545134924bb17f1368205b67...e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/549b38d91581bd7b545134924bb17f1368205b67...e1d62e3c2a9035e5dd5a40111a2ef8a234ed31d5) ### [`v1.1.5`](https://redirect.github.com/olyop/cspell-dict/compare/0175196226d586e57a4fb2550e6524109fd257dd...549b38d91581bd7b545134924bb17f1368205b67) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/0175196226d586e57a4fb2550e6524109fd257dd...549b38d91581bd7b545134924bb17f1368205b67) ### [`v1.1.4`](https://redirect.github.com/olyop/cspell-dict/compare/79136a84baca47b6bc20108058cb1ec044343810...0175196226d586e57a4fb2550e6524109fd257dd) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/79136a84baca47b6bc20108058cb1ec044343810...0175196226d586e57a4fb2550e6524109fd257dd) ### [`v1.1.2`](https://redirect.github.com/olyop/cspell-dict/compare/6fb2fa54e37b0ef5f9593859c220ac65796f5ebb...79136a84baca47b6bc20108058cb1ec044343810) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/6fb2fa54e37b0ef5f9593859c220ac65796f5ebb...79136a84baca47b6bc20108058cb1ec044343810) ### [`v1.1.1`](https://redirect.github.com/olyop/cspell-dict/compare/c53e536a8fb090678b05ea2c5a55076f5e9fdaf8...6fb2fa54e37b0ef5f9593859c220ac65796f5ebb) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/c53e536a8fb090678b05ea2c5a55076f5e9fdaf8...6fb2fa54e37b0ef5f9593859c220ac65796f5ebb) ### [`v1.0.116`](https://redirect.github.com/olyop/cspell-dict/compare/201dc65c4c397b47e8c238fb30374c29f0f6f819...c53e536a8fb090678b05ea2c5a55076f5e9fdaf8) [Compare Source](https://redirect.github.com/olyop/cspell-dict/compare/201dc65c4c397b47e8c238fb30374c29f0f6f819...c53e536a8fb090678b05ea2c5a55076f5e9fdaf8)olyop/eslint-config (@oly_op/eslint-config)
### [`v6.7.23`](https://redirect.github.com/olyop/eslint-config/compare/48bffd559d9601bbe82e13aa9442dde8b6cc4425...d5a1938eb8c3d6e222e2690bb705708e9617d6c0) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/48bffd559d9601bbe82e13aa9442dde8b6cc4425...d5a1938eb8c3d6e222e2690bb705708e9617d6c0) ### [`v6.7.22`](https://redirect.github.com/olyop/eslint-config/compare/7f6b160af57e1f3914cfbe821e5cddf418c5799d...48bffd559d9601bbe82e13aa9442dde8b6cc4425) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/7f6b160af57e1f3914cfbe821e5cddf418c5799d...48bffd559d9601bbe82e13aa9442dde8b6cc4425) ### [`v6.7.21`](https://redirect.github.com/olyop/eslint-config/compare/05e59b6a4bd1c6d1b0cf1715f7d204764a4310b4...7f6b160af57e1f3914cfbe821e5cddf418c5799d) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/05e59b6a4bd1c6d1b0cf1715f7d204764a4310b4...7f6b160af57e1f3914cfbe821e5cddf418c5799d) ### [`v6.7.20`](https://redirect.github.com/olyop/eslint-config/compare/7fa34f9836122ad25a71cbfde49513d6be4418b9...05e59b6a4bd1c6d1b0cf1715f7d204764a4310b4) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/7fa34f9836122ad25a71cbfde49513d6be4418b9...05e59b6a4bd1c6d1b0cf1715f7d204764a4310b4) ### [`v6.7.19`](https://redirect.github.com/olyop/eslint-config/compare/ad2fbb208aeb41f4284495072f67b5b6db452451...7fa34f9836122ad25a71cbfde49513d6be4418b9) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ad2fbb208aeb41f4284495072f67b5b6db452451...7fa34f9836122ad25a71cbfde49513d6be4418b9) ### [`v6.7.18`](https://redirect.github.com/olyop/eslint-config/compare/cdbb5d3198fef96f03c78992c595ed9ec7d1b86d...ad2fbb208aeb41f4284495072f67b5b6db452451) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/cdbb5d3198fef96f03c78992c595ed9ec7d1b86d...ad2fbb208aeb41f4284495072f67b5b6db452451) ### [`v6.7.17`](https://redirect.github.com/olyop/eslint-config/compare/ed3fc32a7e54a2ecd8a515d537a44daa9e7b27c6...cdbb5d3198fef96f03c78992c595ed9ec7d1b86d) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed3fc32a7e54a2ecd8a515d537a44daa9e7b27c6...cdbb5d3198fef96f03c78992c595ed9ec7d1b86d) ### [`v6.7.16`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed3fc32a7e54a2ecd8a515d537a44daa9e7b27c6) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed3fc32a7e54a2ecd8a515d537a44daa9e7b27c6) ### [`v6.7.15`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.14`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.13`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.12`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.11`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.10`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.9`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.8`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.7`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.6`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.5`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.4`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.3`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.2`](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/ed320f041c736e9ee62dc4325e06e809b54c536e...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.1`](https://redirect.github.com/olyop/eslint-config/compare/03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33...ed320f041c736e9ee62dc4325e06e809b54c536e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33...ed320f041c736e9ee62dc4325e06e809b54c536e) ### [`v6.7.0`](https://redirect.github.com/olyop/eslint-config/compare/03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33...03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33...03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33) ### [`v6.6.1`](https://redirect.github.com/olyop/eslint-config/compare/8158aa053e848e11515785b3c864e11589a96a3e...03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/8158aa053e848e11515785b3c864e11589a96a3e...03f7dbfd0ff3a3b3c5a678a3cf81ce0f21e1ad33) ### [`v6.6.0`](https://redirect.github.com/olyop/eslint-config/compare/e779765dee66cf079b850432fd7effb2ff3e5376...8158aa053e848e11515785b3c864e11589a96a3e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/e779765dee66cf079b850432fd7effb2ff3e5376...8158aa053e848e11515785b3c864e11589a96a3e) ### [`v6.5.7`](https://redirect.github.com/olyop/eslint-config/compare/e779765dee66cf079b850432fd7effb2ff3e5376...e779765dee66cf079b850432fd7effb2ff3e5376) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/e779765dee66cf079b850432fd7effb2ff3e5376...e779765dee66cf079b850432fd7effb2ff3e5376) ### [`v6.5.6`](https://redirect.github.com/olyop/eslint-config/compare/e4c4358ef20161491e24e4036da043ca463aa641...e779765dee66cf079b850432fd7effb2ff3e5376) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/e4c4358ef20161491e24e4036da043ca463aa641...e779765dee66cf079b850432fd7effb2ff3e5376) ### [`v6.5.5`](https://redirect.github.com/olyop/eslint-config/compare/5a2597491c564cf939b0e093c0982055fc36123d...e4c4358ef20161491e24e4036da043ca463aa641) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/5a2597491c564cf939b0e093c0982055fc36123d...e4c4358ef20161491e24e4036da043ca463aa641) ### [`v6.5.4`](https://redirect.github.com/olyop/eslint-config/compare/aa32c30d7ed75753f8f977eab065a82ac688b391...5a2597491c564cf939b0e093c0982055fc36123d) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/aa32c30d7ed75753f8f977eab065a82ac688b391...5a2597491c564cf939b0e093c0982055fc36123d) ### [`v6.5.3`](https://redirect.github.com/olyop/eslint-config/compare/50210da2ed87dc701a7f425a909ee6177bea05dd...aa32c30d7ed75753f8f977eab065a82ac688b391) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/50210da2ed87dc701a7f425a909ee6177bea05dd...aa32c30d7ed75753f8f977eab065a82ac688b391) ### [`v6.5.2`](https://redirect.github.com/olyop/eslint-config/compare/a3f640e5447c086ae8a1a915b212ff9b2a1cff7e...50210da2ed87dc701a7f425a909ee6177bea05dd) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/a3f640e5447c086ae8a1a915b212ff9b2a1cff7e...50210da2ed87dc701a7f425a909ee6177bea05dd) ### [`v6.5.1`](https://redirect.github.com/olyop/eslint-config/compare/251e6e06a4ed9cdd52fc8be7f67cb21225a3aad3...a3f640e5447c086ae8a1a915b212ff9b2a1cff7e) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/251e6e06a4ed9cdd52fc8be7f67cb21225a3aad3...a3f640e5447c086ae8a1a915b212ff9b2a1cff7e) ### [`v6.5.0`](https://redirect.github.com/olyop/eslint-config/compare/6caa9f2f318bd5179d5ebdc3fe3b8ec91aa30ab9...251e6e06a4ed9cdd52fc8be7f67cb21225a3aad3) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/6caa9f2f318bd5179d5ebdc3fe3b8ec91aa30ab9...251e6e06a4ed9cdd52fc8be7f67cb21225a3aad3) ### [`v6.4.2`](https://redirect.github.com/olyop/eslint-config/compare/6d7170f87ba14cda47a80517219b1fdf3b423933...6caa9f2f318bd5179d5ebdc3fe3b8ec91aa30ab9) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/6d7170f87ba14cda47a80517219b1fdf3b423933...6caa9f2f318bd5179d5ebdc3fe3b8ec91aa30ab9) ### [`v6.4.1`](https://redirect.github.com/olyop/eslint-config/compare/97d610b5c6e9a9e7ddb41c7ee5f817d241d8ebdd...6d7170f87ba14cda47a80517219b1fdf3b423933) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/97d610b5c6e9a9e7ddb41c7ee5f817d241d8ebdd...6d7170f87ba14cda47a80517219b1fdf3b423933) ### [`v6.4.0`](https://redirect.github.com/olyop/eslint-config/compare/57d3ad705740d4c2ca312bd4fb1206236f6ea055...97d610b5c6e9a9e7ddb41c7ee5f817d241d8ebdd) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/57d3ad705740d4c2ca312bd4fb1206236f6ea055...97d610b5c6e9a9e7ddb41c7ee5f817d241d8ebdd) ### [`v6.3.0`](https://redirect.github.com/olyop/eslint-config/compare/1dfc76398d064e304b44654f3a0584ceee98f636...57d3ad705740d4c2ca312bd4fb1206236f6ea055) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/1dfc76398d064e304b44654f3a0584ceee98f636...57d3ad705740d4c2ca312bd4fb1206236f6ea055) ### [`v6.2.1`](https://redirect.github.com/olyop/eslint-config/compare/b5dcf5750f82f9f76b22fd0dd4bfdc7ba0ceffba...1dfc76398d064e304b44654f3a0584ceee98f636) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/b5dcf5750f82f9f76b22fd0dd4bfdc7ba0ceffba...1dfc76398d064e304b44654f3a0584ceee98f636) ### [`v6.2.0`](https://redirect.github.com/olyop/eslint-config/compare/1df3a01df686c88aadd489fbe5fea2746336954a...b5dcf5750f82f9f76b22fd0dd4bfdc7ba0ceffba) [Compare Source](https://redirect.github.com/olyop/eslint-config/compare/1df3a01df686c88aadd489fbe5fea2746336954a...b5dcf5750f82f9f76b22fd0dd4bfdc7ba0ceffba)olyop/prettier-config (@oly_op/prettier-config)
### [`v1.9.7`](https://redirect.github.com/olyop/prettier-config/compare/1.9.6...6c1095b32fd5a0993cb9b67cd10de1ce17f01032) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/1.9.6...6c1095b32fd5a0993cb9b67cd10de1ce17f01032) ### [`v1.9.6`](https://redirect.github.com/olyop/prettier-config/compare/0553d095be2ce6893a9693731cb28029f70e0697...1.9.6) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/0553d095be2ce6893a9693731cb28029f70e0697...1.9.6) ### [`v1.9.5`](https://redirect.github.com/olyop/prettier-config/compare/13934a4067f8e710dfd057c980f3e2223dd3556a...0553d095be2ce6893a9693731cb28029f70e0697) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/13934a4067f8e710dfd057c980f3e2223dd3556a...0553d095be2ce6893a9693731cb28029f70e0697) ### [`v1.9.4`](https://redirect.github.com/olyop/prettier-config/compare/05da211ca894ade6e2a8aa2e7a3778ecd94e38db...13934a4067f8e710dfd057c980f3e2223dd3556a) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/05da211ca894ade6e2a8aa2e7a3778ecd94e38db...13934a4067f8e710dfd057c980f3e2223dd3556a) ### [`v1.9.3`](https://redirect.github.com/olyop/prettier-config/compare/651c6ccd50ef490aa61bb2b345c44c6aeb395761...05da211ca894ade6e2a8aa2e7a3778ecd94e38db) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/651c6ccd50ef490aa61bb2b345c44c6aeb395761...05da211ca894ade6e2a8aa2e7a3778ecd94e38db) ### [`v1.9.2`](https://redirect.github.com/olyop/prettier-config/compare/45ff6427d141db71b2d4d18b6930c67cc7ba2d38...651c6ccd50ef490aa61bb2b345c44c6aeb395761) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/45ff6427d141db71b2d4d18b6930c67cc7ba2d38...651c6ccd50ef490aa61bb2b345c44c6aeb395761) ### [`v1.9.1`](https://redirect.github.com/olyop/prettier-config/compare/1a5b42d892ae0926e9d2d6f84403d8f8e94d7748...45ff6427d141db71b2d4d18b6930c67cc7ba2d38) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/1a5b42d892ae0926e9d2d6f84403d8f8e94d7748...45ff6427d141db71b2d4d18b6930c67cc7ba2d38) ### [`v1.9.0`](https://redirect.github.com/olyop/prettier-config/compare/6f46343cbccd63ae77af0e4663bde8807e9ca461...1a5b42d892ae0926e9d2d6f84403d8f8e94d7748) [Compare Source](https://redirect.github.com/olyop/prettier-config/compare/6f46343cbccd63ae77af0e4663bde8807e9ca461...1a5b42d892ae0926e9d2d6f84403d8f8e94d7748) ### [`v1.8.6`](https://redirect.github.com/olyop/prettier-config/compare/4d357bed896ca5dff399dc56acda1592dc3d56ab...6f46343cbccd63ae77af0e4663bde8807e9caConfiguration
📅 Schedule: Branch creation - "every weekend" (UTC), 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.
This PR was generated by Mend Renovate. View the repository job log.