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

chore(deps): update dependency ioredis-mock to v8 #1682

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Feb 10, 2023

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
ioredis-mock 5.9.1 -> 8.9.0 age adoption passing confidence

Release Notes

stipsan/ioredis-mock (ioredis-mock)

v8.9.0

Compare Source

Features
Bug Fixes

v8.8.3

Compare Source

Bug Fixes

v8.8.2

Compare Source

Bug Fixes

v8.8.1

Compare Source

Bug Fixes

v8.8.0

Compare Source

Features
Bug Fixes

v8.7.0

Compare Source

Features
Bug Fixes

v8.6.0

Compare Source

Features
Bug Fixes
  • sorted lists should throw WRONGTYPE instead of returning empty arrays (b46b9b8)

v8.5.0

Compare Source

Features

v8.4.0

Compare Source

Features
Bug Fixes

v8.3.0

Compare Source

Features
Bug Fixes

v8.2.7

Compare Source

Bug Fixes

v8.2.6

Compare Source

Bug Fixes
  • duplicate: preserve options as well as accept overrides (#​1234) (284f711)

v8.2.5

Compare Source

Bug Fixes

v8.2.4

Compare Source

Bug Fixes

v8.2.3

Compare Source

Bug Fixes

v8.2.2

Compare Source

Bug Fixes
  • README: reference Renovatebot instead of Greenkeeper (de6a205)

v8.2.1

Compare Source

Bug Fixes

v8.2.0

Compare Source

Features

v8.1.1

Compare Source

Bug Fixes

v8.1.0

Compare Source

Bug Fixes
  • lrem: refactor indexFun to a compiler friendlier variant (9b3b6f7), closes #​1103
  • sort json data by default (85c641a)
Features

v8.0.0

Compare Source

Features
BREAKING CHANGES
  • this drops support for ioredis v4 and Redis.Promise overrides

v7.5.1

Compare Source

Bug Fixes
  • backport map batch length to length in pipeline.js (#​1319) (6e9bf07)
  • Backport rpoplpush should rotate the list when source and destintation are the same (#​1322) (72c62c5)

v7.5.0

Compare Source

Features

v7.4.0

Compare Source

Features

v7.3.0

Compare Source

Features

v7.2.0

Compare Source

Features

v7.1.0

Compare Source

Features

v7.0.1

Compare Source

Bug Fixes

v7.0.0

Compare Source

Bug Fixes
  • drop support for node v10 (afc20a9)
  • remove createConnectedClient (d747b84)
Code Refactoring
BREAKING CHANGES
  • use redis.duplicate() or another new Redis instead of redis.createConnectedClient()
  • Upgrade to node v12 or later
  • update require('ioredis-mock/jest') calls to require('ioredis-mock')

v6.13.0

Compare Source

Features

v6.12.0

Compare Source

Features

v6.11.0

Compare Source

Features

v6.10.0

Compare Source

Features

v6.9.0

Compare Source

Features

v6.8.0

Compare Source

Features

v6.7.0

Compare Source

Features

v6.6.0

Compare Source

Features

v6.5.0

Compare Source

Features

v6.4.0

Compare Source

Bug Fixes
  • hstrlen throws error if wrong number of arguments (a028d32)
  • rpush error message synced with redis (c58eda0)
Features

v6.3.0

Compare Source

Features
Added
  • appendBuffer
  • bgrewriteaofBuffer
  • bgsaveBuffer
  • brpoplpushBuffer
  • dbsizeBuffer
  • decrBuffer
  • decrbyBuffer
  • delBuffer
  • discardBuffer
  • echoBuffer
  • existsBuffer
  • expireBuffer
  • expireatBuffer
  • flushallBuffer
  • flushdbBuffer
  • getbitBuffer
  • getrangeBuffer
  • hdelBuffer
  • hexistsBuffer
  • hmsetBuffer
  • hsetBuffer
  • incrBuffer
  • incrbyBuffer
  • incrbyfloatBuffer
  • infoBuffer
  • keysBuffer
  • lastsaveBuffer
  • msetBuffer
  • pingBuffer
  • quitBuffer
  • replconf
  • replconfBuffer
  • saddBuffer
  • saveBuffer
  • setBuffer
Improved
  • get is updated to convert buffers to string, like native redis + ioredis,

v6.2.0

Compare Source

Features
Constructor shorthands now supported:
  • new Redis(6379, 'localhost', { keyPrefix: 'shared:' })
  • new Redis('//localhost:6379', { keyPrefix: 'shared:' })
  • new Redis('redis://localhost:6379', { keyPrefix: 'private:' })
  • new Redis(6379, { keyPrefix: 'shared:' })
  • new Redis(6379)
  • new Redis('redis://localhost:6379/')

v6.1.2

Compare Source

Bug Fixes
  • improve bgrewriteaof, bgsave, decrby, rpoplpush & time (#​1126) (4907dab)
bgrewriteaof
  • returns 'Background append only file rewriting started' instead of 'OK'
bgsave
  • returns 'Background saving started' instead of 'OK'
decrby
  • throws "ERR wrong number of arguments for 'decrby' command" if the decrement argument is missing
rpoplpush
  • throws 'WRONGTYPE Operation against a key holding the wrong kind of value' if the source argument is invalid
  • returns null if the destination is invalid
time
  • returns strings instead of numbers

v6.1.1

Compare Source

Bug Fixes

v6.1.0

Compare Source

Features

Browser usage (Experimental)

There's a browser build available. You can import it directly (import Redis from 'ioredis-mock/browser.js'), or use it on unpkg.com:

import Redis from 'https://unpkg.com/ioredis-mock';

const redis = new Redis();
redis.set('foo', 'bar');
console.log(await redis.get('foo'));
ioredis-mock/jest.js is deprecated

ioredis-mock is no longer doing a import { Command } from 'ioredis' internally, it's now doing a direct import import Command from 'ioredis/built/command' and thus the jest.js workaround is no longer needed:

-jest.mock('ioredis', () => require('ioredis-mock/jest'))
+jest.mock('ioredis', () => require('ioredis-mock'))

v6.0.0

Compare Source

BREAKING CHANGE

Before v6, each instance of ioredis-mock lived in isolation:

const Redis = require('ioredis-mock');
const redis1 = new Redis();
const redis2 = new Redis();
await redis1.set('foo', 'bar');
console.log(await redis1.get('foo'), await redis2.get('foo')); // 'bar', null

In v6 the internals were rewritten to behave more like real life redis, if the host and port is the same, the context is now shared:

const Redis = require('ioredis-mock');
const redis1 = new Redis();
const redis2 = new Redis();
const redis3 = new Redis({ port: 6380 }); // 6379 is the default port
await redis1.set('foo', 'bar');
console.log(
  await redis1.get('foo'), // 'bar'
  await redis2.get('foo'), // 'bar'
  await redis3.get('foo') // null
);

And since ioredis-mock now persist data between instances, you'll likely need to run flushall between testing suites:

const Redis = require('ioredis-mock');
afterEach((done) => {
  new Redis().flushall().then(() => done());
});
createConnectedClient is deprecated

Replace it with .duplicate() or use another new Redis instance.


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.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@changeset-bot
Copy link

changeset-bot bot commented Feb 10, 2023

⚠️ No Changeset found

Latest commit: 9d52473

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 3e9da70 to f34e8f9 Compare February 10, 2023 08:42
@github-actions
Copy link
Contributor

github-actions bot commented Feb 10, 2023

💻 Website Preview

The latest changes are available as preview in: https://9100df2b.envelop.pages.dev

@theguild-bot
Copy link
Collaborator

theguild-bot commented Feb 10, 2023

✅ Benchmark Results

     ✓ no_errors
     ✓ expected_result

     checks.............................................: 100.00% ✓ 842634      ✗ 0     
     data_received......................................: 3.2 GB  27 MB/s
     data_sent..........................................: 183 MB  1.5 MB/s
     envelop_total......................................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:envelop-cache-jit }.......................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:envelop-just-cache }......................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:graphql-js }..............................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     event_loop_lag.....................................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:envelop-cache-and-no-internal-tracing }...: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:envelop-cache-jit }.......................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:envelop-just-cache }......................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     ✓ { mode:graphql-js }..............................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     http_req_blocked...................................: avg=2.04µs  min=722ns    med=1.66µs  max=8.85ms  p(90)=2.28µs  p(95)=2.58µs 
     http_req_connecting................................: avg=147ns   min=0s       med=0s      max=7.26ms  p(90)=0s      p(95)=0s     
     http_req_duration..................................: avg=2.55ms  min=150.62µs med=2.19ms  max=46.39ms p(90)=4.62ms  p(95)=5.17ms 
       { expected_response:true }.......................: avg=2.55ms  min=150.62µs med=2.19ms  max=46.39ms p(90)=4.62ms  p(95)=5.17ms 
     ✓ { mode:envelop-cache-and-no-internal-tracing }...: avg=2.66ms  min=365.85µs med=2.32ms  max=22.06ms p(90)=4.58ms  p(95)=4.99ms 
     ✓ { mode:envelop-cache-jit }.......................: avg=1.5ms   min=150.62µs med=1.18ms  max=16.51ms p(90)=2.44ms  p(95)=2.62ms 
     ✓ { mode:envelop-just-cache }......................: avg=2.74ms  min=383.27µs med=2.36ms  max=46.39ms p(90)=4.67ms  p(95)=5.14ms 
     ✓ { mode:graphql-js }..............................: avg=5.13ms  min=589.75µs med=4.31ms  max=36.14ms p(90)=8.64ms  p(95)=9.39ms 
     http_req_failed....................................: 0.00%   ✓ 0           ✗ 421317
     http_req_receiving.................................: avg=35.13µs min=11.56µs  med=27.85µs max=15.47ms p(90)=42.64µs p(95)=47.27µs
     http_req_sending...................................: avg=12.28µs min=4.44µs   med=9.69µs  max=16.29ms p(90)=14.09µs p(95)=17.91µs
     http_req_tls_handshaking...........................: avg=0s      min=0s       med=0s      max=0s      p(90)=0s      p(95)=0s     
     http_req_waiting...................................: avg=2.5ms   min=122.44µs med=2.14ms  max=46.14ms p(90)=4.56ms  p(95)=5.1ms  
     http_reqs..........................................: 421317  3510.618268/s
     iteration_duration.................................: avg=2.84ms  min=362.61µs med=2.45ms  max=46.87ms p(90)=4.93ms  p(95)=5.55ms 
     iterations.........................................: 421317  3510.618268/s
     vus................................................: 10      min=10        max=10  
     vus_max............................................: 20      min=20        max=20  

