[ANN] rodauth-select-account 0.0.4 released

rodauth-select-account 0.0.4 has been released.

Project page: https://gitlab.com/honeyryderchuck/rodauth-select-account
<https://gitlab.com/honeyryderchuck/rodauth-oauth>
Example application:
https://gitlab.com/honeyryderchuck/rodauth-select-account/-/blob/master/examples/goggles.rb

rodauth-select-account is an extension feature to rodauth, that allows
users to manage multiple accounts in the same session. The functionality is
similar to the google top-right login idget, which allows one to switch
across multiple google accounts.

# as simple as
rodauth do
  enable :select_account, :login, :logout ....
end

It provides the following features:

* Add Account flow, including default forms;
* Select Account flow, including forms;
* "require_select_account", a method to ensure a user selects an account
before performing an action;

These were the updates since the last release:

## 0.0.4

Cookies used for selected account are now secure by default (httponly on,
secure if request is TLS-enabled);

Cookie path is now "/" by default.

## 0.0.3

bugfix: fixing calls to the view helpers when in multi-phase login mode.

## 0.0.2

bugfix: added missing form templates.