diff --git a/book/src/developers/designs/rest_interface.md b/book/src/developers/designs/rest_interface.md index 67429fcda..981cf34d7 100644 --- a/book/src/developers/designs/rest_interface.md +++ b/book/src/developers/designs/rest_interface.md @@ -18,4 +18,5 @@ The Swagger UI is available at `/docs/swagger-ui` on your server (ie, if your or The OpenAPI schema is similarly available at `/docs/v1/openapi.json`. -You can download the schema file using `kanidm api download-schema ` - it defaults to `./kanidm-openapi.json`. +You can download the schema file using `kanidm api download-schema ` - it defaults to +`./kanidm-openapi.json`. diff --git a/book/src/developers/faq.md b/book/src/developers/faq.md index 483f94495..858b003c3 100644 --- a/book/src/developers/faq.md +++ b/book/src/developers/faq.md @@ -114,3 +114,21 @@ When a service like sudo, sshd, su etc. wants to authenticate someone, it opens that service, then performs authentication according to the modules defined in the pam.d config. For example, if you run `ls -al /etc/pam.d /usr/etc/pam.d` in SUSE, you can see the services and their respective pam.d config. + +## Troubleshooting builds + +### WASM Build failures due to "Error: Not able to find or install a local wasm-bindgen." + +This seems to relate to a version mismatch error in `wasm-pack` as seen in +[this thread in the wasm-pack repository](https://github.com/rustwasm/wasm-pack/issues/1138). + +Try reinstalling `wasm-bindgen-cli` by running the following (the `--force` is important): + +```shell +cargo install --force wasm-bindgen-cli +``` + +Or reinstalling `wasm-pack` similarly. + +If that doesn't work, try running the build with the `RUST_LOG=debug` environment variable to +investigate further. diff --git a/project_docs/RELEASE_CHECKLIST.md b/project_docs/RELEASE_CHECKLIST.md index f0882eb66..8e4d43c56 100644 --- a/project_docs/RELEASE_CHECKLIST.md +++ b/project_docs/RELEASE_CHECKLIST.md @@ -58,7 +58,6 @@ cargo install cargo-udeps - [ ] publish `kanidm_proto` - [ ] publish `sketching` - - [ ] publish `kanidm_utils_users` - [ ] publish `kanidm_lib_file_permissions` - [ ] publish `kanidm_client`