Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🐛 Bug Report: Issue with Expo #43

Closed
2 tasks done
mi5ha opened this issue Jan 29, 2025 · 13 comments
Closed
2 tasks done

🐛 Bug Report: Issue with Expo #43

mi5ha opened this issue Jan 29, 2025 · 13 comments
Assignees
Labels
bug Something isn't working

Comments

@mi5ha
Copy link

mi5ha commented Jan 29, 2025

👟 Reproduction steps

When installing react-native-appwrite in current Expo project (v52.0.28), there is a conflict with several package versions (metro, metro-resolver, metro-config)

To see an issue run:

npx expo-doctor

The reason this happens is because the way package.json is defined.

It sets both "dependencies" and "peerDependencies". Because "dependencies" are more restrictive this versioning issue happens.

Probably "dependencies" should be removed and just "peerDependencies" kept? That would solve versions issue I think.

👍 Expected behavior

Versions issues should not be reported.

👎 Actual Behavior

Expo doctor shows these issues:

Detailed check results:

Expected package metro@^0.81.0
Found invalid:
  [email protected]
  (for more info, run: npm why metro)
Expected package metro-resolver@^0.81.0
Found invalid:
  [email protected]
  (for more info, run: npm why metro-resolver)
Expected package metro-config@^0.81.0
Found invalid:
  [email protected]
  (for more info, run: npm why metro-config)

🎲 Appwrite version

Version 0.7.x

💻 Operating system

MacOS

🧱 Your Environment

No response

👀 Have you spent some time to check if this issue has been raised before?

  • I checked and didn't find similar issue

🏢 Have you read the Code of Conduct?

@mi5ha mi5ha added the bug Something isn't working label Jan 29, 2025
@mi5ha
Copy link
Author

mi5ha commented Jan 29, 2025

As a temp solution putting this into package.json removes the doctor issues:

  "overrides": {
    "react-native-appwrite": {
      "react-native": "0.76.6",
      "expo-file-system": "^18.0.7"
    }
  }

@rparida1052
Copy link

This solution did not work

@mi5ha
Copy link
Author

mi5ha commented Feb 13, 2025

This solution did not work

Did you pair it with your versions of react-native and expo-file-system?

Btw its maybe better to add ^ for react-native also:

"react-native": "^0.76.6",

@rparida1052
Copy link

yes,sure

@viju-sharma
Copy link

As a temp solution putting this into package.json removes the doctor issues:

  "overrides": {
    "react-native-appwrite": {
      "react-native": "0.76.6",
      "expo-file-system": "^18.0.7"
    }
  }

Hey, It did not fix the issue, can you please help ?

@1stepdev
Copy link

1stepdev commented Mar 14, 2025

Same problem here reported by expo doctor:

✖ Check that native modules use compatible support package versions for installed Expo SDK
Expected package metro@^0.81.0
  Found invalid:
    [email protected]
    (for more info, run: npm why metro)
Expected package metro-resolver@^0.81.0
  Found invalid:
    [email protected]
    (for more info, run: npm why metro-resolver)
  Expected package metro-config@^0.81.0
  Found invalid:
    [email protected]
    (for more info, run: npm why metro-config)
  Advice: Upgrade dependencies that are using the invalid package versions.

npm ls metro show that:

├─┬ [email protected]
│ └─┬ [email protected]
│   └─┬ @react-native/[email protected]
│     ├─┬ [email protected]
│     │ └── [email protected] deduped
│     └─┬ [email protected]
│       └─┬ [email protected]
│         └── [email protected] deduped
└─┬ [email protected]
  └─┬ @react-native/[email protected]
    ├─┬ [email protected]
    │ └── [email protected] deduped
    └─┬ [email protected]
      └─┬ [email protected]
        └── [email protected] deduped

What is the correct way to handle that ?
Can the react native appwrite sdk be updated to last version of react native ?

@ChiragAgg5k
Copy link
Member

@mi5ha thanks for raising this issue. The team has noted the issue down and will release a fix soon 🙏

@ChiragAgg5k
Copy link
Member

Closing as this should be fixed with latest release 0.7.2

@mi5ha
Copy link
Author

mi5ha commented Mar 17, 2025

Closing as this should be fixed with latest release 0.7.2

@ChiragAgg5k Thank you it is fixed!

But I am afraid the issue will resurface again when versions of react-native and expo-file-system are updated.

Btw what is the reason for having both dependencies and peerDependencies? Why just not have only peerDependencies?

@ChiragAgg5k
Copy link
Member

@mi5ha there is a great article that i think you should read to learn the distinction between them - https://medium.com/@DevChris01/npm-dependencies-vs-devdependencies-vs-peerdependencies-82760bd630d

TLDR - peerDependencies are required by users who use the react-native-appwrite package. if ur project does not have them, it will give a error

dependencies are what the package itself requires.

this is why for peerDependencies there is an asterisk "*", means u can use any version of the dependency in your project. But for the appwrite package, we keep it restrictive so a breaking change in future doesnt automatically break the appwrite package.

@mi5ha
Copy link
Author

mi5ha commented Mar 18, 2025

@ChiragAgg5k Thanx for the article, its a good introduction into the subject! 😀 But we still have an issue with this package.json setup.

First, having same dependency in 2 places is not recommended. "dependencies" has bigger priority so "react-native": "*" in peerDependencies is being ignored. No point of having it there. And having ^ for expo-file-system package would not hurt I think, because there should be no braking chages during major version updates.

What to put in react-native version is tricky because major version is still 0, but I would still put ^ there, or > maybe.

You say you are doing this because you want to protect from breaking changes in future. Which never happened until now right? 😀 But you are having real issue in the present, that will keep reappearing with each minor update of both react-native and expo-file-system.

This last fix you made will fail in couple of weeks tops, thats what I am worried about 😊 That you will have ongoing maintenance burden with this. What do you say about just giving min versions?

"peerDependencies": {
  "react-native": ">=0.70.0",
  "expo-file-system": ">=15.0.0"
}

@ChiragAgg5k
Copy link
Member

  1. for peerDependencies, i am still a bit on edge if we need a min version, since we want that control over to the user. so let's keep it as:

    "peerDependencies": {
      "expo": "*"
    }

    we can remove react-native there as you suggested, and expo-file-system should not be in peerDependencies.

  2. What to put in react-native version is tricky because major version is still 0, but I would still put ^ there, or > maybe.

    there we can use a ~ symbol which would only allow patch versions.


awesome work with all the suggestions @mi5ha 💪

infact would you like to create a PR for this change? you can make the changes here - https://github.com/appwrite/sdk-generator/blob/master/templates/react-native/package.json.twig

@mi5ha
Copy link
Author

mi5ha commented Mar 18, 2025

@ChiragAgg5k Here is the PR

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

5 participants