Skip to content

Commit

Permalink
PubNub SDK v3.1.0 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
client-engineering-bot committed Feb 15, 2021
1 parent a9e78f1 commit 72f011d
Show file tree
Hide file tree
Showing 174 changed files with 2,529 additions and 946 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,9 @@ build/
# Scratchpad
scratchpad.dart

# pubspec.lock
pubspec.lock

# test_coverage generated files
coverage
.test_coverage.dart
Expand Down
23 changes: 19 additions & 4 deletions .pubnub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,25 @@ changelog:
-
changes:
-
text: "Fixes a problem with doc generation."
text: "Adds signature generation and Objects v2 for PAM Grant call."
type: feature
-
text: "Refactors networking module to use native dart:io."
type: feature
-
text: "Fixes few typos and a bug with BatchHistory meta param."
type: bug
-
text: "Fixes an issue with default params for HereNow call."
type: bug
-
text: "Fixes an issue with encoding of uri query parameters."
type: bug
-
text: "Fixes message decryption in subscribe loop."
type: bug
date: Oct 12, 20
version: v3.0.2
date: Feb 12, 21
version: v3.1.0
-
changes:
-
Expand Down Expand Up @@ -336,4 +351,4 @@ supported-platforms:
platforms:
- "Dart SDK >=2.6.0 <3.0.0"
version: "PubNub Dart SDK"
version: "3.0.2"
version: "3.1.0"
46 changes: 33 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,39 @@ dist: xenial
os: linux
dart: stable

cache:
directories:
- $HOME/.pub-cache

addons:
apt:
packages:
- lib32stdc++6

env:
jobs:
- PKG=pubnub
- PKG=pubnub_flutter FLUTTER=true
global:
- FLUTTER_PATH="/tmp/flutter"

install:
- |
if [[ $FLUTTER = "true" ]]; then
git clone https://github.com/flutter/flutter.git -b stable "$FLUTTER_PATH"
export PATH="$PATH:$FLUTTER_PATH/bin"
fi
- pub global activate derry 1.1.1

before_script:
- cd "$TRAVIS_BUILD_DIR/$PKG"
- if ! [[ $FLUTTER = "true" ]]; then pub get; else flutter pub get; fi

stages:
- name: "test"
if: |
tag IS blank
- name: Validate
- name: Test
if: tag IS blank

jobs:
include:
- stage: "test"
script: pub run test
- stage: Validate
name: Analyzer
script: dartanalyzer --fatal-warnings lib
- name: Formatter
script: dartfmt -n --set-exit-if-changed lib
script:
- "derry validate analysis"
- "derry validate formatting"
- "derry test default"
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
## [v3.0.2](https://github.com/pubnub/dart/releases/tag/v3.0.2)
October 12 2020
## [v3.1.0](https://github.com/pubnub/dart/releases/tag/v3.1.0)
February 12 2021

[Full Changelog](https://github.com/pubnub/dart/compare/v3.0.1...v3.0.2)
[Full Changelog](https://github.com/pubnub/dart/compare/v3.0.2...v3.1.0)

- 🐛 Fixes a problem with doc generation.
- 🌟️ Adds signature generation and Objects v2 for PAM Grant call.
- 🌟️ Refactors networking module to use native dart:io.
- 🐛 Fixes few typos and a bug with BatchHistory meta param. Addresses the following PRs from [@vikmind](https://github.com/vikmind): [#24](https://github.com/pubnub/dart/pull/24).
- 🐛 Fixes an issue with default params for HereNow call. Fixed the following issues reported by [@royibernthal](https://github.com/royibernthal): [#26](https://github.com/pubnub/dart/issues/26).
- 🐛 Fixes an issue with encoding of uri query parameters. Fixed the following issues reported by [@vikmind](https://github.com/vikmind): [#25](https://github.com/pubnub/dart/issues/25).
- 🐛 Fixes message decryption in subscribe loop.

## [v3.0.0](https://github.com/pubnub/dart/releases/tag/v3.0.0)
October 8 2020
Expand Down
32 changes: 0 additions & 32 deletions lib/src/core/net/request_handler.dart

This file was deleted.

54 changes: 0 additions & 54 deletions lib/src/dx/_utils/default_flow.dart

This file was deleted.

21 changes: 0 additions & 21 deletions lib/src/dx/channel/message.dart

This file was deleted.

39 changes: 0 additions & 39 deletions lib/src/net/net.dart

This file was deleted.

109 changes: 0 additions & 109 deletions lib/src/net/request_handler.dart

This file was deleted.

Loading

0 comments on commit 72f011d

Please sign in to comment.