@github-actions
Copy link
Contributor

github-actions bot commented Feb 10, 2023

🚀 Snapshot Release (alpha)

The latest changes of this PR are available as alpha on npm (based on the declared changesets):

Package Version Info
@envelop/graphql-jit 8.0.3-alpha-20240324073040-9d52473f npm ↗︎ unpkg ↗︎
@envelop/sentry 9.0.0-alpha-20240324073040-9d52473f npm ↗︎ unpkg ↗︎

@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch 6 times, most recently from 0a055c3 to 9cf82b5 Compare February 17, 2023 13:48
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 9cf82b5 to a1dc33f Compare February 20, 2023 14:15
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from a1dc33f to 43fc390 Compare March 22, 2023 22:47
@github-actions
Copy link
Contributor

diff --git a/website/algolia-lockfile.json b/website/algolia-lockfile.json
index 890033e1..24aea63a 100644
--- a/website/algolia-lockfile.json
+++ b/website/algolia-lockfile.json
@@ -4,8 +4,8 @@
     "headings": [],
     "toc": [],
     "content": "d41d8cd98f00b204e9800998ecf8427e",
-    "url": "https://www.the-guild.dev/graphql/envelop//",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "url": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": [],
     "source": "Envelop",
     "title": "Home",
@@ -16,8 +16,8 @@
     "headings": [],
     "toc": [],
     "content": "d41d8cd98f00b204e9800998ecf8427e",
