Pulkit Goyal

Results 9 comments of Pulkit Goyal

@arthurvr, @stephanebachelier: Here is a sample block inside a worker (say `worker.js`) ``` js /* build:js js/app.js */ importScripts("js/app.js") importScripts("js/controllers/thing-controller.js") importScripts("js/models/thing-model.js", "js/views/thing-view.js") /* endbuild */ ``` Grunt task configuration ```...

This is still happening on `@apollo/[email protected]` and `[email protected]` only when running tests using `jest`. The app and queries otherwise work ok.

@paigekim29 I haven't been able to find a solution for this. Until this is resolved on Apollo, we are stuck with pinning to `3.2.4`. cc @hwillson I believe this is...

@hwillson [Here is a repro](https://github.com/apollographql/apollo-client/files/6791067/Archive.zip). Longer version: While trying to create a repo, I noticed that it doesn't happen on a brand new project. After some digging, it seems that...

Thanks for checking this out @hwillson. I tried without `graphql.macro` and have the same error. I have [created a repo](https://github.com/pulkit110/apollo-7348-repro) for the reproduction so that it is easy to check...

Hi @benjamn, thanks for the update. I have tried on the [reproduction repository](https://github.com/pulkit110/apollo-7348-repro) by [turning off `preferRelative`](https://github.com/pulkit110/apollo-7348-repro/commit/1944188c21cf8469d167c1826f2058d0338aed65) (even though it should have already been off). This does not fix the...

@mbillard Please let me know if you have any questions or comments regarding the changes.

For me, the solution was to install the [dependencies suggested](https://github.com/Automattic/node-canvas?tab=readme-ov-file#compiling) on `node-canvas` README on the CI runner (no need to run `pnpm rebuild` or `pnpm store prune`). ```yml jobs: test:...

This happens with Rails 6.1+ because it uses a [SameSite policy for cookies by default](https://edgeguides.rubyonrails.org/configuring.html#config-action-dispatch-cookies-same-site-protection). This can be bypassed for AD authentication by adding the following to your `application.rb`: ```rb...