Chris Rogus
Chris Rogus
I generated mine with ``` dx --version dioxus 0.5.4 ``` Did you do the same? Because I do see slight differences in the dist output: ``` diff -r ./dist/ ../fail-reproduce-2270/dist/...
So, I reproduced this locally many times, then I pushed one of them up: https://github.com/rogusdev/rsx-empty-conditional and when I cloned that one back down, it did not fail -- the first...
Ah, it seems that the reason the current Cargo.toml is fine, is because main has moved past this bug in 0.4.0 thanks to dependabot: https://github.com/jbr/async-sqlx-session/commit/3d8523de34a7290be9a7a681d6bd4c191d8915f3 So, the fix then is...
Note: there were no automated tests for any of the affected structs that I could see, so I simply tested with: ``` cd packages/web && cargo build && cd -...
I don't know how I affected the failing workflow test. As for the labels: this is a new function that should be indiscernible to any users who don't reach for...
I'm in no rush personally -- I'm using my local version now. I suspect that part of semver is referring to libraries where others are implementing that trait. Certainly then...
> Flakey windows tests are fixed in #2332 🙂 I rebased and force pushed with those changes so you can re-run to get everything passing.
For sure longer term this should get incorporated into something better, definitely agree. I think including this sooner rather than later allows the need for those bigger changes to be...
Notably: for the example, I did not call `&*res.read_unchecked()` as the docs suggest on https://dioxuslabs.com/learn/0.5/reference/use_resource -- instead choosing to simply do `res()`, which definitely works. If the longer syntax is...
As explained in https://github.com/tonerdo/dotnet-env/pull/93#issuecomment-1974330009 -- SetEnvVar = false 's entire job is to not set the values from .env files into the env, so if you use interpolation, you will...