-
Notifications
You must be signed in to change notification settings - Fork 583
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
Fix CI #2610
Merged
Merged
Fix CI #2610
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
github-actions
bot
added
builder
Related to the `builder` module.
cache
Related to the `cache`-feature.
client
Related to the `client` module.
gateway
Related to the `gateway` module.
http
Related to the `http` module.
model
Related to the `model` module.
utils
Related to the `utils` module.
labels
Nov 20, 2023
mkrasnitski
force-pushed
the
fix-simd-json
branch
from
November 20, 2023 19:21
b73b6c1
to
a337704
Compare
github-actions
bot
removed
model
Related to the `model` module.
client
Related to the `client` module.
builder
Related to the `builder` module.
gateway
Related to the `gateway` module.
http
Related to the `http` module.
cache
Related to the `cache`-feature.
labels
Nov 20, 2023
I'm just gonna make this PR for passing all of CI, not just simd-json. |
mkrasnitski
force-pushed
the
fix-simd-json
branch
from
November 20, 2023 19:55
a337704
to
a4df4c8
Compare
mkrasnitski
force-pushed
the
fix-simd-json
branch
from
November 20, 2023 20:28
52812db
to
904e52c
Compare
github-actions
bot
added
cache
Related to the `cache`-feature.
client
Related to the `client` module.
framework
Related to the `framework` and `framework::standard` modules and/or the `command_attr` crate
http
Related to the `http` module.
model
Related to the `model` module.
labels
Nov 20, 2023
mkrasnitski
force-pushed
the
fix-simd-json
branch
from
November 20, 2023 20:30
904e52c
to
d13abff
Compare
github-actions
bot
added
collector
Related to the `collector` module.
examples
Related to Serenity's examples.
labels
Nov 20, 2023
I don't feel like fixing MSRV at the moment, it's too much work. However, I tested it and without pinning, the MSRV is 1.67. |
arqunis
approved these changes
Nov 20, 2023
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
cache
Related to the `cache`-feature.
ci
Related to the continuous integration.
client
Related to the `client` module.
collector
Related to the `collector` module.
examples
Related to Serenity's examples.
fix
A solution to an existing bug.
framework
Related to the `framework` and `framework::standard` modules and/or the `command_attr` crate
http
Related to the `http` module.
model
Related to the `model` module.
utils
Related to the `utils` module.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This revives #2536 in order to fix the
simd-json
feature on thev0.11
series and get CI to actually work again.Initially I attempted to keep the old simd-json version exported while using a newer version internally, but unfortunately this doesn't work as types from the internal version would leak into the public API (specifically in methods on
Http
which expect aValue
orJsonMap
). Therefore, because the old version ofsimd-json
has a soundness bug infrom_str
, and because not that many people actually use this feature, I propose we just bite the bullet and upgrade tosimd-json v0.10
on this branch. This way, we can provide a safe wrapper aroundsimd_json::from_str
, and whilefrom_str
is still exported in the prelude, it is marked unsafe.