Alan Plum @ArangoDB

Results 13 comments of Alan Plum @ArangoDB

I'm closing this as 8.0.0-rc.1 uses Webpack 5 and the smoke tests succeed.

I don't have a Cloudflare environment to try this out but v8.0.0 will use `path-browserify` explicitly and avoids `querystring` in the browser version so this may solve these issues. I...

The upcoming 9.0.0 release replaces `http.request`/`xhr` with native `fetch` and drops the dependency on node-specific modules. As I understand it, that should allow using it with other environments like cloudflare...

The upcoming 9.0.0 release replaces `http.request`/`xhr` with native `fetch` and drops the dependency on node-specific modules. As I understand it, that should allow using it with other environments like deno....

The upcoming 9.0.0 release replaces `http.request`/`xhr` with native `fetch`. This changes how network requests are issued, which may solve this issue. Can you please try the pre-release version by installing...

@radicaled There's a workaround to modify the `agent` used by Node.js fetch: https://github.com/arangodb/arangojs?tab=readme-ov-file#nodejs-with-self-signed-https-certificates I'm closing this issue then. Feel free to reopen this if the problem occurs in v9.

ArangoDB 3.7 reached its End of Life in May 2022: https://arangodb.com/subscriptions/end-of-life-notice/ Please upgrade to a more recent (and supported) version of ArangoDB or continue using arangojs 8.3.0 until you are...

For the life of me I can't replicate this with ArangoDB 3.11 and the latest driver version. Note that the driver changed from PUT to POST in a recent release...

FWIW I'm using the following to replicate this: ``` const c = await db.query('FOR i IN 1...10000 RETURN i'); const r = await c.all(); console.log(r); ``` This results in multiple...

Can you modify your local copy of the module to log the request method at each step? If the request that is sent out uses the wrong method, it should...