From b50a414c2ae8a53b6fff9bf3199b746eda0dcf97 Mon Sep 17 00:00:00 2001 From: Dan Jacob Date: Thu, 15 Apr 2021 07:14:52 +0300 Subject: [PATCH] Doc updates --- README.md | 2 +- doc/source/main.rst | 4 +--- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 1e3b06a..ba3e5e6 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ This package provides helpers for server-side rendering of [Hotwired/Turbo](https://turbo.hotwire.dev/) streams and frames. -**Disclaimer**: the Hotwired/Turbo client libraries are, at time of writing, still in Beta. We expect there will be breaking changes until the first stable release. This package, and the Turbo client, should therefore be used with caution in a production environment. The version used in testing is *@hotwired/turbo==7.0.0-beta.4*. +**Disclaimer**: the Hotwired/Turbo client libraries are, at time of writing, still in Beta. We expect there will be breaking changes until the first stable release. This package, and the Turbo client, should therefore be used with caution in a production environment. The version used in testing is *@hotwired/turbo==7.0.0-beta.5*. ## Requirements diff --git a/doc/source/main.rst b/doc/source/main.rst index bc655bb..f953084 100644 --- a/doc/source/main.rst +++ b/doc/source/main.rst @@ -1,6 +1,6 @@ This package provides helpers for server-side rendering of `Hotwired/Turbo `_ streams and frames. -**Disclaimer**: the Hotwired/Turbo client libraries are, at time of writing, still in Beta. We expect there will be breaking changes both to the client library and this package until the first stable release. This package, and the Turbo client, should therefore be used with caution in a production environment. The version used in testing is *@hotwired/turbo==7.0.0-beta.4*. +**Disclaimer**: the Hotwired/Turbo client libraries are, at time of writing, still in Beta. We expect there will be breaking changes both to the client library and this package until the first stable release. This package, and the Turbo client, should therefore be used with caution in a production environment. The version used in testing is *@hotwired/turbo==7.0.0-beta.5*. ============ Requirements @@ -71,8 +71,6 @@ If the request originates from a turbo-frame it will also set the *frame* proper if request.turbo.frame == "my-playlist": return TurboFrame(request.turbo.frame).response("OK") -**Note**: there is an open bug https://github.com/hotwired/turbo/issues/86 (still open as of turbo beta.4) where the turbo frame header is not added when posting from a form. Until this is fixed, *request.turbo.frame* will only work with links, not forms. - =========================== TurboFrame and TurboStream ===========================