Steven Loria
Steven Loria
finally got around to looking into this. @AbdealiLoKo's diagnosis was correct. I've fixed this in https://github.com/marshmallow-code/marshmallow-sqlalchemy/pull/640. i'll release it today
Good catch! It's documented [here](https://github.com/marshmallow-code/marshmallow-sqlalchemy/blob/91d83123b7b21076d238cf079f5678b78ca176b5/src/marshmallow_sqlalchemy/load_instance_mixin.py#L91), but I don't think this appears in the sphinx docs. It is public API, so we should definitely document this more clearly
sorry to resurrect this, but I'm a soft +1 for adding a back button to the UI. [iOS doesn't support `display: minimal-ui`](https://developer.apple.com/forums/thread/649097) and falls back to `display: browser`, which opens...
i implemented a workaround using custom CSS and JS: ```css /* Style the back button like the pagination links */ .pagination button { background: none; border: none; color: var(--pagination-link-color); font-size:...
@ddennerline3 for your use case, would it be better if `env.url` returned a string (and use `urllib.parse.urlparse` when you actually need a ParseResult)? changing the return value would be a...
@juledwar can you post an example of the use case with the legacy API that you're trying to achieve with the new API? maybe we can assist with the migration
just brainstorming: would adding a setter to `Context` meet your use case? so something like ```python from marshmallow.experimental.context import Context class Foo(Schema): name = String(required=True) reason = String(required=True) @pre_load def...
oh that's an interesting idea. would we then need `@pre_load_context`, `@post_load_context`, `@pre_dump_context`, `@post_dump_context`?
fixed in 0.19.0
let's go with option 1 (config option + CLI flag)