-    "url": "https://www.the-guild.dev/graphql/envelop//plugins",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "url": "https://www.the-guild.dev/graphql/envelop/plugins",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": [],
     "source": "Envelop",
     "title": "Plugins",
@@ -60,9 +60,9 @@
         "anchor": "key-concepts"
       }
     ],
-    "content": "1c5f0179c1f4defa9ad4a0d6412c8901",
+    "content": "33e69b3c230322e76f7020f74293911c",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "Introduction",
@@ -78,9 +78,9 @@
         "anchor": "sharing--composing-envelop-instances"
       }
     ],
-    "content": "9a51bb770d645582b7752e9b85b4a801",
+    "content": "af0ceef0aa394f4f2cc42817395fb652",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/composing-envelop",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "Sharing Envelops",
@@ -133,9 +133,9 @@
         "anchor": "built-in-plugins"
       }
     ],
-    "content": "a0ff5527449f1bafa7655a68a2444aad",
+    "content": "f2e013a8e6981384ded063f05e9bc016",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/core",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "@envelop/core",
@@ -177,9 +177,9 @@
         "anchor": "use-your-envelop-with-an-http-server"
       }
     ],
-    "content": "134cbc98495bb19879abd8b3dfb716f2",
+    "content": "2e4eb1757ee8197ba6154e3263d6e021",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/getting-started",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "First Steps",
@@ -221,9 +221,9 @@
         "anchor": "envelop-response-cache"
       }
     ],
