Paul

Results 18 comments of Paul

@probablyup I have encountered this same issue on a project and I'm using version `5.2.1`. The [codesandbox](https://codesandbox.io/s/vigorous-rgb-osztp?file=/src/App.tsx) that @arteforme has posted reproduces this issue in `5.2`. Is there are workaround...

@lucacasonato I cannot run the test suite due to an error with fetching a module ```sh ❯ deno task test Warning deno task is unstable and may drastically change in...

upgrading to deno 1.25.0 seems to have done the trick, I can run the tests. I also added the test you were looking for @lucacasonato 👋

Based on the error message, the error occurs in [`createRootFragment`](https://github.com/denoland/fresh/blob/0cb05d1dac13d14b6b31d0e61d2e6f0ccfb5d4a4/src/runtime/main.ts#L4). Specifically when preact calls `appenChild`, which subsequently calls our [`insert`](https://github.com/denoland/fresh/blob/0cb05d1dac13d14b6b31d0e61d2e6f0ccfb5d4a4/src/runtime/main.ts#L10) function. I think part of the issue is related to...

👋 we encountered this same issue on Next 13, dd-trace 5 and Node 20. This is a pretty serious blocker for us to continue using dd-trace.

I have found that disabling the `http` integration (using `DD_TRACE_DISABLED_INSTRUMENTATIONS=http`) solved our issues. However, we of course cannot do that as we are depending on a lot of the functionality...

hey, we're also having the same issue after upgrading to Next 13.5, are there any workarounds for this?

I upgraded to the latest Python version (3.12.2, after first encountering the problem on 3.11.7) and I am still getting this same build error. `six` is installed on my machine...

I managed to reproduce the same error as @TomieAi using docker: ```dockerfile FROM rust:1.76 as build RUN apt-get update \ && apt-get install -y --no-install-recommends \ build-essential \ python3 \...