Skip to content

Commit 4ac302d

Browse files
chore(release): 4.0.0 semantic
1 parent 40eee0b commit 4ac302d

File tree

2 files changed

+31
-7
lines changed

2 files changed

+31
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
# [4.0.0](https://github.com/sourcefuse/loopback4-notifications/compare/v3.1.1...v4.0.0) (2022-06-29)
2+
3+
4+
### Bug Fixes
5+
6+
* **provider:** fix import error for aws, pubnub and nodemailer ([#52](https://github.com/sourcefuse/loopback4-notifications/issues/52)) ([40eee0b](https://github.com/sourcefuse/loopback4-notifications/commit/40eee0b85a59e0c3f3b39db8d9e724f644d41967)), closes [#30](https://github.com/sourcefuse/loopback4-notifications/issues/30)
7+
8+
9+
### BREAKING CHANGES
10+
11+
* **provider:** change import path for specific providers
12+
113
## [3.1.1](https://github.com/sourcefuse/loopback4-notifications/compare/v3.1.0...v3.1.1) (2022-06-17)
214

315
# [3.1.0](https://github.com/sourcefuse/loopback4-notifications/compare/v3.0.4...v3.1.0) (2022-05-26)

package.json

Lines changed: 19 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "loopback4-notifications",
3-
"version": "3.1.1",
3+
"version": "4.0.0",
44
"description": "An extension for setting up various notification mechanisms in loopback4 application, vis-a-vis, Push notification, SMS notification, Email notification",
55
"keywords": [
66
"loopback-extension",
@@ -37,12 +37,24 @@
3737
},
3838
"typesVersions": {
3939
"*": {
40-
"nodemailer": ["./dist/providers/email/nodemailer/index.d.ts"],
41-
"ses": ["./dist/providers/email/ses/index.d.ts"],
42-
"fcm": ["./dist/providers/push/fcm/index.d.ts"],
43-
"pubnub": ["./dist/providers/push/pubnub/index.d.ts"],
44-
"socketio": ["./dist/providers/push/socketio/index.d.ts"],
45-
"sns": ["./dist/providers/sms/sns/index.d.ts"]
40+
"nodemailer": [
41+
"./dist/providers/email/nodemailer/index.d.ts"
42+
],
43+
"ses": [
44+
"./dist/providers/email/ses/index.d.ts"
45+
],
46+
"fcm": [
47+
"./dist/providers/push/fcm/index.d.ts"
48+
],
49+
"pubnub": [
50+
"./dist/providers/push/pubnub/index.d.ts"
51+
],
52+
"socketio": [
53+
"./dist/providers/push/socketio/index.d.ts"
54+
],
55+
"sns": [
56+
"./dist/providers/sms/sns/index.d.ts"
57+
]
4658
}
4759
},
4860
"engines": {

0 commit comments

Comments
 (0)