-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from Adrian-Hirt/ruby_and_rails_updates
Ruby and rails updates
- Loading branch information
Showing
39 changed files
with
295 additions
and
222 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
ruby-3.2.2 | ||
ruby-3.3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,37 @@ | ||
# Changelog | ||
|
||
## 1.10.0 - 2024-01-07 | ||
|
||
### Changed | ||
|
||
* Updated ruby version to `3.3.0` | ||
* Updated gem dependencies | ||
|
||
### Fixed | ||
|
||
* Fixed an exception in the orders show view | ||
|
||
### Added | ||
|
||
* Added ability to set multiple exception recipients | ||
|
||
### Upgrading instructions | ||
|
||
* Rename the env var (e.g. in your `.env` file) `EXCEPTION_NOTIFIER_RECIPIENT` | ||
to `EXCEPTION_NOTIFIER_RECIPIENTS` (now pluralized). You can now set multiple | ||
recipients by setting the variable to a string containing all email addresses, | ||
delimited by a semicolon `;`, e.g. `"[email protected]; [email protected]"` | ||
|
||
## 1.9.7 - 2023-12-07 | ||
|
||
### Fixed | ||
|
||
* Fix a previously introduced bug | ||
|
||
## 1.9.6 - 2023-12-07 | ||
|
||
### Fixed | ||
|
||
* Fix a bug in singleplayer tournament signup | ||
|
||
## 1.9.5 - 2023-10-21 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,9 +41,12 @@ variables set as well: | |
For the exception notification: | ||
|
||
* `ENABLE_EXCEPTION_NOTIFIER` | ||
* `EXCEPTION_NOTIFIER_RECIPIENT` | ||
* `EXCEPTION_NOTIFIER_RECIPIENTS` (optional, only if `ENABLE_EXCEPTION_NOTIFIER` is `true`) | ||
* `EXCEPTION_NOTIFIER_SENDER` (optional) | ||
|
||
If you want to add more than one recipient, you can pass in a string where the recipients | ||
are delimited by a semicolon `;`, e.g. `"[email protected]; [email protected]` | ||
|
||
For the devise mailer | ||
|
||
* `DEVISE_MAIL_SENDER` (optional) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.