Releases: build-trust/ockam
Ockam v0.126.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.126.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.126.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.126.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.126.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.126.0
(Documentation, CHANGELOG)ockam_abac 0.59.0
(Documentation, CHANGELOG)ockam_api 0.69.0
(Documentation, CHANGELOG)ockam_app_lib 0.126.0
(Documentation, CHANGELOG)ockam_command 0.126.0
(Documentation, CHANGELOG)ockam_core 0.110.0
(Documentation, CHANGELOG)ockam_executor 0.79.0
(Documentation, CHANGELOG)ockam_identity 0.113.0
(Documentation, CHANGELOG)ockam_multiaddr 0.54.0
(Documentation, CHANGELOG)ockam_node 0.118.0
(Documentation, CHANGELOG)ockam_transport_ble 0.80.0
(Documentation, CHANGELOG)ockam_transport_core 0.83.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.116.0
(Documentation, CHANGELOG)ockam_transport_udp 0.60.0
(Documentation, CHANGELOG)ockam_transport_uds 0.45.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.107.0
(Documentation, CHANGELOG)ockam_vault 0.111.0
(Documentation, CHANGELOG)ockam_vault_aws 0.37.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam
Full Changelog
Ockam v0.125.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.125.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.125.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.125.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/v0.125.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.125.0
(Documentation, CHANGELOG)ockam_abac 0.58.0
(Documentation, CHANGELOG)ockam_api 0.68.0
(Documentation, CHANGELOG)ockam_app_lib 0.125.0
(Documentation, CHANGELOG)ockam_command 0.125.0
(Documentation, CHANGELOG)ockam_identity 0.112.0
(Documentation, CHANGELOG)ockam_node 0.117.0
(Documentation, CHANGELOG)ockam_transport_ble 0.79.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.115.0
(Documentation, CHANGELOG)ockam_transport_udp 0.59.0
(Documentation, CHANGELOG)ockam_transport_uds 0.44.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.106.0
(Documentation, CHANGELOG)ockam_vault 0.110.0
(Documentation, CHANGELOG)ockam_vault_aws 0.36.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam
Full Changelog
Ockam v0.124.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.124.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/0.124.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/0.124.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://ockam-releases.s3.amazonaws.com/0.124.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.124.0
(Documentation, CHANGELOG)ockam_abac 0.57.0
(Documentation, CHANGELOG)ockam_api 0.67.0
(Documentation, CHANGELOG)ockam_app_lib 0.124.0
(Documentation, CHANGELOG)ockam_command 0.124.0
(Documentation, CHANGELOG)ockam_core 0.109.0
(Documentation, CHANGELOG)ockam_executor 0.78.0
(Documentation, CHANGELOG)ockam_identity 0.111.0
(Documentation, CHANGELOG)ockam_multiaddr 0.53.0
(Documentation, CHANGELOG)ockam_node 0.116.0
(Documentation, CHANGELOG)ockam_transport_ble 0.78.0
(Documentation, CHANGELOG)ockam_transport_core 0.82.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.114.0
(Documentation, CHANGELOG)ockam_transport_udp 0.58.0
(Documentation, CHANGELOG)ockam_transport_uds 0.43.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.105.0
(Documentation, CHANGELOG)ockam_vault 0.109.0
(Documentation, CHANGELOG)ockam_vault_aws 0.35.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @andor0
New Contributors
The following people made their very first contribution 🥳
Full Changelog
Ockam v0.123.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.123.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.123.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.123.0
(Documentation, CHANGELOG)ockam_abac 0.56.0
(Documentation, CHANGELOG)ockam_api 0.66.0
(Documentation, CHANGELOG)ockam_app_lib 0.123.0
(Documentation, CHANGELOG)ockam_command 0.123.0
(Documentation, CHANGELOG)ockam_core 0.108.0
(Documentation, CHANGELOG)ockam_executor 0.77.0
(Documentation, CHANGELOG)ockam_identity 0.110.0
(Documentation, CHANGELOG)ockam_multiaddr 0.52.0
(Documentation, CHANGELOG)ockam_node 0.115.0
(Documentation, CHANGELOG)ockam_transport_ble 0.77.0
(Documentation, CHANGELOG)ockam_transport_core 0.81.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.113.0
(Documentation, CHANGELOG)ockam_transport_udp 0.57.0
(Documentation, CHANGELOG)ockam_transport_uds 0.42.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.104.0
(Documentation, CHANGELOG)ockam_vault 0.108.0
(Documentation, CHANGELOG)ockam_vault_aws 0.34.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam
Full Changelog
Ockam v0.122.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.122.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.122.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.122.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.122.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.122.0
(Documentation, CHANGELOG)ockam_abac 0.55.0
(Documentation, CHANGELOG)ockam_api 0.65.0
(Documentation, CHANGELOG)ockam_app_lib 0.122.0
(Documentation, CHANGELOG)ockam_command 0.122.0
(Documentation, CHANGELOG)ockam_core 0.107.0
(Documentation, CHANGELOG)ockam_executor 0.76.0
(Documentation, CHANGELOG)ockam_identity 0.109.0
(Documentation, CHANGELOG)ockam_multiaddr 0.51.0
(Documentation, CHANGELOG)ockam_node 0.114.0
(Documentation, CHANGELOG)ockam_transport_ble 0.76.0
(Documentation, CHANGELOG)ockam_transport_core 0.80.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.112.0
(Documentation, CHANGELOG)ockam_transport_udp 0.56.0
(Documentation, CHANGELOG)ockam_transport_uds 0.41.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.103.0
(Documentation, CHANGELOG)ockam_vault 0.107.0
(Documentation, CHANGELOG)ockam_vault_aws 0.33.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @colin-lyon @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @Wryhder @pradovic
New Contributors
The following people made their very first contribution 🥳
Full Changelog
Ockam v0.121.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.121.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.121.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.121.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.121.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.121.0
(Documentation, CHANGELOG)ockam_abac 0.54.0
(Documentation, CHANGELOG)ockam_api 0.64.0
(Documentation, CHANGELOG)ockam_app_lib 0.121.0
(Documentation, CHANGELOG)ockam_command 0.121.0
(Documentation, CHANGELOG)ockam_core 0.106.0
(Documentation, CHANGELOG)ockam_executor 0.75.0
(Documentation, CHANGELOG)ockam_identity 0.108.0
(Documentation, CHANGELOG)ockam_multiaddr 0.50.0
(Documentation, CHANGELOG)ockam_node 0.113.0
(Documentation, CHANGELOG)ockam_transport_ble 0.75.0
(Documentation, CHANGELOG)ockam_transport_core 0.79.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.111.0
(Documentation, CHANGELOG)ockam_transport_udp 0.55.0
(Documentation, CHANGELOG)ockam_transport_uds 0.40.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.102.0
(Documentation, CHANGELOG)ockam_vault 0.106.0
(Documentation, CHANGELOG)ockam_vault_aws 0.32.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @colin-lyon @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @Wryhder @pradovic
Full Changelog
Ockam v0.120.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.120.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.120.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.120.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.120.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.120.0
(Documentation, CHANGELOG)ockam_abac 0.53.0
(Documentation, CHANGELOG)ockam_api 0.63.0
(Documentation, CHANGELOG)ockam_app_lib 0.120.0
(Documentation, CHANGELOG)ockam_command 0.120.0
(Documentation, CHANGELOG)ockam_core 0.105.0
(Documentation, CHANGELOG)ockam_executor 0.74.0
(Documentation, CHANGELOG)ockam_identity 0.107.0
(Documentation, CHANGELOG)ockam_multiaddr 0.49.0
(Documentation, CHANGELOG)ockam_node 0.112.0
(Documentation, CHANGELOG)ockam_transport_ble 0.74.0
(Documentation, CHANGELOG)ockam_transport_core 0.78.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.110.0
(Documentation, CHANGELOG)ockam_transport_udp 0.54.0
(Documentation, CHANGELOG)ockam_transport_uds 0.39.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.101.0
(Documentation, CHANGELOG)ockam_vault 0.105.0
(Documentation, CHANGELOG)ockam_vault_aws 0.31.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @colin-lyon @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @pradovic
New Contributors
The following people made their very first contribution 🥳
Full Changelog
Ockam v0.119.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.119.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.119.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.119.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.119.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.119.0
(Documentation, CHANGELOG)ockam_abac 0.52.0
(Documentation, CHANGELOG)ockam_api 0.62.0
(Documentation, CHANGELOG)ockam_app_lib 0.119.0
(Documentation, CHANGELOG)ockam_command 0.119.0
(Documentation, CHANGELOG)ockam_core 0.104.0
(Documentation, CHANGELOG)ockam_executor 0.73.0
(Documentation, CHANGELOG)ockam_identity 0.106.0
(Documentation, CHANGELOG)ockam_multiaddr 0.48.0
(Documentation, CHANGELOG)ockam_node 0.111.0
(Documentation, CHANGELOG)ockam_transport_ble 0.73.0
(Documentation, CHANGELOG)ockam_transport_core 0.77.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.109.0
(Documentation, CHANGELOG)ockam_transport_udp 0.53.0
(Documentation, CHANGELOG)ockam_transport_uds 0.38.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.100.0
(Documentation, CHANGELOG)ockam_vault 0.104.0
(Documentation, CHANGELOG)ockam_vault_aws 0.30.0
(Documentation, CHANGELOG)
Ockam v0.118.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.118.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.118.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.118.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.118.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.118.0
(Documentation, CHANGELOG)ockam_abac 0.51.0
(Documentation, CHANGELOG)ockam_api 0.61.0
(Documentation, CHANGELOG)ockam_app_lib 0.118.0
(Documentation, CHANGELOG)ockam_command 0.118.0
(Documentation, CHANGELOG)ockam_core 0.103.0
(Documentation, CHANGELOG)ockam_executor 0.72.0
(Documentation, CHANGELOG)ockam_identity 0.105.0
(Documentation, CHANGELOG)ockam_multiaddr 0.47.0
(Documentation, CHANGELOG)ockam_node 0.110.0
(Documentation, CHANGELOG)ockam_transport_ble 0.72.0
(Documentation, CHANGELOG)ockam_transport_core 0.76.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.108.0
(Documentation, CHANGELOG)ockam_transport_udp 0.52.0
(Documentation, CHANGELOG)ockam_transport_uds 0.37.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.99.0
(Documentation, CHANGELOG)ockam_vault 0.103.0
(Documentation, CHANGELOG)ockam_vault_aws 0.29.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @colin-lyon @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @oguseynov @pradovic
New Contributors
The following people made their very first contribution 🥳
Full Changelog
Ockam v0.117.0
Portals for Mac
Portals for Mac – A macOS app built in Swift that uses the Ockam Rust library to privately share a service on your Mac with anyone, anywhere. The service is shared securely over an end-to-end encrypted and mutually authenticated Ockam Portal. Your friends will have access to it on their localhost! This app is a great example of the kinds of things you can build with Ockam 👉
Install
brew install build-trust/ockam/portals
If you prefer to install the app manually, download and install it using the appropriate dmg file for your Mac:
- If you have an Apple Silicon based Mac, download and install from this dmg file.
- If you have an Intel based Mac, download and install from this dmg file.
Ockam Command
Install
You can also install on Linux and MacOS systems using curl.
curl --proto '=https' --tlsv1.2 -sSfL https://install.command.ockam.io | bash
This will download a precompiled binary and add it to your path.
Homebrew
To install this release using Homebrew:
$ brew install build-trust/ockam/ockam
Docker
To use the Docker OCI package:
docker pull ghcr.io/build-trust/ockam:0.117.0
Precompiled Binaries
# download sha256sums.txt
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.117.0/sha256sums.txt
# download sha256sums.txt.sig
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.117.0/sha256sums.txt.sig
# download our release public key
curl --proto '=https' --tlsv1.2 -sSfL -o ockam.pub \
https://raw.githubusercontent.com/build-trust/ockam/develop/tools/docker/cosign.pub
# verify signatures
cosign verify-blob --key ockam.pub --signature sha256sums.txt.sig sha256sums.txt
# download ockam command binary for your architecture
curl --proto '=https' --tlsv1.2 -sSfL -O \
https://github.com/build-trust/ockam/releases/download/ockam_v0.117.0/ockam.x86_64-unknown-linux-gnu
# verify that the sha256 hash of the downloaded binary is the same as
# the corresponding hash mentioned in sha256sums.txt
cat sha256sums.txt | grep ockam.x86_64-unknown-linux-gnu | sha256sum -c
# rename the download binary and give it permission to execute
mv ockam.x86_64-unknown-linux-gnu ockam
chmod u+x ockam
Rust Crates
To use Ockam as a Rust library, run the following command within your project directory:
cargo add [email protected]
The following crates were published as part of this release:
ockam 0.117.0
(Documentation, CHANGELOG)ockam_abac 0.50.0
(Documentation, CHANGELOG)ockam_api 0.60.0
(Documentation, CHANGELOG)ockam_app_lib 0.117.0
(Documentation, CHANGELOG)ockam_command 0.117.0
(Documentation, CHANGELOG)ockam_core 0.102.0
(Documentation, CHANGELOG)ockam_executor 0.71.0
(Documentation, CHANGELOG)ockam_identity 0.104.0
(Documentation, CHANGELOG)ockam_macros 0.34.0
(Documentation, CHANGELOG)ockam_multiaddr 0.46.0
(Documentation, CHANGELOG)ockam_node 0.109.0
(Documentation, CHANGELOG)ockam_transport_ble 0.71.0
(Documentation, CHANGELOG)ockam_transport_core 0.75.0
(Documentation, CHANGELOG)ockam_transport_tcp 0.107.0
(Documentation, CHANGELOG)ockam_transport_udp 0.51.0
(Documentation, CHANGELOG)ockam_transport_uds 0.36.0
(Documentation, CHANGELOG)ockam_transport_websocket 0.98.0
(Documentation, CHANGELOG)ockam_vault 0.102.0
(Documentation, CHANGELOG)ockam_vault_aws 0.28.0
(Documentation, CHANGELOG)
Contributors
The following people contributed to this release, thank you all 🥳
@adrianbenavides @CEMcNEill @ckhrysze @colin-lyon @davide-baldo @etorreborre @glenngillen @Ippolito72 @mattgreg @metaclips @mrinalwadhwa @nazmulidris @polvorin @SanjoDeundiak @snandam @younes-io