FG

All Issues

24,993 verified issues

πŸ—„οΈ DatabasesVercel
Fresh4 days ago

Make cuid2 available in `@default`

Problem `cuid()` is deprecated now due to security reasons, can we let `cuid2` be an option when generating ids?

Confidence95%
95%
Candidate Fix
2 fixes
πŸ“± Mobile & Cross-Platform
Fresh4 days ago

[Touchable* + Text] "Touchable cannot transition" error about 20% of the time

Hi I am not really sure if this is an issue or not, but I thought i posted here so if anyone have the same problem, they know what was going on. Apparently if you render some touchablebutton to be like this [code block] you will run into this error very frequently [code block] To solve the problem just wrap the text inside the touchableopacity/touchablehighlight with a child view like this [code block] and seems to not run into that error anymore.

Confidence95%
95%
Candidate Fix
2 fixes
πŸ› οΈ Developer ToolsMicrosoft
Fresh4 days ago

[BUG] ExperimentalWarning: Support for loading ES Module in require() is an experimental feature and might change at any time

Is there an existing issue for this? - [X] I have searched the existing issues This issue exists in the latest npm version - [X] I am using the latest npm Current Behavior When installing any package with Node.js v23.0.0 and npm v10.9.0, I get the following warning [code block] Expected Behavior _No response_ Steps To Reproduce _No response_ Environment - npm: 10.9.0 - Node.js: 23.0.0 - OS Name: Windows 10 22H2 - npm config: default [code block]

Confidence95%
95%
Candidate Fix
2 fixes
🌐 Web & Full-StackVercel
Fresh4 days ago

Hot reload not working at latest version of Next.js

Verify canary release - [X] I verified that the issue exists in the latest Next.js canary release Provide environment information [code block] Which area(s) of Next.js are affected? (leave empty if unsure) _No response_ Link to the code that reproduces this issue or a replay of the bug - To Reproduce 1. npx create-next-app@latest (next-tw) 2. yarn install 3. yarn dev Describe the Bug [code block] Expected Behavior Hot reload should work Which browser are you using? (if relevant) _No response_ How are you deploying your application? (if relevant) _No response_

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ DatabasesVercel
Fresh4 days ago

Support for `Json` field type in SQLite

Problem SQLite has had support for JSON field type for a while. `Sequelize` supports this field type on par with Postgres and MySQL. Lack of support for this field type by Prisma is preventing us from porting over our project. SQLite is a great bootstrapping technology that allows developers to quickly prototype applications without introducing new dependencies such as docker or worry about running yet another service in the development flow. JSON field type gives us the option to have a `nosql` database colocated in a `sql` database. Suggested solution Please implement support for this feature. See JSON ~~Extension~~ documentation and refer to `Sequelize`'s implementation if required. Alternatives Defer migration to Prisma and stick with `Sequelize`. Maintain status quo. Additional context cc: @ryands17 ref: https://github.com/prisma/prisma/discussions/3575

Confidence95%
95%
Candidate Fix
2 fixes
πŸ› οΈ Developer ToolsMicrosoft
Fresh4 days ago

Support Harmony Next PC

Support Harmony Next PC

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ DatabasesVercel
Fresh4 days ago

Support Oracle DB

Problem Support to Oracle db

Confidence95%
95%
Candidate Fix
2 fixes
πŸ“± Mobile & Cross-PlatformGoogle
Fresh4 days ago

Enable "hot reload" (not just "hot restart") for Flutter Web

Latest update: https://github.com/flutter/flutter/issues/53041#issuecomment-1367615679 ---- Hello! Trying the web development currently in beta version. actually quite satisfied as the browser reloads very quick. Only annoying thing is that the hot restart doesn't work properly, imho. Please check on this. Best Regards, Jakob P.S.: Hope this is enough information - First time opening an issue here :) Steps to Reproduce 1. Setup flutter project for web development 2. Run `flutter run -d Chrome` 3. Navigate to a view != main view 4. hot restart (small 'r') without browser refresh (like it should do with capital 'R') Expected results: Browser should reload, but stay on the same view Actual results: Browser fully restarts the app --> Again at the main view

Confidence95%
95%
Candidate Fix
2 fixes
🌐 Web & Full-Stack
Fresh4 days ago

Fails to load config with `Excepted identifier but found "import"` error

