Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1130 from holochain/release-0.0.7-alpha
Browse files Browse the repository at this point in the history
Release 0.0.7 alpha
  • Loading branch information
philipbeadle committed Mar 19, 2019
2 parents 974dc0d + bd2bf7f commit 3d3e280
Show file tree
Hide file tree
Showing 88 changed files with 1,689 additions and 866 deletions.
16 changes: 8 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,22 @@ jobs:
# is actually unit tests
build:
docker:
- image: holochain/holochain-rust:circle.zz.end
- image: holochain/holochain-rust:latest
resource_class: large
steps:
- checkout
- run: nix-shell --run hc-test

fmt:
docker:
- image: holochain/holochain-rust:circle.zz.end
- image: holochain/holochain-rust:latest
steps:
- checkout
- run: nix-shell --run hc-fmt-check

app-spec-tests:
docker:
- image: holochain/holochain-rust:circle.zz.end
- image: holochain/holochain-rust:latest
resource_class: xlarge
steps:
- checkout
Expand All @@ -43,7 +43,7 @@ jobs:

cli-tests:
docker:
- image: holochain/holochain-rust:circle.zz.end
- image: holochain/holochain-rust:latest
steps:
- checkout

Expand Down Expand Up @@ -93,15 +93,15 @@ jobs:
- checkout
- run: docker login -u $DOCKER_USER -p $DOCKER_PASS
- run: docker pull holochain/holochain-rust:circle.03.warm.tools
- run: docker build -f .circleci/Dockerfile.zz.end -t holochain/holochain-rust:circle.zz.end -t holochain/holochain-rust:develop .
- run: docker build -f .circleci/Dockerfile.zz.end -t holochain/holochain-rust:circle.zz.end -t holochain/holochain-rust:develop -t holochain/holochain-rust:latest .
- run: docker push holochain/holochain-rust:circle.zz.end
- run: docker push holochain/holochain-rust:develop
- run: docker push holochain/holochain-rust:latest

cold.ubuntu.bionic:
docker:
- image: ubuntu:bionic
resource_class: large
resource_class: xlarge
steps:
- checkout
- run: . ./scripts/install/auto.sh
Expand All @@ -110,7 +110,7 @@ jobs:
cold.ubuntu.xenial:
docker:
- image: ubuntu:xenial
resource_class: large
resource_class: xlarge
steps:
- checkout
- run: . ./scripts/install/auto.sh
Expand All @@ -119,7 +119,7 @@ jobs:
cold.debian.stable:
docker:
- image: debian:stable
resource_class: large
resource_class: xlarge
steps:
- checkout
- run: . ./scripts/install/auto.sh
Expand Down
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Added

- Adds the ability to pass in the token and provenance in zome calls for generating the capability request for the call. [PR#1077](https://github.com/holochain/holochain-rust/pull/1077)

### Changed

- Actually instantiate instance when creating through admin interface (the original intent of this PR)
- Use Content-type: application/json for remote signing service HTTP requests
- Check for duplicate IDs during integrity check

### Deprecated

### Removed
Expand Down Expand Up @@ -39,10 +45,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- commit_and_link - Save a line and commit and link in a single function
- Adds a `call` route to the json rpc for the conductor for making zome calls [PR#1090](https://github.com/holochain/holochain-rust/pull/1090). Please note this route deprecates the `instance_id/zome/function` which will be removed in the future
- The `admin/dna/install_from_file` RPC method now takes an optional `expected_hash`, which performs an integrity check of the DNA file before installing it in the conductor [PR#1093](https://github.com/holochain/holochain-rust/pull/1093)
- Adds empty API function definitions to HDK that are only compiled for test targets to enable Rust native unit tests for Zomes [#989](https://github.com/holochain/holochain-rust/pull/989)
- Moves Crud Status tests to app_spec [#1096](https://github.com/holochain/holochain-rust/pull/1096)
- Adds cold build tests + support for debian and ubuntu xenial [#1105](https://github.com/holochain/holochain-rust/pull/1105)


### Fixed
- Validation of link entries gets retried now if base or target of the link were not yet accessible on the validating node. This fixes a bug where links have been invalid due to network timing issues [PR#1054](https://github.com/holochain/holochain-rust/pull/1054)
- Validation of any entry gets retried now if the validation package could not be retrieved from the source [PR#1059](https://github.com/holochain/holochain-rust/pull/1059)
Expand Down
Loading

0 comments on commit 3d3e280

Please sign in to comment.