Skip to content
This repository has been archived by the owner on Jan 7, 2020. It is now read-only.

Commit

Permalink
chore/version: Version change to v0.9.0 and upgrade safe_app lib to v…
Browse files Browse the repository at this point in the history
…0.8.0 (#256)
  • Loading branch information
bochaco committed Jul 30, 2018
1 parent fe5dc54 commit c5d2ff3
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 15 deletions.
26 changes: 13 additions & 13 deletions CHANGELOG.MD
@@ -1,35 +1,35 @@
# safe_app nodejs Change Log

[Unreleased]
[0.9.0] - 27-7-2018
### Added
- New binding `simulateNetworkDisconnect()` function to simulate a network disconnection event useful for applications testing purposes.
- Support for forcing the use of mock by providing `forceUseMock` boolean to the initialisation options of each safeApp instance, i.e. each safeApp instance can either use mock or prod libs independently.
- Ability to pass user metadata when inserting and updating file in MutableData
- Prevents download of `system_uri` if `NODE_ENV=mobile_prod` or `NODE_ENV=mobile_dev`

### Changed
- Upgrade safe_app native library to commit `a9b4c05` and adapt to minor API changes
- Upgrade safe_app native library to v0.8.0
- Removing `forEach` binding function from the MutableData entries API as it was removed from safe_app lib
- Adding `listEntries` binding function to the MutableData entries API which returns an array with all entries
- Moves asynchronous app initialisation opertions out of SAFEApp constructor and into class method
- Moves asynchronous app initialisation operations out of SAFEApp constructor and into class method
- The `initializeApp` function is now asynchronous
- `webFetch` may receive multipart range requests
- Changes fromAuthURI to fromAuthUri
- Changes loginFromURI to loginFromUri
- Uses delete instead of remove as entry mutation action
- Changes initializeApp to use an s instead of z
- `webFetch` can now receive multipart range requests
- Changed `fromAuthURI` to `fromAuthUri`
- Changed `loginFromURI` to `loginFromUri`
- Uses `delete` instead of `remove` as entry mutation action
- Changed `initializeApp` to use an `s` instead of `z`
- Network state callback invoked from `INIT` to `CONNECTED` states
- Simplifies test helper functions
- Upgrades deps_downloader to v0.2.0
- Isolates webFetch helper functions for testing
- Simplified test helper functions
- Upgraded deps_downloader to v0.2.0
- Isolated `webFetch` helper functions for testing
- Unregistered client connection event triggers network status update

### Fixed
- Fixed some tests which were giving false positive results
- Adds missing error handling for app_reconnect to prevent false connection status
- Added missing error handling for `app_reconnect` to prevent false connection status

## SAFE libraries Dependencies
- safe_app: a9b4c05
- safe_app: v0.8.0
- system_uri: v0.4.0
- deps_downloader: v0.2.0

Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "@maidsafe/safe-node-app",
"version": "0.8.1",
"version": "0.9.0",
"description": "A safe_app library for Node.js",
"license": "(MIT OR BSD-3-Clause)",
"main": "src/index.js",
Expand Down Expand Up @@ -72,7 +72,7 @@
},
"safe_app": {
"mirror": "https://s3.eu-west-2.amazonaws.com/safe-client-libs",
"version": "a9b4c05",
"version": "0.8.0",
"targetDir": "src/native/prod",
"filename": "safe_app",
"filePattern": "^.*\\.(dll|so|dylib)$",
Expand Down

0 comments on commit c5d2ff3

Please sign in to comment.