Skip to content

Commit 8971efa

Browse files
authored
Merge pull request #1200 from golemfactory/beta
Beta
2 parents 090de99 + 69a5c3a commit 8971efa

File tree

5 files changed

+15
-22
lines changed

5 files changed

+15
-22
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ on:
2121
provider_version:
2222
description: "Provider version (e.g., v0.15.0 or pre-rel-v0.15.1)"
2323
required: false
24-
default: "pre-rel-v0.17.1-hoodi3"
24+
default: "v0.17.4"
2525
requestor_version:
2626
description: "Requestor version (e.g., v0.15.0 or pre-rel-v0.15.1)"
2727
required: false
28-
default: "pre-rel-v0.17.1-hoodi3"
28+
default: "v0.17.4"
2929
provider_wasi_version:
3030
description: "Provider WASI version (e.g., v0.2.2)"
3131
required: false
@@ -44,8 +44,8 @@ permissions:
4444
contents: read # for checkout
4545

4646
env:
47-
PROVIDER_VERSION: ${{ github.event.inputs.provider_version || 'pre-rel-v0.17.1-hoodi3' }}
48-
REQUESTOR_VERSION: ${{ github.event.inputs.requestor_version || 'pre-rel-v0.17.1-hoodi3' }}
47+
PROVIDER_VERSION: ${{ github.event.inputs.provider_version || 'v0.17.4' }}
48+
REQUESTOR_VERSION: ${{ github.event.inputs.requestor_version || 'v0.17.4' }}
4949
PROVIDER_WASI_VERSION: ${{ github.event.inputs.provider_wasi_version || 'v0.2.2' }}
5050
PROVIDER_VM_VERSION: ${{ github.event.inputs.provider_vm_version || 'v0.5.3' }}
5151
PAYMENT_NETWORK: ${{ github.event.inputs.payment_network || 'hoodi' }}
@@ -126,6 +126,7 @@ jobs:
126126

127127
release:
128128
name: Release the SDK to NPM and GitHub
129+
needs: [run-e2e-tests, run-examples-tests, run-cypress-tests]
129130
runs-on: ubuntu-latest
130131
permissions:
131132
contents: write # to be able to publish a GitHub release

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@
3636
- [Contributing](#contributing)
3737
- [Discord](#discord)
3838
- [See also](#see-also)
39-
<!-- TOC -->
4039

4140
## Features
4241

@@ -91,8 +90,8 @@ yarn add @golem-sdk/golem-js
9190

9291
## Supported environments
9392

94-
The SDK is designed to work with LTS versions of Node (starting from 18)
95-
and with browsers. The minimum supported `yagna` version is `pre-rel-0.17.1-hoodi3`.
93+
The SDK is designed to work with LTS versions of Node (20.x and above).
94+
and with browsers. The minimum supported `yagna` version is `0.15.2`, but if you want to use the `hoodi` testnet (since `holesky` is no longer available), you should use at least version `0.17.4`.
9695

9796
## Getting started with Golem Network
9897

tests/docker/Provider.Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG UBUNTU_VERSION=22.04
2-
ARG YA_CORE_PROVIDER_VERSION=v0.15.2
2+
ARG YA_CORE_PROVIDER_VERSION=v0.17.4
33
ARG YA_WASI_VERSION=v0.2.2
4-
ARG YA_VM_VERSION=v0.3.0
4+
ARG YA_VM_VERSION=v0.5.3
55

66
FROM ubuntu:${UBUNTU_VERSION}
77
ARG YA_CORE_PROVIDER_VERSION
@@ -38,4 +38,4 @@ RUN apt-get update -q \
3838
&& rm -Rf ${YA_DIR_INSTALLER}
3939
COPY ./configureProvider.py /configureProvider.py
4040

41-
CMD ["bash", "-c", "python3 /configureProvider.py && ya-provider rule set outbound everyone --mode whitelist && ya-provider whitelist add -p ipfs.io && golemsp run --payment-network testnet " ]
41+
CMD ["bash", "-c", "python3 /configureProvider.py && ya-provider rule set outbound everyone --mode whitelist && ya-provider whitelist add -p ipfs.io && golemsp run --no-interactive --payment-network testnet " ]

tests/docker/Requestor.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG UBUNTU_VERSION=22.04
2-
ARG YA_CORE_REQUESTOR_VERSION=v0.15.2
2+
ARG YA_CORE_REQUESTOR_VERSION=v0.17.4
33

44
FROM node:22
55
ARG YA_CORE_REQUESTOR_VERSION

tests/docker/docker-compose.yml

Lines changed: 4 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ services:
2424
- YA_NET_BROADCAST_SIZE=10
2525
- NODE_NAME=provider-1
2626
- SUBNET=${YAGNA_SUBNET:-golemjstest}
27-
- YA_NET_TYPE=central
28-
- CENTRAL_NET_HOST=polygongas.org:7999
29-
27+
- YA_NET_BIND_URL=udp://0.0.0.0:0
3028
provider-2:
3129
build:
3230
context: .
@@ -48,12 +46,10 @@ services:
4846
start_period: 40s
4947
environment:
5048
- MIN_AGREEMENT_EXPIRATION=30s
49+
- YA_NET_BROADCAST_SIZE=10
5150
- NODE_NAME=provider-2
5251
- SUBNET=${YAGNA_SUBNET:-golemjstest}
5352
- YA_NET_BIND_URL=udp://0.0.0.0:0
54-
- YA_NET_TYPE=central
55-
- CENTRAL_NET_HOST=polygongas.org:7999
56-
# - YA_NET_RELAY_HOST=63.34.24.27:7477
5753
requestor:
5854
build:
5955
context: .
@@ -71,11 +67,8 @@ services:
7167
- GSB_URL=tcp://0.0.0.0:7464
7268
- YAGNA_SUBNET=${YAGNA_SUBNET:-golemjstest}
7369
- YAGNA_APPKEY=try_golem
74-
- PAYMENT_NETWORK=${PAYMENT_NETWORK}
75-
- HOODI_MAX_FEE_PER_GAS=51
76-
- YA_NET_TYPE=central
77-
- CENTRAL_NET_HOST=polygongas.org:7999
78-
# - YA_NET_RELAY_HOST=63.34.24.27:7477
70+
- PAYMENT_NETWORK=${PAYMENT_NETWORK:-hoodi}
71+
- YA_NET_BIND_URL=udp://0.0.0.0:0
7972
healthcheck:
8073
test: ["CMD-SHELL", "curl -s -o /dev/null -w '%{http_code}' http://localhost:7465 | grep -q 401"]
8174
interval: 10s

0 commit comments

Comments
 (0)