Release Notes
3.0.0-beta.37
The key changes in this release are:
- Rails 8.0.2 and Ruby 3.4.1
- Vite 6, Vitest 3
- RHINO_APP_URL replaces ROOT_URL, FRONT_END_URL and VITE_API_ROOT_PATH
RHINO_APP_URL
ROOT_URL and FRONT_END_URL have been the same thing for the last couple of releases so they need not be different. RHINO_APP_URL is now the only URL that needs to be set in the environment, following the pattern coming in Rails 8.1 https://github.com/rails/rails/pull/42520
VITE_API_ROOT_PATH is no longer required, its assumed that the client is served from the same domain as the server.
3.0.0-beta.36
The key changes in this release are:
- Rails 7.2.2.1
- Solid Queue, Solid Cable and Solid Cache to provide a more robust and performant queuing, websockets and caching solution in production.
- Rhino ActiveAdmin for Super Admin integration simplification
- ActiveStorage representations, variants and previews in API responses
Solid Queue
See Background Jobs for more information.
- Resque can be continued to be used for existing apps, but it is fairly simple to switch to Solid Queue
Solid Cable
See Websockets for more information.
ActiveAdmin and Super Admin
The app/admin/rhino.rb
file has been removed active admin models must be generated individually for performance and correctness.
See the updated Super Admin guide for more information.
Copy https://github.com/rhino-project/rhino-project-template/blob/v3.0.0-beta.35/app/admin/rhino.rb
to app/admin
to keep the old functionality.
3.0.0-beta.35
The key changes in this release are:
- Ruby 3.3.6 and Rails 7.2.2
- Simplified navigation with PrimaryNavigation and SecondaryNavigation
- Dark mode support
- Support namespaced models in the API
- Support class_named owners in the API
Rails 7.2.2
Notes about upgrading to Rails 7.2 from Rails 7.1
- apply_rubocop_autocorrect_after_generate! is enabled by default
- brakeman and rubocop are now included by default in the bin/ dir
bin/rubocop
andbin/brakeman
to directly run
app/controllers/application_controller.rb
now enforces modern browsers for loading (406 if now)- Use the new default rubocop-rails-omakase
- With some additional rules enabled
bin/rubocop -A
to clean up after
- Active Job will automatically defer the enqueuing to after the transaction is committed, and drop the job if the transaction is rolled back. See [https://github.com/rails/rails/blob/7-2-stable/activejob/CHANGELOG.md] for more details
Simplified navigation with PrimaryNavigation and SecondaryNavigation
CustomPrimaryNavigation and CustomSecondaryNavigation have been removed and combined with PrimaryNavigation and SecondaryNavigation. Simply edit PrimaryNavigation.jsx
and SecondaryNavigation.jsx
to customize the navigation.
The <ModelNavSection />
element can also be passed except or only props to filter the models shown in the navigation.
<ModelNavSection models={['model1', 'model2']} />
<ModelNavSection models={['model1', 'model2']} />
3.0.0-beta.34
The key changes in this release are:
- Unified Rails and Ruby Vite repo
It is recommended to update to v3.0.0-beta.33 before updating to v3.0.0-beta.34
Unified Rails and Ruby Vite repo
In order to transform your repo, you will need to do the following:
- Run the
combined-ruby-vite-mono.sh
from https://github.com/rhino-project/mono-repo-scripts - Follow the standard update instructions for beta 34
Routing
- Make sure routes are ordered correctly and that all custom routes come before the catch all front end route
Deployment
- Set build packs to nodejs and ruby for heroku
heroku buildpacks:clear -a <APP-NAME>
heroku buildpacks:add heroku/nodejs -a <APP-NAME>
heroku buildpacks:add heroku/ruby -a <APP-NAME>
- Set VITE_API_ROOT_PATH to the server
- Remove APP_BASE
3.0.0-beta.33
The key changes in this release are:
- Automatic static.js updating via Vite plugin
- General tidying in preparation for unified rails and ruby_vite repo
3.0.0-beta.32
The key changes in this release are:
- Ruby 3.3.4 and Rails 7.1.3.4
It is recommended to update to v3.0.0-beta.31 before updating to v3.0.0-beta.32
Ruby 3.3.4 and Rails
General guidance about the upgrade is at upgrading Ruby on Rails
- Please review the the new config defaults that are enabled
- Library code is now autoloaded as per 7.1 defaults
- RAILS_SERVE_STATIC_FILES and RAILS_LOG_TO_STDOUT are no longer required in production, they are enabled by default
- Removed the following initializers that were not used and no longer included by default in new projects
- server/config/initializers/application_controller_renderer.rb
- server/config/initializers/backtrace_silencers.rb
- server/config/initializers/mime_types.rb
- Ensured that if SECRET_KEY_BASE is not properly set in production, the server will not start
3.0.0-beta.31
The key changes in this release are:
- Default to no js in jsx
- Vitest 2
- Drop CircleCI support (Github Actions only)
Default to no js in jsx
Previously for create-react-app
project compatibility, the jsx transform was used for all .js files. Files can be renamed to .jsx to use the jsx transform. This is now the default for new projects. enableJsxInJs
can be set to true
for the RhinoVitePlugin to use the jsx transform for .js files.
From the root of the project run the following script to rename all .js files to .jsx:
#!/bin/bash
# Navigate to the client/src directory
cd client/src
# Find and rename all .js files to .jsx, excluding client/src/models/static.js
find . -type f -name "*.js" ! -path "./models/static.js" | while read file; do
git mv "$file" "${file%.js}.jsx"
done
# Find and rename all .spec.js.snap files to .spec.jsx.snap
find . -type f -name "*.spec.js.snap" | while read file; do
git mv "$file" "${file%.spec.js.snap}.spec.jsx.snap"
done
# Navigate back to the original directory
cd -
3.0.0-beta.30
The key changes in this release are:
- Merge overrides in order of specificity
- ActiveAdmin 3.2.2
Merge overrides in order of specificity
Overrides are now merged in order of specificity. This means that global overrides are applied first, then model overrides and finally attribute overrides. This allows for more fine grained control over the overrides. Previously more specific overrides would completely override the less specific override.
const rhinoConfig = {
version: 1,
components: {
ModelIndex: { props: { defaultLimit: 20 } },
// This would not inherit defaultLimit of 20 previously, now it does
blog: { ModelIndex: { props: { defaultSort: "updated_at" } } },
},
};
3.0.0-beta.29
The key changes in this release are:
- Ruby 3.1.6
- Node 20.14.0
- Support rhino and vite environment variable extensions in the client
- Use rhino-project gem dependencies for the server
- Geospatial filtering
- Allow ApplicationShell to be overrideable
- Rhino::TestCase::ModelTest
3.0.0-beta.28
The key changes in this release are:
- Rails 7.0.8.4
- Vite 5.2.13 and Vitest 1.6.0
- Support github actions for CI
- Top level dev tool setup
- Rhino model generator
If coming from 3.0.0-betay.27, When following the upgrade instructions you will need to merge with git merge rhino-project-template-v3.0.0-beta.28 --allow-unrelated-histories
3.0.0-beta.27
The key changes in this release are:
- Docker and docker-compose improvements for production and development
- Rubocop and eslint plugins for Rhino
- Simplified front end build process with plugins in Rhino vite plugin
- Various security updates
- Allow owner reference and reference filters to be overridable and provide typeahead for owner reference
- Allow PrimaryNavigation to be overrideable and take model lists directly including arrays, functions and objects for roles
- Configurable assets for logos
- Limit unopened notifications to 10
This is the last "boilerplate" release. Switch to rhino-project-tempate after this.
3.0.0-beta.26
The key changes in this release are:
- Use open source rhino
- Remove deprecated
models/overrides.js
- Drop base url in tsconfig and tsconfig pathts
Open source rhino
The primary change that needs to be made is the imports in app specific code. For example:
- import { useModelShow } from "rhino";
+ import { useModelShow } from "@rhino-project/core";
Rhino projects a jscodeshift
transform to help with this migration. To use it, run the following command:
npx jscodeshift@latest -t https://raw.githubusercontent.com/rhino-project/rhino-project/beta/packages/codemods/src/v1/replace-import-specifier.js src
Remove deprecated models/overrides.js
The models/overrides.js
file has been deprecated and is no longer used. The overrides are now defined in rhino.config.js
and are more powerful and flexible. The models/overrides.js
file can be removed from your project.
Drop base url in tsconfig and tsconfig pathts
The baseUrl
and paths
properties in tsconfig.json
are no longer used. This should not affect most projects
It is recommended to update to v3.0.0-beta.25 before updating to v3.0.0-beta.26
3.0.0-beta.25
The key changes in this release are:
- Support delegated types and 1-1 nested associations in API
- Coalescing filter support
- Re-architected ModelCardIndex (renamed to ModelIndexCardGrid)
- Name space devise_token_auth headers to avoid model conflicts
- Update vite to 5.0.12 and vitest to 1.2.1
- Install @rhino-project/eslint-plugin-rhino by default
- Use package.json for bootstrap-icons
3.0.0-beta.24
The key changes in this release are:
- Rhino dev tool
- Global error handling for forms
- ModelCellIdentifier that links to show page
- Use
VITE_
prefix for environment variables instead ofREACT_APP_
everywhere - the build will break if the old prefix is used - Handle restrict_with_exception and restrict_with_error via API errors and global error handling
- Full error messages for crud api errors
- Mark read, create and update permissions for read only and virtual column attributes correctly
- Resque (2.6.0), resque-heroku-signals (2.6.0) and resque-scheduler (4.10.2) updates
- react-use 17.4.2 - hook utility library
3.0.0-beta.23
The key changes in this release are:
- Node 20.10.0, npm 10.2.3 and Vite 5.0.8
- React Hook Form 7.49.2
- Per environment seeds
- Index controller improvements
- Default base owner filter
- Separation between dynamic and default filters
- Resetting of default filters
- Pre-computed filter counts
- Global form disablement
Index controller improvements
Previously <ModelIndex />
was passed filter
, limit
, offset
, order
, search
as props. These were used by the model index controller to compute the default state. This was not ideal as it was not clear which filters were dynamic and which were default. It also made it difficult to reset the default filters. These props were renamed to defaultFilter
, defaultLimit
, defaultOffset
, defaultOrder
, defaultSearch
and the model index controller now computes the default state from these props.
setFilter
now only sets the dynamic filters (on top of the defaultFilter) and the defaultFilter can be changed with setDefaultFilter
for tabbed browsing for instance. The model index controller provides fullFilter
composed of the default, initial and dynamic filters.
Finally the model index controller now computes the total number of dynamic filters and the total number of full filters. This is useful for displaying the number of filters applied.
Global form disablement
The model create and edit controllers now support a disabled
prop which will disable all form fields. This is useful for displaying a read only view of the form or for disabling the form while a mutation is in progress. Forms are disabled by default while a mutation is in progress.
3.0.0-beta.22
The key changes in this release are:
- Vite (4.4.12) and Vitest (1.0.1) upgrades
- Testing improvements
- Cypress integration into CI
- React test library linting
- UI fixes
- Always mark labels as required
- No capitalization for enums
rails rhino:open_api_export
placesstatic.js
in the correct client location
3.0.0-beta.21
The key changes in this release are:
- Mono repo
It is recommended to update to v3.0.0-beta.20 before updating to v3.0.0-beta.21
Mono repo
The client and server are now in a single repo. This will make it easier to maintain and update. In order to update to this version you will need to do the following:
Install git-filter-repo
brew install git-filter-repo
Checkout the update scripts
git clone git@github.com:nubinary/mono-repo-scripts.git
Run the update scripts
Passing the base name of the repo and the github organization as arguments to the script. For example:
mono-repo-scripts/combined-mono.sh blog_ myorg
If you have existing repos 'myorg/blog_client' and 'myorg/blog_server'. This will create mono-construction/blog_mono
which is the new mono repo
Create a new repo in github
Create a new repo in github for the mono repo. For example myorg/blog_mono
Add the new repo as a remote
git remote add origin git@github.com:myorg/blog_mono.git
Push the new repo
git push -u origin main
Setup dev environment
- Copy existing env files
- Run
rails rhino:dev:setup
Deploy
- Connect the new repo to heroku (client and server)
- Add the additional buildpacks and set the APP_BASE config var
heroku buildpacks:add -i 1 -a <SERVER-APP-NAME> https://github.com/lstoll/heroku-buildpack-monorepo
heroku config:set -a <SERVER-APP-NAME> APP_BASE=server
heroku buildpacks:add -i 1 -a <CLIENT-APP-NAME> https://github.com/lstoll/heroku-buildpack-monorepo
heroku config:set -a <CLIENT-APP-NAME> APP_BASE=client
- Deploy
3.0.0-beta.20
The key changes in this release are:
- Context based reporting for Rollbar
- ModelIndexCard fixes
- Better API mocking for tests
3.0.0-beta.19
The key changes in this release are:
3.0.0-beta.18
The key changes in this release are:
- Merged and typed configuration
- Overridable Auth pages
- Improved alert look and feel
- Design page improvements
Merged and typed configuration
If you receive a merge conflict in src/config.js while updating to this version, transfer your settings to src/rhino.config.js and delete src/config.js.
3.0.0-beta.17
The key changes in this release are:
- Default sender email address configurable from the
DEFAULT_EMAIL_SENDER
environment variable - Design System subapp accessible through the side menu or at
/__design
- All base fields globally overridable
- Base skeleton count on limit
3.0.0-beta.16
The key changes in this release are:
- React-Router 6
- New default shell
- Index table inline sorting/multi-sorting and skeleton loading
- Bootstrap 5.3.2
- Improved linting (eslint:recommended, cypress, vitest tests)
- Global/model/attribute scoped overrides for
rhino.config.js
React-Router 6
See https://reactrouter.com/en/main/upgrading/v5
3.0.0-beta.15
The key changes in this release are:
- React 18 with @testing-library/react update
- Remove unused 2.x code
- Handle multiple or no slashes in REACT_APP_API_ROOT_PATH
React 18
May require additional installed project libraries to be upgraded. @testing-library/react
was upgraded and renderHook was moved to the core library instead of a separate package.
Unused 2.x code
ModelFormField and ModelTable were the primary components that were removed. These were replaced by the react-hook-form based ModelField a ModelIndexTable respectively.
Handle multiple or no slashes in REACT_APP_API_ROOT_PATH
Make sure you have REACT_APP_API_ROOT_PATH defined locally in .env and in production
3.0.0-beta.14
The key changes in this release are:
- Rails 7.0.8 and OmniAuth 2.x
- ESLint and prettier updates
- CI and test improvements
ESLint and prettier updates
The ESLint and prettier configurations have been updated to the latest versions. This may result in some linting errors in your code. The easiest way to fix these is to run the following command:
npx eslint --fix --ignore-pattern "__tests__" src
3.0.0-beta.13
The key changes in this release are:
- heroku-22 stack support
- Vite & Vitest for client
- Rails 7.0.7.2
heroku-22
The default Heroku stack heroku-22
is now supported. This is the default stack for new Heroku apps. Server apps need no changes, simply update the stack:
heroku stack:set heroku-22 -a <APP-NAME>
and redeploy.
Client apps need to update the buildpacks.
heroku buildpacks:clear -a <APP-NAME>
heroku buildpacks:add heroku/nodejs -a <APP-NAME>
heroku buildpacks:add heroku-community/nginx -a <APP-NAME>
heroku stack:set heroku-22 -a <APP-NAME>
and redeploy.
Vite & Vitetest
Vite is a new build tool for javascript and typescript and is the default for Rhino 3.0.0-beta.13. It is also used for the new Vitest tool which is a replacement for jest. See the testing guide for more details.
3.0.0-beta.12
The key changes in this release are:
- React Query 4
- Rails 7.0.7
React Query 4
Imports
The imports for react query have changed
- import { useQuery } from 'react-query'
- import { ReactQueryDevtools } from 'react-query/devtools'
+ import { useQuery } from '@tanstack/react-query'
+ import { ReactQueryDevtools } from '@tanstack/react-query-devtools'
Run the codemod to update your code:
npx jscodeshift src/ \
--extensions=js,jsx \
--transform=./node_modules/@tanstack/react-query/codemods/v4/replace-import-specifier.js
Query keys
All query keys must be arrays now - the query linter should find most instances of this
The query linter should find most instances of this
Loading indicators
isLoading
behavior has changed for disabled queries - it is better to use isInitialLoading
for loading flags.
Failure to update loading code may result in unpredictable results
3.0.0-beta.11
The key changes in this release are:
- Direct use of ModelField, ModelDisplay for complex layouts
- Bootstrap 5.3
- Rails 7.0.5 and ruby 3.1.4
3.0.0-beta.10
The key changes in this release are:
- More consistent overrides patterns for both local and global overrides in ModelIndex, ModelShow, ModelCreate, ModelEdit
- ModelContext and useModelContext hook to access model context in any view controller
3.0.0-beta.9
The key changes in this release are:
- Reactstrap 9 and Bootstrap 5
- See Reactstrap 9 Migration Guide for more details
3.0.0-beta.8
The key changes in this release are:
- Create and edit controllers for ModelEdit, ModelEditModal, ModelCreate and ModelCreateModal
- Create, Edit, Index and Show Actions overhaul
- Rrepend/append/replace actions
- Use Custom components directly in the actions prop
- Improve access control UI for org mode
- Route path helpers
- getRootPath, getIndexPath, getShowPath, getEditPath, getCreatePath etc
Create and edit controllers
Customized uses of ModelEdit and ModelCreate will need the following changes:
- ModelEdit,
- modelId is now passed to the modal as a prop (instead of resource)
- ModelCreate
- modelId is now passed to the modal as a prop (instead of resource)
- ModelEditModal usage has to be altered
- modelId is now passed to the modal as a prop (instead of resource)
Actions overhaul
Custom actions are not backwards compatible.
- Custom actions in the object style are no longer supported. Something like:
{
name: 'auto',
label: 'Generate Payout',
color: 'warning',
icon: 'gear',
onAction: handleGeneratePayouts
}
should be replace with an <IconButton />
component