Remove fixed dependency#149
Conversation
|
Related #116 |
|
This was done on the |
|
This is also affecting us |
|
Pinging @w4ll3 (great avatar, by the way!); is this project/repo active? It seems there's been no activity for five months at this point? |
The repository is active, and we're also working on updates we'll be releasing in a v3 of the library (which will require some forms of announcing due to breaking changes). Noting here, we definitely encourage folks to upgrade to v2 if they use v1.1.6. We'll take a look at this however for existing implementations. Apologies about the delayed response. |
|
Thanks for the response @obstropolos! Is v3 under development somewhere else? Because this repo has no recent pushes to any branch. It's rather surprising to me a v3 is in the works, when v2 is still flagged as a "beta". The existing "beta" flag on v2 is why I have not upgraded to it for primary use. |
Yeah, we've primarily pointed folks to The next items going into We're just going through some additional reviews on some items in the works and will likely be announcing the transition over to that latest version with sufficient time. Edit: - Also that's hysterical that Wall-E is both your profile photos |
So is v2 stable? Why does it still have a "beta" flag on it? |
|
This is also impacting us -- What version of ethers does |
It is - this was to update the library with the API changes and not break anyone that auto-updated. We use this version for SSX for example. |
|
The latest release of v2 is tagged
Users who started a project with And you haven't given any indication what the holdup is for this merge request. Do you not consider it a bug (i.e. siwe v1 must use ethers v5.5)? If you're not going to accept changes to the v1 branch any further, please consider marking it deprecated or otherwise making it clear in the documentation that version is no longer maintained. |
|
Thanks for the PR and for the considerations, we will be preparing a release for v1 (v1.1.7) shortly after #147 is merged, this should address the issue discussed here and further extend support for v6. |
The
/packages/siwe/package.jsonfile had theethersdependency as a fixed requirement (only allowing exactly v5.5.1 to be used). This is in conflict with the parentpackage.json, which allows minor-version changes (^5.5.1, allowing "Compatible with version" changes, meaning anything 5.x.x greater than or equal to 5.5.1). Since the latest Ethers on the v5 branch is v5.7, having the fixed requirement of v5.5.1 prevented upgrading to that.This change adds the
^to the childpackage.jsonto allow the flexibility to upgrade to later versions of the Ethers v5 library.