Note: vite@6.0.5 is out pinning to esbuild 0.24.0 until @sapphi-red's PR to esbuild is merged and released, you can update to latest vite to fix this issue. Leaving this issue open as we'll revert the temporary fix soon. Workaround and the cause It seems a change in esbuild 0.24.1 is affecting Vite's config loader: https://github.com/evanw/esbuild/issues/4010 The current workaround is to set overrides in package managers: - pnpm overrides [code block] - npm overrides [code block] - yarn resolutions [code block] Edited by @sapphi-red --- Describe the bug <img width="750" alt="Screenshot 0006-12-20 at 14 20 15" src="https://github.com/user-attachments/assets/cf41b16a-67a3-4f1d-977c-ba7aab3e02aa" /> Reproduction pnpm create vite@latest; babel-react Steps to reproduce _No response_ System Info [code block] Used Package Manager pnpm Logs _No response_ Validations - [X] Follow our Code of Conduct - [X] Read the Contributing Guidelines. - [X] Read the docs. - [X] Check that there isn't already an issue that reports the same bug to avoid creating a duplicate. - [X] Make sure this is a Vite issue and not a framework-specific issue. For example, if it's a Vue SFC related bug, it should likely be reported to vuejs/core instead. - [X] Check that this is a concrete bug. For Q&A open a GitHub Discussion or join our Discord Chat Server. - [X] The provided reproduction is a minimal reproducible example of the bug.

Confidence95%
95%
Candidate Fix
2 fixes
🌐 Web & Full-Stack
Fresh4 days ago

eslint-plugin-react-hooks & "Flat Config" (ESLint 9)

πŸ‘‹ Coming over from https://github.com/eslint/eslint/issues/18093: ESLint is migrating to a new "flat config" format that will be the default in ESLint v9. It doesn't look like `eslint-plugin-react-hooks` has documented support yet. But, based on searching around (e.g. https://github.com/vercel/next.js/discussions/49337), ESLint v9 is _basically_ supported if you wire it up manually in your config: [code block] Most community plugins provide a more convenient wrapper. For example, `eslint-plugin-jsdoc` provides a `jsdoc.configs['flat/recommended']` object: [code block] Would the React team be open to a PR adding in a preset object like that? And either way, updating the docs on https://www.npmjs.com/package/eslint-plugin-react-hooks? Note: this was also filed as https://github.com/reactjs/react.dev/issues/6430. I'm posting this issue here as a reference & cross-linking it to the table in https://github.com/eslint/eslint/issues/18093. If there's anything technical blocking the extension from working with flat configs, please let us know - we'd be happy to try to help! πŸ’œ Additional resources: Configuration Migration Guide _(edit)_ Plugin Migration Guide * Blog posts on the new config system: Part 1: Background, Part 2: Introduction to flat config _(sorry for not using the issue templates - I wasn't sure whether this would count as a bug)_

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ Databases
Fresh4 days ago

[FEATURE]: allow INSERT in CTEs (WITH clauses)

Describe what you want Drizzle ORM supports `SELECT` queries in CTEs (`WITH` clauses). From the docs: [code block] Currently, Drizzle does not support `INSERT` queries in CTEs. Example of such a query: [code block] As you can see, this would be very useful for nested inserts in a single query and should be supported by Drizzle to be a feature complete SQL query builder.

Confidence95%
95%
Candidate Fix
2 fixes
πŸ› οΈ Developer ToolsMicrosoft
Fresh4 days ago

SSH Agent Forwarding not working with Remote SSH on MacOS (still a problem)

The title is the same as microsoft/vscode-remote-release#2671 because I'm having precisely the same problem, and that issue was closed without a resolution. In short, ssh agent forwarding does not work in VSCode, despite working just fine when I SSH in via the terminal. It seems to be due to a stale / cached `SSH_AUTH_SOCK`. The workaround suggested in microsoft/vscode-remote-release#2671 no longer works, but a minor modification does it for me. See below. VSCode Version: [code block] OS: Darwin 20.6.0 Local OS Version: MacOS 11.6.1 Remote OS Version: `Debian GNU/Linux 10 (buster) (GNU/Linux 4.19.0-18-cloud-amd64 x86_64)` Remote Extension/Connection Type: SSH Steps to Reproduce: 1. set up ssh config with a host you want to forward your ssh agent keys to and set 'ForwardAgent yes' 1. Connect via terminal ssh and perform an operation requiring your forwarded key (in my case, `ssh -T git@github.com`) 1. launch VSCode and validate that $SSH_AUTH_SOCK is set 1. Connect via Remote-SSH, then use the VSCode terminal to run `ssh -T git@github.com`. This time, I receive a permission denied error. Does this issue occur when you try this locally?: NA Does this issue occur when you try this locally and all extensions are disabled?: NA Possible cause The environment variable `SSH_AUTH_SOCK` appears to be stale. A workaround is to run [code block] which sets the socket to the newest one. Note that this workaround is quite fragile, as I had to modify the previous workaround to mak

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ Databases
Fresh4 days ago

Question: how to unit test without hitting the DB

I'm trying to write some unit tests of code that uses typeorm without hitting the DB. I'm using `getRepository` in the code to do stuff. In my tests ideally I'd like to call `getRepository(SomeEntity)` and then use sinon to `sinon.mock(repository).expects('find').withArgs(...).returns(stuff)`. To avoid hitting the DB I thought I'd just not call `createConnection` if I'm in the unit tests context. However I ran into the problem that `getRepository` calls connection manager which looks if it has a connection initialized and if not throws. What would be the recommended way of handling this? Is it possible to create a "dummy" connection somehow which doesn't try to connect anywhere?

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ DatabasesVercel
Fresh4 days ago

