Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Holochain 0.4.0 dev.8 #503

Open
wants to merge 40 commits into
base: dev
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
1e9862b
chore: Update holochain & deno to latest
fayeed May 28, 2024
b2685f0
chore: Update holochain & deno to latest
fayeed May 31, 2024
4df5cbc
chore: Update holochain & deno to latest
fayeed Jun 5, 2024
b794f4a
chore: Update serde dependency to version 1.0.198
fayeed Jun 5, 2024
6d77980
chore: Update dependencies and extensions for rust-executor
fayeed Jun 6, 2024
92bac1d
chore: Update chrono dependency to version 0.4.38
fayeed Jun 6, 2024
ec3dfd2
chore: Update agent_service extension in rust-executor
fayeed Jun 6, 2024
e3bbedb
chore: Update holochain_service to allow any origin for app interface
fayeed Jun 6, 2024
416ce47
chore: Update holochain_service to allow any origin for app interface
fayeed Jun 6, 2024
fe581e7
chore: Update deno_core to use JsRuntime instead of v8::Global for Sm…
fayeed Jun 6, 2024
b7d6c74
chore: Update dependencies and extensions for rust-executor
fayeed Jun 8, 2024
6accd57
chore: Update entanglement_service_extension.js to use synchronous fu…
fayeed Jun 8, 2024
b54c224
chore: Refactor SmartGlobalVariableFuture to improve code readability…
fayeed Jun 8, 2024
561f5c9
chore: Update esm_entry_point in holochain_service_extension.rs
fayeed Jun 8, 2024
d56b922
chore: Update holochain_service to use tokio_stream::StreamMap for si…
fayeed Jun 8, 2024
983b4b0
chore: Update delete_entanglement_proof function name to delete_entan…
fayeed Jun 11, 2024
9ea8287
chore: adding agent infos in holochain_service because it would break…
fayeed Jun 11, 2024
b804013
Merge branch 'dev' into holochain-0.3.1-rc.0
lucksus Jun 12, 2024
584f671
WIP: update Holochain signal streams after app install
lucksus Jun 12, 2024
ce85fc1
Update cargo.lock files
lucksus Jun 12, 2024
a94d65d
Update CI Dockerfile to use Rust 1.78
lucksus Jun 13, 2024
5267177
Just await next item in stream map to multiplex holochain app signals
lucksus Jun 13, 2024
93f91a7
chore: Remove the use of SmartGlobalVariableFuture
fayeed Jun 24, 2024
db25363
Fix awaiting of JS execution by using .with_event_loop_future() in as…
lucksus Jun 26, 2024
fb7b7b5
chore: Update JS module loading in Rust executor
fayeed Jun 27, 2024
032986b
chore: Refactor SmartGlobalVariableFuture to use generics for value type
fayeed Jul 1, 2024
329a90a
Fix borrow-checker errors
lucksus Jul 1, 2024
78daaa2
chore: Update ExceptionType enum values to use uppercase snake case
fayeed Jul 2, 2024
0ba7676
chore: Update local language persistence to handle missing meta file
fayeed Jul 2, 2024
d016e95
Updated bootstrap seed with new language builds
lucksus Jul 2, 2024
c892eaa
Merge branch 'dev' into holochain-0.3.1-rc.0
fayeed Jul 2, 2024
853a155
Merge branch 'holochain-0.3.1-rc.0' of https://github.com/coasys/ad4m…
fayeed Jul 2, 2024
ff30342
chore: Update JS module loading in Rust executor
fayeed Jul 5, 2024
7ed970d
chore: Comment out logging of DHT status in HolochainService constructor
fayeed Jul 5, 2024
ddbe9ee
chore: Remove logging of DHT status in HolochainService constructor
fayeed Jul 12, 2024
0a8e0e1
chore: Update dependencies for HolochainService and Rust executor
fayeed Jul 22, 2024
54132c4
chore: Update dependencies for HolochainService and Rust executor
fayeed Jul 24, 2024
14fe094
chore: Update dependencies for HolochainService and Rust executor
fayeed Jul 24, 2024
f055e96
chore: Update zip dependency to use new repository URL
fayeed Jul 24, 2024
2e86ba4
chore: Update deno_runtime dependency to latest version
fayeed Jul 24, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .circleci/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ RUN echo 'export PATH="/usr/local/bin:$PATH"' >> $HOME/.bashrc
# Install Rust
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
RUN echo 'export PATH="$HOME/.cargo/bin:$PATH"' >> /home/circleci/.bashrc
RUN ~/.cargo/bin/rustup install 1.78
RUN ~/.cargo/bin/rustup default 1.78
RUN ~/.cargo/bin/rustup target add wasm32-unknown-unknown

# Install Deno
Expand Down
Loading