Clemens Kofler

Results 50 comments of Clemens Kofler

Confirmed, we've been working with the upgraded version for a while without any hiccups that I'm aware of.

Independent of whether or not this is a bug/regression: Shouldn't `window.location.href = otherWindow.location.href` do pretty much what you'd expect in most if not all of the cases?

@phenomnomnominal Any news? If you'd publish a list of tasks that need to be done for you to be comfortable with a v6 final release (or at least a beta),...

I think the underlying problem here isn't actually in `intervalToDuration` but `differenceInMonths` (which `intervalToDuration` uses internally) and the month of February – and it's not leap year-related either: ``` js...

I can confirm that with these changes, everything seems to be working (at least it's compiling my Next app and there are no obvious issues).

We keep running into this issue again and again, because it's so counter-intuitive in a TypeScript codebase where people actually take types seriously. Consider this (taken more or less directly...

I'm fairly certain that the culprit is here: https://github.com/prisma/extension-read-replicas/blob/main/src/ReplicaManager.ts#L33-L35. Because the new engines setup expects `adapter` to be passed – see https://github.com/prisma/prisma/blob/f1485403c7eda75b796e9f03242e8ce97b657088/packages/client/src/runtime/core/engines/client/ClientEngine.ts#L118-L127. The safest way to fix this in a...

It looks like it's actually possible, one just has to use `replicas` instead of `url`: ``` ts const baseClient = new PrismaClient({ adapter: new PrismaPg({ connectionString: dbUrl }) }) const...

Note: Similar to what @mt-ks posted above, you can also just use SWC's capabilities instead of Babel for this (especially if you're already using SWC): ``` js // jest.config.js const...

The way I got it working for now with React 19: - Apply changes from https://github.com/jaredpalmer/formik/pull/4012 to local `node_modules` - Run `npx -y patch-package formik` and add `"postinstall": "npx -y...