From ef0cc6462a85ba2ab4c49d97df7102038993cde8 Mon Sep 17 00:00:00 2001 From: Maccesch Date: Fri, 28 Jul 2023 21:08:40 +0100 Subject: [PATCH 1/2] fixed CHANGELOG.md --- CHANGELOG.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e33ce76..e3127d4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,15 +15,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Leptos version is now 0.5 - No `cx: Scope` params are supported/needed anymore because of the changes in Leptos. Please check the release notes of Leptos 0.5 for how to upgrade. -- `watch` is now deprecated in favor of `leptos::watch`. `watch_with_options` - will continue to exist. - `watch` is now removed in favor of `leptos::watch` and will be removed in a future release. `watch_with_options` will continue to exist. - `use_websocket`: - takes now a `&str` instead of a `String` as its `url` parameter. - The `ready_state` return type is now renamed to `ConnectionReadyState` instead of `UseWebSocketReadyState`. - The returned signals `ready_state`, `message`, `message_bytes` have now the type - `Signal<...>` instead of `ReadSignal<...>` to make it more consistens with other functions. + `Signal<...>` instead of `ReadSignal<...>` to make them more consistent with other functions. - The options `reconnect_limit` and `reconnect_interval` now take a `u64` instead of `Option` to improve DX. - The option `manual` has been renamed to `immediate` to make it more consistent with other functions. To port please note that `immediate` is the inverse of `manual` (`immediate` = `!manual`). From 651a88ce011933f8590f6adf5644bbb52f93bead Mon Sep 17 00:00:00 2001 From: Maccesch Date: Fri, 28 Jul 2023 21:12:45 +0100 Subject: [PATCH 2/2] updated gitignore --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b576f01..f67d4f2 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ dist node_modules package*.json .vscode +.DS_Store \ No newline at end of file