Skip to content

Commit

Permalink
Merge branch 'release/v1.5.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Tschuck committed Dec 3, 2018
2 parents f771a4c + 7464f63 commit c447f3f
Show file tree
Hide file tree
Showing 13 changed files with 701 additions and 366 deletions.
29 changes: 29 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
language: node_js

sudo: required

node_js:
- "8.11.3"

env:
- CXX=g++-4.8

addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- build-essential
- g++-4.8

before_install:
- export CXX="g++-4.8"
- npm install -g npm@latest
- npm install -g ganache-cli truffle

install:
- npm install

script:
- ganache-cli -f https://testcore.evan.network -l 0x3938700 -q &
- npm run test
22 changes: 22 additions & 0 deletions VERSIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,31 @@
### Fixes
### Deprecations


## Version 1.5.0
### Features
- add description to claims
- add `addClaimWithMetadata` function to claims for setting claim and metadata at the same time
- add creation block data to claim information
- claims are not overwritten anymore, but a new claim is created per set call
- add description setting (on central claims ENS domain)
- add description resolval to get function

### Deprecations
- claims are no longer updateable, a new claim is created for every `setClaim` transaction


## Version 1.4.0
### Features
- adjust claims service to be ERC725/ERC735 compliant
- add `loadActiveClaims` and `setActiveClaims` function to profile to handle users active claims


## Version 1.3.1
### Fixes
- fix `Profile.exists` check, that threw if profile contract cannot be found


## Version 1.3.0
### Features
- add `getKeyHistory` to `sharings` to retrieve all keys for an account and a section
Expand All @@ -25,18 +41,21 @@
### Fixes
- fix `ipld` deleting issue, that occurred when deleting linked nodes in linked subtrees


## Version 1.2.2
### Fixes
- move require(`@evan.network/smart-contracts-core`) within `createDefaultRuntime` to capsuled scope, to be able to require it only in backend scope
- fix window checks on node environments
- fix initailization of aesblob with dfs
- fix rights and roles 0x0 encoding


## Version 1.2.1
### Fixes
- replace `interruptStep = 200` with `interruptStep = 2000` to fix old / mobile browser breaking by calling to many setTimeouts
- add `AesBlob` to index export and runtime


## Version 1.2.0
### Features
- add `NameResolver` class, that extends DBCPs version with `claimAddress` that allows to claim domains from a fifs registrar node
Expand All @@ -48,6 +67,7 @@
- fix contract references in service contract calls
- fix decryption issues in service contracts


## Version 1.1.0
### Features
- add support for wallet/proxy contracts (current implementation allows n wallet owner with a required confirmation count of 1, to allow grouping of accounts)
Expand Down Expand Up @@ -99,10 +119,12 @@
- add support for multi-sharings to `Sharings` module
- add multi-sharing support to `ServiceContract` module


## Version 1.0.0
- DBCP update
- Fix web3 reconnect
- Add iframe support for dapps


## Version 0.9.0
- initial version and release candidate for 1.0.0
4 changes: 2 additions & 2 deletions docs/dbcp.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"files": [
"index.html"
],
"origin": "QmSKEjXs9HYfRKGngE17ocmM9xkLTG7pJPjRY7ov9zFLrZ",
"origin": "QmZFeqCHKMBJoNQafQu8V6yx91EK1Eak4P6WsvAM16ar4G",
"primaryColor": "#1a68b7",
"secondaryColor": "#eaeaea",
"type": "library"
Expand All @@ -32,7 +32,7 @@
],
"version": "1.0.0",
"versions": {
"1.0.0": "QmYgfeYRmYLhzKr7e2CJRjcKaMMaPWBT8Czhbeze49Zf7Y"
"1.0.0": "QmRSeSip8XHaxCSC6rnKgrmVdtKPyicJvpx7q1daNqGxnL"
},
"dbcpVersion": 1
}
Expand Down
Loading

0 comments on commit c447f3f

Please sign in to comment.