Skip to content

Commit f11b50f

Browse files
committed
feat: 4.27.0 release
New version release with Message Actions API support.
1 parent 3bbd9fd commit f11b50f

File tree

5 files changed

+32
-6
lines changed

5 files changed

+32
-6
lines changed

.pubnub.yml

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
---
22
changelog:
3+
-
4+
changes:
5+
-
6+
text: "Add Message Actions API support which allow to: add, remove and fetch previously added actions"
7+
type: feature
8+
-
9+
text: "Add new arguments to fetch messages function which allow to fetch previously added actions and message metadata"
10+
type: feature
11+
-
12+
text: "Add new handler which can be used to track message actions addition / removal events"
13+
type: feature
14+
date: 2019-10-08
15+
version: v4.27.0
316
-
417
changes:
518
-
@@ -760,4 +773,4 @@ supported-platforms:
760773
- "Ubuntu 14.04 and above"
761774
- "Windows 7, 8, 10"
762775
version: "Pubnub Javascript for Node"
763-
version: "4.26.1"
776+
version: "4.27.0"

CHANGELOG.md

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,17 @@
1-
## [v4.26.1](https://github.com/pubnub/javascript/tree/v4.26.1)
1+
## [v4.27.0](https://github.com/pubnub/javascript/tree/v4.27.0)
2+
September-27-2019
3+
4+
5+
[Full Changelog](https://github.com/pubnub/javascript/compare/v4.26.1...v4.27.0)
6+
7+
8+
9+
- ⭐ Add Message Actions API support which allow to: add, remove and fetch previously added action
10+
- ⭐ Add new arguments to fetch messages function which allow to fetch previously added actions and message metadata
11+
- ⭐ Add new handler which can be used to track message actions addition / removal events
12+
13+
14+
## [v4.26.1](https://github.com/pubnub/javascript/tree/v4.26.1)
215
September-27-2019
316

417

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)
2222

2323

2424

25-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.26.1.min.js
26-
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.26.1.js
25+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.0.min.js
26+
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.0.js

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "pubnub",
3-
"version": "4.26.1",
3+
"version": "4.27.0",
44
"author": "PubNub <[email protected]>",
55
"description": "Publish & Subscribe Real-time Messaging with PubNub",
66
"bin": {},

src/core/components/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ export default class {
296296
}
297297

298298
getVersion(): string {
299-
return '4.26.1';
299+
return '4.27.0';
300300
}
301301

302302
_decideUUID(providedUUID: string): string {

0 commit comments

Comments
 (0)