Skip to content

Commit

Permalink
chore: release v1.0.7
Browse files Browse the repository at this point in the history
Make sure adapter is not crashing on stop in some edge cases
Add Sentry for crash reporting with js-controller >=3.x
  • Loading branch information
Apollon77 committed Jun 11, 2020
1 parent e2439f1 commit 3a606e4
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 5 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,12 @@

Send emails from ioBroker.

The whole job makes [nodemailer](https://github.com/nodemailer/nodemailer) and ioBroker just use it.
The adapter uses [nodemailer](https://github.com/nodemailer/nodemailer) to provide the functionality.

**This Adapter requires nodejs 6.x or higher!!**

**This adapter uses Sentry libraries to automatically report exceptions and code errors to the developers.** For more details and for information how to disable the error reporting see [Sentry-Plugin Documentation](https://github.com/ioBroker/plugin-sentry#plugin-sentry)! Sentry reporting is used starting with js-controller 3.0.

To use Gmail you may need to configure "Allow Less Secure Apps" in your Gmail account unless you are using 2FA in which
case you would have to create an Application Specific password. You also may need to unlock your account with "Allow access to your Google account" to use SMTP.

Expand Down Expand Up @@ -99,6 +101,10 @@ To send email from other adapter use **adapter.sendTo** function.
For other services see documentation of **Nodemailer**: `[https://github.com/nodemailer/nodemailer](https://github.com/nodemailer/nodemailer)`

## Changelog
### 1.0.7 (2020-06-11)
* (Apollon77) Make sure adapter is not crashing on stop in some edge cases
* (Apollon77) Add Sentry for crash reporting with js-controller >=3.x

### 1.0.6 (2019-12-29)
* (bluefox) Compact mode supported

Expand Down
16 changes: 14 additions & 2 deletions io-package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,20 @@
{
"common": {
"name": "email",
"version": "1.0.6",
"version": "1.0.7",
"news": {
"1.0.7": {
"en": "Make sure adapter is not crashing on stop in some edge cases\nAdd Sentry for crash reporting with js-controller >=3.x",
"de": "Stellen Sie sicher, dass der Adapter in einigen Randfällen beim Anhalten nicht abstürzt\nFügen Sie Sentry für die Absturzberichterstattung mit js-controller> = 3.x hinzu",
"ru": "Убедитесь, что адаптер не дает сбой при остановке в некоторых крайних случаях\nДобавьте Sentry для отчетов о сбоях с помощью js-controller> = 3.x",
"pt": "Verifique se o adaptador não está travando em alguns casos extremos\nAdicione o Sentry para relatórios de falhas com js-controller> = 3.x",
"nl": "Zorg ervoor dat de adapter in sommige randgevallen niet crasht bij het stoppen\nVoeg Sentry toe voor crashrapportage met js-controller> = 3.x",
"fr": "Assurez-vous que l'adaptateur ne plante pas à l'arrêt dans certains cas de bord\nAjouter Sentry pour les rapports de plantage avec js-controller> = 3.x",
"it": "Assicurarsi che l'adattatore non si blocchi in modo anomalo in alcuni casi limite\nAggiungi Sentry per la segnalazione di arresti anomali con js-controller> = 3.x",
"es": "Asegúrese de que el adaptador no se bloquee al detenerse en algunos casos extremos\nAgregue Sentry para informes de fallas con js-controller> = 3.x",
"pl": "Upewnij się, że adapter nie ulega awarii w przypadku zatrzymania w niektórych przypadkach krawędzi\nDodaj Sentry do raportowania awarii za pomocą js-controller> = 3.x",
"zh-cn": "确保适配器在某些情况下不会在停止时崩溃\n添加Sentry以使用js-controller> = 3.x进行崩溃报告"
},
"1.0.6": {
"en": "Compact mode supported",
"de": "Kompaktmodus unterstützt",
Expand Down Expand Up @@ -186,4 +198,4 @@
}
},
"objects": []
}
}
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "iobroker.email",
"description": "Send e-mails from ioBroker",
"version": "1.0.6",
"version": "1.0.7",
"author": "bluefox <dogafox@gmail.com>",
"contributors": [
"bluefox <dogafox@gmail.com>",
Expand Down

0 comments on commit 3a606e4

Please sign in to comment.