Skip to content

Commit

Permalink
docs: Update NEWS.md and bump dev version
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilzyla committed Jan 5, 2024
1 parent e043de3 commit e4fefc6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: rhino
Title: A Framework for Enterprise Shiny Applications
Version: 1.5.0.9002
Version: 1.5.0.9003
Authors@R:
c(
person("Kamil", "Żyła", role = c("aut", "cre"), email = "[email protected]"),
Expand Down
13 changes: 10 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
# rhino (development)

1. Cypress updated to version 13.
2. `pkg_install` supports installation from local sources, GitHub, and Bioconductor.
3. Update Rhino CI (use latest versions and make better use of actions).
1. `pkg_install` supports installation from local sources, GitHub, and Bioconductor.
2. Improve Rhino CI (use latest versions and make better use of actions).
3. Upgrade tools based on Node.js:
* `test_e2e()` now uses `cypress` 13.6
* `build_js()` now uses `webpack` 5.89
* `build_sass()` now uses `sass` 1.69
* `lint_js()` now uses `eslint` 8.56
* `lint_sass()` now uses `stylelint` 14.16 (the last major version supporting stylistic rules)
* Upgrade all remaining Node.js dependencies to latest versions and fix vulnerabilities.
* The minimum supported Node.js version is now 16.

# [rhino 1.5.0](https://github.com/Appsilon/rhino/releases/tag/v1.5.0)

Expand Down
2 changes: 1 addition & 1 deletion vignettes/tutorial/create-your-first-rhino-app.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ install.packages("rhino")
This tutorial uses the native pipe operator (`|>`) introduced in R 4.1 release. If you use an earlier R version, then you can use the `%>%` pipe operator found in `{magrittr}` and `{dplyr}` packages instead.

To use the state of the art JavaScript and Sass development tools provided by Rhino,
you'll need to [install Node.js](https://nodejs.org/en/download/) (v12 or later) on your system.
you'll need to [install Node.js](https://nodejs.org/en/download/) (v16 or later) on your system.

Rhino will still work without Node.js but with some limitations
(described in [JavaScript](#add-javascript-code) and [Sass](#add-custom-styles) sections).
Expand Down
2 changes: 1 addition & 1 deletion vignettes/tutorial/use-react-in-rhino.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Before starting make sure that you have installed:

1. Rhino 1.4 or later.
You can install the latest version with `install.packages("rhino")`.
2. Node.js v12 or later.
2. Node.js v16 or later.
You can download the latest version from [nodejs.org](https://nodejs.org/en/download).


Expand Down

0 comments on commit e4fefc6

Please sign in to comment.