-
Notifications
You must be signed in to change notification settings - Fork 17
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
Will there be another release on crates.io? #24
Comments
I'm using the current git version of this project, and I get a compilation error for the same reason, it looks like it's fixed in this PR on the v8 repo, so the version of deno_core depended on should be updated to one after the 15th of July to apply the fix. My solution in the mean time is to use an older nightly compiler. |
Note that there are 2 experimental releases on crates.io, the last one from April this year 🙂 A 0.2.0 release should be possible, but to clean up some APIs I'd need to invest a bit more time, which I don't have this week. It also depends on how much effort the |
I'd be willing to try it if you don't have the time. |
If you have the time and motivation, a PR would definitely be welcome! ❤️ |
@Bromeon I've updated the dependency, but the tests are failing with a Should I still open a PR for this or wait until it's fixed? |
Thanks so much! 💪
That's up to you, from my side there's no urgency. |
@Bromeon I did some testing and found that |
Another beta release for the changes to the API related to serialization errors would be appreciated - I can't update my downstream app till that one is available |
Can I get a timeline for the release of the next RC version? I haven't been able to publish updates to my crate in months If it will be much longer, would you mind if I temporarily published my fork of this just so I can resume work? |
@rscarson until the next release you should be able to use the git version ( |
You can not publish crates that have a GitHub dependency, which is why I'd need to publish a fork |
Sorry about the delays, I can publish today evening. Is current |
Yup! |
Released as Will probably do a "proper" release at some point, if you have input regarding that, let me know. Thanks a lot for the patience 😊 |
The current 'stable' (0.1.6) release of this project is over 2 years old, and depends on a horrendously old version of deno_core (0.84.0), which depends on an even more old rusty_v8 (0.22.3).
This has worked perfectly fine for me, until rust changed the size of
TypeId
s in nightly, which causes an assertion in said version of rusty_v8 to fail, panicing.I can solve this by using an older compiler, but making a new release would make sure others are less likely to run into this issue in the future. (It would also bring recent performance boosts from deno and rusty_v8 as well)
The text was updated successfully, but these errors were encountered: