New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

apollo-client-devtools

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

apollo-client-devtools - npm Package Versions

apollo-bot
published 4.11.0 •

Changelog

Source

4.11.0

Minor Changes

  • #1286 11309f3 Thanks @phryneas! - Change transpilation target to create a smaller and more modern DevTools build.
apollo-bot
published 4.10.1 •

Changelog

Source

4.10.1

Patch Changes

  • #1287 052f242 Thanks @phryneas! - Move access to the gql helper into the background worker to reduce size of injected JavaScript.
apollo-bot
published 4.10.0 •

Changelog

Source

4.10.0

Minor Changes

  • #1281 badb1f9 Thanks @phryneas! - Add the ability for devtools to provide full error and log messages without the need to need to call loadDevMessages or loadErrorMessages.

Patch Changes

apollo-bot
published 4.9.1 •

Changelog

Source

4.9.1

Patch Changes

  • #1278 e886145 Thanks @jerelmiller! - Fix issue with error serialization when sending an error back through the message passing system. Unfortunately the raw error instance was lost in this process. This fix retains the error message when sending error messages in rpc calls.
apollo-bot
published 4.9.0 •

Changelog

Source

4.9.0

Minor Changes

  • #1256 28140d8 Thanks @jerelmiller! - Introduce rpc utilities to communicate between the extension scripts. Migrate the call to get client data into the devtools to use the rpc utilities.
apollo-bot
published 4.8.3 •

Changelog

Source

4.8.3

Patch Changes

  • #1264 66c05ae Thanks @phryneas! - Enable "@typescript-eslint/consistent-type-imports" lint rule

  • #1265 df5300f Thanks @phryneas! - Use relative-CI to monitor build artefact sizes

  • #1268 4c98879 Thanks @jerelmiller! - Revert change that removed JSON stringify on the entire set of client data. This is a followup to #1259 which only partially fixed the issue.

apollo-bot
published 4.8.2 •

Changelog

Source

4.8.2

Patch Changes

apollo-bot
published 4.8.1 •

Changelog

Source

4.8.1

Patch Changes

  • #1245 cb22c6f Thanks @jerelmiller! - Don't JSON.stringify the Apollo Client instance data before sending it in the message payload when communicating between the various parts of the devtools extension. This was mostly redundant since message passing already relies on the structured clone algorithm.

  • #1249 a36f59d Thanks @jerelmiller! - Merge the tabRelay script with the tab script by extracting the body of the Promise callback into tab.ts. This behavior was no longer needed.

apollo-bot
published 4.8.0 •

Changelog

Source

4.8.0

Minor Changes

  • #1232 8ce6fef Thanks @jerelmiller! - Changes the tab injection mechanism for better compatibility with websites that might have issues with hydration mismatches when using the old injection mechanism.
apollo-bot
published 4.7.0 •

Changelog

Source

4.7.0

Minor Changes

  • #1226 7c89199 Thanks @jerelmiller! - Rework the message passing between all areas of the devtools to provide more stability. In particular, the message passing has changed in the following ways:

    • All messages now contain a source property set to apollo-client-devtools. This avoids potential clashes with events emitted from window that had nothing to do with the devtools. This also means that apps or other utilities that listen to messages on window know where the message originates.
    • Strengthen the relationship in the background scripts between the tab and devtools ports.
    • Add much better type safety for all messages sent through the various areas of the devtools.

Patch Changes