馃 A practical web framework for Gleam
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

1# Changelog 2 3## v0.14.0 - 2024-03-28 4 5- The `mist` version constraint has been relaxed to permit 0.x or 1.x versions. 6 7## v0.13.0 - 2024-03-23 8 9- The `wisp` module gains the `file_download_from_memory` and `file_download` 10 functions. 11 12## v0.12.0 - 2024-02-17 13 14- The output format used by the logger has been improved. 15- Erlang SASL and supervisor logs are no longer emitted. 16 17## v0.11.0 - 2024-02-03 18 19- Updated for simplifile v1.4 and replaced the deprecated `simplifile.is_file` 20 function with `simplifile.verify_is_file`. 21 22## v0.10.0 - 2024-01-17 23 24- Relaxed version constraints for `gleam_stdlib` and `gleam_json` to permit 0.x 25 or 1.x versions. 26 27## v0.9.0 - 2024-01-15 28 29- Updated for Gleam v0.33.0. 30- Updated for simplifile v1.0. 31 32## v0.8.0 - 2023-11-13 33 34- Updated for simplifile v0.3. 35 36## v0.7.0 - 2023-11-05 37 38- Updated for Gleam v0.32. All references to "bit string" have been changed to 39 "bit array" to match. 40- The `wisp` module gains the `get_query` function. 41 42## v0.6.0 - 2023-10-19 43 44- The `wisp.require_form` now handles `application/x-www-form-urlencoded` 45 content types with a charset. 46 47## v0.5.0 - 2023-09-13 48 49- The `wisp` module gains the `set_cookie`, `get_cookie`, `json_response` and 50 `priv_directory` functions. 51- The `wisp` module gains the `Security` type. 52 53## v0.4.0 - 2023-08-24 54 55- The `wisp` module gains the `set_header`, `string_builder_body`, 56 `string_body`, `json_body`, `unprocessable_entity`, `require_json` and 57 `require_content_type` functions. 58- The `wisp/testing` module gains the `post_json`, `put_json`, `patch_json`, 59 `delete_json`, and `set_header` functions. 60- The request construction functions in the `wisp/testing` module now support 61 query strings. e.g. `get("/users?limit=10", [])`. 62 63## v0.3.0 - 2023-08-21 64 65- The `mist_service` function has been renamed to `mist_handler`. 66- The `method_not_allowed` function gains the `allowed` label for its argument. 67- The `wisp` module gains the `html_escape` function. 68- The `wisp/testing` module gains the `post_form`, `put_form`, `patch_form`, and 69 `delete_form` functions. 70 71## v0.2.0 - 2023-08-12 72 73- Initial release