Alfred Mountfield

Results 12 issues of Alfred Mountfield

The code snippets provided in the docs for adding authentication to the CuratorFramework suggest methods that don't exist i.e. ```java @BoostrapConfiguration public class CustomCuratorFrameworkConfig { @Bean public CuratorFramework curatorFramework() {...

documentation

I'm wondering how you're supposed to do error _handling_ using serde_json? Custom error messages get turned into plain strings inside the `Error::Message()` struct which makes them unmatchable. There also doesn't...

Downloading the project and following the README fails due to packages no longer existing in the repositories. (and thus can't be resolved) Furthermore this sample has become quite outdated with...

This updates the dependencies and a configuration of the project as the README no longer worked due to expired versions and outdated config.

Apologies if this has been asked somewhere else, I have tried searching but GitHub's search can be difficult to tame.. Are there plans to support OpenAPI Spec 3.1 (if not...

In a lot of situations, plain union types are better suited than enums. Ideally there would be some way to make the output of this: ```rust #[derive(Serialize, Deserialize)] #[typeshare] pub...

feature-request

# Bug report - [x] I confirm this is a bug with Supabase, not with my own application. - [x] I confirm I have searched the [Docs](https://docs.supabase.com), GitHub [Discussions](https://github.com/supabase/supabase/discussions), and...

bug

Hello, I was just wondering if it's possible to decouple this from `wasm_bindgen`. I understand that the original purpose of the library was to focus on `wasm_bindgen` but I was...

I've just tried out this crate and the typescript interfaces it's creating are _**awesome**_. Unfortunately I don't seem to be able to use it in methods like ```rust #[wasm_bindgen] modify_some_object(my_wasm_obj:...

If you have an enum such as this: ```rust #[derive(Debug, Serialize, Deserialize, Tsify)] #[serde(tag = "reason")] pub enum ParseBaseUriError { MissingTrailingSlash, UrlParseError(String), CannotBeABase, } ``` then the generated types look...

enhancement