-    "content": "cbb8a7be7c8499a5fe6e8068f2b53712",
+    "content": "15891dc44195616e4d4edec7a37087bd",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/adding-a-graphql-response-cache",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Adding a GraphQL Response Cache",
@@ -283,9 +283,9 @@
         "anchor": "next-steps"
       }
     ],
-    "content": "8bbfb8e69f55fd0ee0e48e4a5f172400",
+    "content": "94e4341448b992d8b4aa28aa9d8a2e14",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/adding-authentication-with-auth0",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Adding Authentication with Auth0",
@@ -321,9 +321,9 @@
         "anchor": "transactions-over-multiple-databases"
       }
     ],
-    "content": "cf80c05af2892cfd1f0eaaf171cf5a7c",
+    "content": "31dd6d04bd1823147989dac78428e8e0",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/integrating-with-databases",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Integrating with Databases",
@@ -407,9 +407,9 @@
         "anchor": "9-drop-support-for-nodejs-v12"
       }
     ],
-    "content": "4595b70a4afc4aa14fe23deca5dc0e16",
+    "content": "6dd68935ecd3a438c514f5767812b668",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/migrating-from-v2-to-v3",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Migrating from v2 to v3",
@@ -457,9 +457,9 @@
         "anchor": "apollo-tracing"
       }
     ],
-    "content": "e40ce27d13eb2052bcdf5f0ec196a12c",
+    "content": "7a71fc847dce9870e5e5ed2299a264aa",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/monitoring-and-tracing",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Monitoring and Tracing",
@@ -469,9 +469,9 @@
     "objectID": "envelop-v3-latest-guides-resolving-subscription-data-loader-caching-issues",
     "headings": [],
     "toc": [],
-    "content": "99208ef40613d9704ae5334b4b47345f",
+    "content": "82d2ffb4cf7b9e0dca72444cfba892c2",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/resolving-subscription-data-loader-caching-issues",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Resolving Subscription DataLoader Caching Issues",
@@ -570,9 +570,9 @@
         "anchor": "prevent-leaking-sensitive-information"
       }
     ],
-    "content": "46e0f4c15a19b21cadc44ef2d49ff77b",
+    "content": "19e44cb36735b306f592cb485fbe017c",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/securing-your-graphql-api",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Securing Your GraphQL API",
@@ -593,9 +593,9 @@
         "anchor": "fragment-arguments"
       }
     ],
