Skip to content

Commit

Permalink
fix: check each PR in details to reflect changes correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
anirbanshaw24 committed Sep 12, 2023
1 parent b15dfe9 commit f50eab1
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,34 +1,33 @@
# shiny.router 0.3.1

- Changed the dots (`...`) argument in `router_ui()` to allow dynamically passed arguments
- Fixed the issue where the 404 page was not working when a non-valid page is opened as the first page
- Changed the dots (`...`) argument in `router_ui()` to allow dynamically passing of arguments.
- Fixed the issue where the 404 page was not working when a user opens a non-valid link without going to a valid one first.

# shiny.router 0.3.0

- Added a new API that is compatible with Rhino. New functions `router_ui` and `router_server` are added. `make_router` is deprecated.

# shiny.router 0.2.3

- Fixed error with `shiny.router::disable_bootstrap_on_bookmark()` when used with development version of shiny by applying `shiny::createWebDependency()` before `renderDependencies()`
- Fixed `disable_bootstrap_on_bookmark()` errors with the development version of Shiny
- Fixed the issue displaying the main page bookmark on app start
- Fixed error with `shiny.router::disable_bootstrap_on_bookmark()` when used with development version of shiny by applying `shiny::createWebDependency()` before `renderDependencies()`.
- Fixed the issue displaying the main page bookmark on app start. Fixed issue of hash path not updated when opening default page. Added update of hash path to be run once after default router page is being set-up.

# shiny.router 0.2.2

- Resolved `shiny::bootstrapLib()` before rendering
- Resolve `htmltools::tagFunction()` returned by `bootstrapLib()` with `resolveDependencies()` before rendering to achieve dynamic disabling of bootstrap.

# shiny.router 0.2.1

No changes.

# shiny.router 0.2.0

- Remembered page state
- Stopped re-rendering the whole page every time the URL was changed
- Added support for URLs with query strings preceding hashbang
- Fixed the issue when the root page was running twice
- Used relative paths when creating router links
- Allowed passing a common value for each server callback
- Page state is now remembered. Forced all pages to be rendered during run time, but between page state is remembered and not rendered again. Use `router$ui()` instead of `router_ui()` and `router$server(input, output, session)` instead of `router(input, output, session)`.
- Prevented re-rendering the whole page every time the URL was changed.
- Modify `parse_url_path()` to support query strings following hashbang/path.
- Fixed the issue when the root page is running twice on initial run.
- Used relative paths when creating router links.
- Allowed passing a common value for each server callback.

# shiny.router 0.1.1

Expand Down

0 comments on commit f50eab1

Please sign in to comment.