Skip to content

Commit

Permalink
Releasing v4.28.0
Browse files Browse the repository at this point in the history
  • Loading branch information
client-engineering-bot committed Jun 3, 2020
1 parent 446e869 commit b5a1792
Show file tree
Hide file tree
Showing 98 changed files with 9,321 additions and 1,822 deletions.
2 changes: 2 additions & 0 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
"comments": false,
"plugins": [
"@babel/plugin-proposal-class-properties",
"@babel/plugin-proposal-optional-chaining",
"@babel/plugin-proposal-nullish-coalescing-operator",
"@babel/plugin-transform-flow-strip-types",
"@babel/plugin-transform-modules-commonjs",
"add-module-exports"
Expand Down
20 changes: 20 additions & 0 deletions .eslintrc.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,28 @@
extends: airbnb/base

parser: babel-eslint

plugins:
- mocha
- flowtype

ignorePatterns:
- "flow-typed/**/*"
- "test/**/*"

globals:
"$Shape": readonly
"$Diff": readonly

overrides:
- files: test/**/*
globals:
"expect": readonly
env:
mocha: true
rules:
no-unused-expressions: 0

rules:
mocha/no-exclusive-tests: 2
flowtype/require-valid-file-annotation: 2
Expand Down
7 changes: 2 additions & 5 deletions .flowconfig
Original file line number Diff line number Diff line change
@@ -1,12 +1,9 @@
[ignore]
.*/test/.*
.*/node_modules/nock/node_modules/changelog/examples/node.json

[include]
.*/src/.*

[libs]
./core/src/flow_interfaces.js
./flow-typed

[options]
esproposal.class_static_fields=enable
esproposal.optional_chaining=enable
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,8 @@ javascript.iml
*.json-e
upload/*
coverage/
.nyc_output/
.idea
*.iml
dist/web/stats.json
dist/titanium/stats.json

deployment_keys
deployment_keys-private
deployment_keys.tar

.travis/README.md
.travis/scripts
5 changes: 5 additions & 0 deletions .mocharc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
spec: test/**/*.test.js
require: test/setup.js
exclude: test/dist/*.js
timeout: 5000
reporter: spec
5 changes: 5 additions & 0 deletions .nycrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
report-dir: coverage
reporter: ["json", "lcov", "text"]
all: true

include: src/**/*.js
43 changes: 24 additions & 19 deletions .pubnub.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
---
changelog:
-
changes:
-
text: "Added Objects v2 API and deprecated Objects v1 API."
type: feature
date: 2020-06-03
version: v4.28.0
-
changes:
-
Expand Down Expand Up @@ -781,24 +788,22 @@ features:
signal:
- SIGNAL-SEND
objects:
- OBJECTS-GET-USER
- OBJECTS-GET-USERS
- OBJECTS-CREATE-USER
- OBJECTS-UPDATE-USER
- OBJECTS-DELETE-USER
- OBJECTS-GET-SPACE
- OBJECTS-GET-SPACES
- OBJECTS-CREATE-SPACE
- OBJECTS-UPDATE-SPACE
- OBJECTS-DELETE-SPACE
- OBJECTS-GET-MEMBERSHIPS
- OBJECTS-JOIN-SPACES
- OBJECTS-UPDATE-MEMBERSHIPS
- OBJECTS-LEAVE-SPACES
- OBJECTS-GET-MEMBERS
- OBJECTS-ADD-MEMBERS
- OBJECTS-UPDATE-MEMBERS
- OBJECTS-REMOVE-MEMBERS
- OBJECTS-GET-ALL-UUID-METADATA
- OBJECTS-GET-UUID-METADATA
- OBJECTS-SET-UUID-METADATA
- OBJECTS-REMOVE-UUID-METADATA
- OBJECTS-GET-ALL-CHANNEL-METADATA
- OBJECTS-GET-CHANNEL-METADATA
- OBJECTS-SET-CHANNEL-METADATA
- OBJECTS-REMOVE-CHANNEL-METADATA
- OBJECTS-GET-MEMBERSHIPS-V2
- OBJECTS-SET-MEMBERSHIPS-V2
- OBJECTS-REMOVE-MEMBERSHIPS-V2
- OBJECTS-GET-CHANNEL-MEMBERS-V2
- OBJECTS-SET-CHANNEL-MEMBERS-V2
- OBJECTS-REMOVE-CHANNEL-MEMBERS-V2
- OBJECTS-MANAGE-MEMBERSHIPS-V2
- OBJECTS-MANAGE-CHANNEL-MEMBERS-V2
message-actions:
- MESSAGE-ACTIONS-GET
- MESSAGE-ACTIONS-ADD
Expand Down Expand Up @@ -835,4 +840,4 @@ supported-platforms:
- "Ubuntu 14.04 and up"
- "Windows 7 and up"
version: "Pubnub Javascript for Node"
version: "4.27.6"
version: "4.28.0"
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [v4.28.0](https://github.com/pubnub/javascript/releases/tag/v4.28.0)
June-03-2020

[Full Changelog](https://github.com/pubnub/javascript/compare/v4.27.6...v4.28.0)

- 🌟️ Added Objects v2 API and deprecated Objects v1 API.

## [v4.27.6](https://github.com/pubnub/javascript/releases/tag/v4.27.6)
April-24-2020

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ please use the [master_3x](https://github.com/pubnub/javascript/tree/master_3x)



* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.6.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.27.6.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.0.min.js
* https://cdn.pubnub.com/sdk/javascript/pubnub.4.28.0.js
Loading

0 comments on commit b5a1792

Please sign in to comment.