-    "content": "7ab322d195078fb38634ad883f328597",
+    "content": "7de2071219797666760f52e92bb9e78a",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/guides/using-graphql-features-from-the-future",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Guides"],
     "source": "Envelop",
     "title": "Using GraphQL Features from the Future",
@@ -611,9 +611,9 @@
         "anchor": "compatibility-table"
       }
     ],
-    "content": "ca66d1031ca196e79c0ca515d5e1f20e",
+    "content": "13ff38dd38ec17c7795685211b0f2527",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/integrations",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "Integrations and Examples",
@@ -649,9 +649,9 @@
         "anchor": "does-the-order-of-plugins-matter"
       }
     ],
-    "content": "ffb765ade71947e8a1874914fa096958",
+    "content": "dd6e93e448d38eefc57dc4f802f0e15f",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/plugins/",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Plugins"],
     "source": "Envelop",
     "title": "Introduction",
@@ -687,9 +687,9 @@
         "anchor": "sharing-envelop-plugins"
       }
     ],
-    "content": "a277534112276c6c30dcc9e3fea26072",
+    "content": "88742009cbef1ba0c2182f3ee6b9e3eb",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/plugins/custom-plugin",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Plugins"],
     "source": "Envelop",
     "title": "Building Plugins",
@@ -747,9 +747,9 @@
         "anchor": "plugins-api"
       }
     ],
-    "content": "565e31d4b2567f68186322afe8d23664",
+    "content": "ed46f1b311ad5ae37733c15523fdd776",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/plugins/lifecycle",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Plugins"],
     "source": "Envelop",
     "title": "Lifecycle",
@@ -792,9 +792,9 @@
         "anchor": "additional-resources"
       }
     ],
-    "content": "c258034021ea98fa42f2baba21391820",
+    "content": "37df0d827cf81f3ddd1fd570df5d11ac",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/plugins/testing",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Plugins"],
     "source": "Envelop",
     "title": "Testing",
@@ -815,9 +815,9 @@
         "anchor": "for-plugins-users"
       }
     ],
-    "content": "ddf085738f6442ce9dd89d8632e289d0",
+    "content": "45c7ee394746cf1f21b2b20c259b0420",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/plugins/typescript",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)", "Plugins"],
     "source": "Envelop",
     "title": "TypeScript Support",
@@ -827,9 +827,9 @@
     "objectID": "envelop-v3-latest-tracing",
     "headings": [],
     "toc": [],
-    "content": "653c6947e77e5847d560d26674548837",
+    "content": "2bb22fd927880e10e4911f7ef7adfbc7",
     "url": "https://www.the-guild.dev/graphql/envelop/docs/tracing",
-    "domain": "https://www.the-guild.dev/graphql/envelop/",
+    "domain": "https://www.the-guild.dev/graphql/envelop",
     "hierarchy": ["v3 (latest)"],
     "source": "Envelop",
     "title": "Tracing",

@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch 2 times, most recently from dc16e54 to dc5955c Compare March 29, 2023 05:31
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch 2 times, most recently from ccddd6e to 590c1bd Compare April 12, 2023 00:09
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 590c1bd to 671a160 Compare April 18, 2023 16:25
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch 2 times, most recently from 2410b4b to ee40281 Compare May 3, 2023 13:16
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from ee40281 to 53e5ca9 Compare May 22, 2023 14:08
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from b4e1609 to 32b6109 Compare May 23, 2023 12:45
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 32b6109 to af33449 Compare May 23, 2023 13:11
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch 2 times, most recently from ddb76fb to 4e72638 Compare September 27, 2023 22:49
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 4e72638 to 666006e Compare September 29, 2023 16:20
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from 666006e to d6b9d68 Compare November 20, 2023 10:59
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from d6b9d68 to d78f973 Compare March 11, 2024 15:45
@renovate renovate bot force-pushed the renovate/ioredis-mock-8.x branch from d78f973 to 905732d Compare March 24, 2024 07:25
Copy link
Contributor Author

renovate bot commented Mar 24, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant