Ashcon Partovi
Ashcon Partovi
Thanks for reporting this issue, this is indeed a bug. ```js console.log( new Request( new Request( "https://example.com" ), {} ).url, ) // expected: "https://example.com" // actual: [object Request] ```
@robobun ```js console.log( new Request( new Request( "https://example.com" ), {} ).url, ) ```
This is partially fixed, but still an issue as of `0.2.2`. ```js Object.getOwnPropertyDescriptor(globalThis, 'DOMException') // writable: false, configurable: false (BROKEN) Object.getOwnPropertyDescriptor(globalThis, 'URL') // writable: true, configurable: false (partly OK) Object.getOwnPropertyDescriptor(globalThis,...
This was supported several releases ago: https://github.com/oven-sh/bun/pull/1875
Hi @joeyparis, thanks for reporting this issue. `bun install` has gone through a lot of changes since you found this bug. If you have a moment, do you mind running:...
`bun dev` was changed in Bun v1.0, it will now run the "dev" script in your package.json. Because of that, this issue is no longer applicable.
I haven't had the time recently to look into this, will try to this weekend.
Hi, taking a look at the issue
The cache TTL has been fixed, names and profiles should be properly updating now.
Right now it's a random time between 1 and 24 hours. This is obviously not great, but otherwise there are too many 429 errors and nothing can get updated. I've...