Support for splitting Prisma schema into multiple files

Problem Prisma currently only supports one single Prisma Schema file. Developers want more flexibility for managing their Prisma Schema files. Motivations: breaking up large schema files to make them more manageable flexible integration with certain architectures, i.e. each module has its own self-contained logic including its schema Solution Support importing additional schema files, i.e. `import "user.schema"`, `import models/.prisma` or `import modules//.prisma`. Alternatives Not researched at this time. Additional context https://github.com/prisma/prisma/issues/92

Confidence95%
95%
Candidate Fix
2 fixes
πŸ› οΈ Developer ToolsMicrosoft
Fresh4 days ago

Auto-approve terminal command execution in Copilot Agent Mode

Currently, when using GitHub Copilot Chat Agent Mode, users are prompted to manually approve the action by clicking the Continue button. It would be great to have a setting or toggle that allows trusted commands to be automatically executed without manual confirmation, especially for repetitive or non-destructive actions

Confidence95%
95%
Candidate Fix
2 fixes
🌐 Web & Full-Stack
Fresh4 days ago

[v4] Cannot apply unknown utility class: xxx

Hello! After upgrading from v3 to v4(via CLIοΌ‰, I encountered some error: `Cannot apply unknown utility class: text-card-foreground`. This never happened in v3. After some trial and error, I found that it seems necessary to import the main CSS file in my CSS. <img width="728" alt="Image" src="https://github.com/user-attachments/assets/884df5d1-33e6-4f40-89a7-c7512dfdc9f8" /> <img width="670" alt="Image" src="https://github.com/user-attachments/assets/e6678e79-9c42-4d25-b7bc-3d41c30d0e49" /> Is this the expected behavior? This will cause a large number of component styles to have issues. Or, is there a trick for automatic import?

Confidence95%
95%
Candidate Fix
2 fixes
🌐 Web & Full-Stack
Fresh4 days ago

[v4] It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin.

What version of Tailwind CSS are you using? 4.0.0 What build tool (or framework if it abstracts the build tool) are you using? "@tailwindcss/postcss": "^4.0.0", Angular 19.1.3 What version of Node.js are you using? 22.11.0 What browser are you using? Chrome newest version What operating system are you using? macOS M3 Pro Describe your issue Today I try to upgrade to Tailwind v4, but without success. I didn't use postcss, I just have Tailwind in my package.json, my tailwind.config.js and the @import tailwind in my main scss file. If I upgrade the package to 4.0.0, I have the following error: Error: It looks like you're trying to use `tailwindcss` directly as a PostCSS plugin. The PostCSS plugin has moved to a separate package, so to continue using Tailwind CSS with PostCSS you'll need to install `@tailwindcss/postcss` and update your PostCSS configuration. I try to install @tailwind/postcss and create a PostCSS config file like this `export default { plugins: { "@tailwindcss/postcss": {} } }` Has anyone any idea how to fix this problem? On stackoverflow there is a similar question on this topic but the person is using the tailwind directive to import it. I've solved that but I still get the same error. Stackoverflow: https://stackoverflow.com/questions/79380519/how-to-upgrade-tailwindcss

Confidence95%
95%
Candidate Fix
2 fixes
☁️ Cloud & DevOpsAmazon
Fresh4 days ago

Can we have jq installed by default in aws v2 cli docker image?

Is your feature request related to a problem? Please describe. We commonly use jq to manipulate json as input or pick properties from aws command output in shell script. It will be really good if we can include jq in official docker image of v2 like what Azure cli does. Describe the solution you'd like include jq program in aws v2 docker image Describe alternatives you've considered We currently build our own custom image for v1 to have jq installed. Additional context

Confidence95%
95%
Candidate Fix
2 fixes
πŸ—„οΈ DatabasesVercel
Fresh4 days ago

Support querying across multiple schemas

Right now with Prisma, you can query across one schema at a time but in many cases, you need to query across multiple tables stored across multiple database schemas. We need to make certain product decision to enable this like how we are going to add this schema metadata information to the model and other implementation details that are necessary to be handled for this.

Confidence95%
95%
Candidate Fix
2 fixes
πŸ› οΈ Developer ToolsMicrosoft
Fresh4 days ago

Insert key doesn't switch to overtype/overwrite mode

Insert key should switch between insert and overtype modes but it does not. Version 0.10.3 Commit 783ecf841a2b21edca6d86853670cae89b4c244f Date 2015-11-26T14:10:14.207Z Shell 0.34.1 Renderer 45.0.2454.85 Node 4.1.1 Ubuntu 14.04

Confidence95%
95%
Candidate Fix
2 fixes
← PrevPage 14 of 1250Next β†’