Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f9c729c
[SDK][Typescript] Enhance transaction handling to support bigint for …
flopez7 Jan 21, 2026
c73ac04
chore(deps): bump zustand from 4.5.7 to 5.0.10 (#3742)
dependabot[bot] Jan 22, 2026
b4a1ac8
chore(deps): bump actions/setup-node from 4 to 6 (#3706)
dependabot[bot] Jan 22, 2026
3ec7558
chore(deps-dev): bump solidity-coverage from 0.8.16 to 0.8.17 (#3741)
dependabot[bot] Jan 22, 2026
4384e51
chore(deps): bump i18next from 23.16.8 to 25.7.3 (#3717)
dependabot[bot] Jan 22, 2026
1266578
chore(deps): bump typeorm from 0.3.27 to 0.3.28 (#3720)
dependabot[bot] Jan 22, 2026
39e76d1
[SDK] Enhance transaction handling with wait options (#3744)
flopez7 Jan 23, 2026
25115e7
[HUMAN App] Remove ThirstyFi integration and related components (#3754)
flopez7 Jan 26, 2026
ab55ad0
upgrade Node.js version from 22.14 to 24 (#3752)
flopez7 Jan 26, 2026
00b6d93
chore(deps): bump @nestjs/common from 10.4.20 to 11.1.12 (#3743)
dependabot[bot] Jan 26, 2026
68e4a2f
chore(deps-dev): bump @types/passport from 0.4.7 to 1.0.17 (#3755)
dependabot[bot] Jan 26, 2026
2a2ca9e
chore(deps-dev): bump lint-staged from 15.5.2 to 16.2.7 (#3756)
dependabot[bot] Jan 26, 2026
639215a
chore(deps): bump react-hook-form from 7.66.0 to 7.71.1 (#3757)
dependabot[bot] Jan 26, 2026
f5a4d3f
chore(deps): bump @mui/lab from 5.0.0-alpha.177 to 6.0.0-dev.24042416…
dependabot[bot] Jan 26, 2026
ebfdeca
[Human App Frontend] Fix Staking requirement error and Add link to th…
KirillKirill Jan 26, 2026
523691a
[Human App][Server] enhance TransformEnumInterceptor (#3761)
flopez7 Jan 26, 2026
68da3b1
[SDK] remove SUBGRAPH_API_KEY placeholder and simplify subgraph URL h…
flopez7 Jan 26, 2026
3b5c227
[Human App][Server] register HttpModule with custom paramsSerializer …
flopez7 Jan 26, 2026
889664a
[SDK][Python] Fix failing tests due to unused import (#3774)
flopez7 Feb 4, 2026
b8ee3a7
[CI] add GitHub Actions workflow for creating package releases (#3763)
flopez7 Feb 4, 2026
1d898db
chore(deps): bump express and @types/express (#3766)
dependabot[bot] Feb 9, 2026
5159644
chore(deps): bump vite-plugin-node-polyfills from 0.23.0 to 0.25.0 (#…
dependabot[bot] Feb 10, 2026
305f1bc
chore(deps): bump @mui/x-date-pickers from 7.29.4 to 8.26.0 (#3767)
dependabot[bot] Feb 10, 2026
0bfccb6
chore(deps): bump use-debounce from 10.0.6 to 10.1.0 (#3768)
dependabot[bot] Feb 10, 2026
11a3a09
chore(deps-dev): bump eslint-plugin-prettier from 5.5.4 to 5.5.5 (#3770)
dependabot[bot] Feb 10, 2026
7804e48
chore(deps): bump actions/github-script from 7 to 8 (#3775)
dependabot[bot] Feb 10, 2026
e1cc2ef
chore(deps): bump actions/checkout from 4 to 6 (#3776)
dependabot[bot] Feb 10, 2026
c7f4338
Switch monorepo to npm core package (#3773)
flopez7 Feb 10, 2026
1627c78
Add missing dependencies (#3777)
flopez7 Feb 10, 2026
cb2a6aa
[Subgraph] add indexerHints section with prune option in template.yam…
flopez7 Feb 10, 2026
a6df342
Changeset bump and fix docs readme (#3778)
portuu3 Feb 11, 2026
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: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"changelog": false,
"changelog": "@changesets/changelog-git",
"bumpVersionsWithWorkspaceProtocolOnly": true,
"privatePackages": {
"version": true,
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/cd-deploy-contracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ on:
workflow_dispatch:
inputs:
network:
description: 'network'
description: "network"
required: true
escrowFactory:
description: 'deploy escrow factory'
description: "deploy escrow factory"
required: true

jobs:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn --immutable
run: yarn workspaces focus @human-protocol/core
- name: Build core package
run: yarn workspace @human-protocol/core build
- name: Networks list
Expand Down Expand Up @@ -140,9 +140,7 @@ jobs:
uses: EndBug/add-and-commit@v9
with:
add: "['./packages/core/.openzeppelin']"
message: 'Update upgrade file from CD'
message: "Update upgrade file from CD"
default_author: github_actions
tag_push: '--force'
tag_push: "--force"
github_token: ${{ secrets.GH_TOKEN_CD_CONTRACTS }}


6 changes: 1 addition & 5 deletions .github/workflows/cd-python-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,10 @@ jobs:
run: |
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install JS dependencies
run: yarn install
- name: Build core package
run: yarn workspace @human-protocol/core build
- name: Set up Python
uses: actions/setup-python@v6
with:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/cd-subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ on:
workflow_dispatch:
inputs:
label:
description: 'New version label'
description: "New version label"
required: true
networks:
description: 'Comma-separated list of networks to deploy'
description: "Comma-separated list of networks to deploy"
required: true

jobs:
Expand Down Expand Up @@ -48,10 +48,10 @@ jobs:
echo "::set-output name=continue::$MATCH"
- name: Install dependencies
if: steps.filter_networks.outputs.continue == 'true'
run: yarn install --immutable
- name: Build core package
run: yarn workspaces focus @tools/subgraph
- name: Build packages (scoped)
if: steps.filter_networks.outputs.continue == 'true'
run: yarn workspace @human-protocol/core build
run: yarn workspaces foreach -Rpt --from @tools/subgraph run build
- name: Generate and build Subgraph
if: steps.filter_networks.outputs.continue == 'true'
run: yarn generate && yarn build
Expand All @@ -61,12 +61,12 @@ jobs:
- name: Authenticate & Deploy
if: steps.filter_networks.outputs.continue == 'true'
env:
API_KEY: ${{ secrets.HP_GRAPH_API_KEY }}
NETWORK: ${{ matrix.network.name }}
LABEL: ${{ github.event.inputs.label }}
API_KEY: ${{ secrets.HP_GRAPH_API_KEY }}
NETWORK: ${{ matrix.network.name }}
LABEL: ${{ github.event.inputs.label }}
working-directory: ./packages/sdk/typescript/subgraph
run: |
yarn dlx @graphprotocol/graph-cli@0.71.2 \
auth --studio "$API_KEY"
yarn dlx @graphprotocol/graph-cli@0.71.2 \
deploy --studio ${NETWORK} -l ${LABEL}
deploy --studio ${NETWORK} -l ${LABEL}
6 changes: 3 additions & 3 deletions .github/workflows/ci-test-core.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Protocol check

on:
push:
branches: '**'
branches: "**"
paths:
- 'packages/core/**'
- "packages/core/**"

jobs:
core-test:
Expand All @@ -17,6 +17,6 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
run: yarn workspaces focus @human-protocol/core
- name: Run protocol test
run: yarn workspace @human-protocol/core test
6 changes: 3 additions & 3 deletions .github/workflows/ci-test-cvat-recording-oracle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: CVAT Recording Oracle Tests

on:
push:
branches: '**'
branches: "**"
paths:
- 'packages/examples/cvat/recording-oracle/**'
- 'packages/core/**'
- "packages/examples/cvat/recording-oracle/**"
- "packages/core/**"

jobs:
cvat-exo-test:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-dashboard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Dashboard Check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,8 +19,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/dashboard-server
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/dashboard-server run build
- name: Run dashboard Server test
run: yarn workspace @apps/dashboard-server test
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-faucet-server.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Faucet server check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,9 +19,9 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/faucet-server
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/faucet-server run build
- name: Create .env file
run: cp .env.example .env
working-directory: packages/apps/faucet/server
Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/ci-test-fortune.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Fortune check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,9 +19,9 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/fortune-exchange-oracle-server
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/fortune-exchange-oracle-server run build
- name: Run Exchange Oracle tests
run: yarn workspace @apps/fortune-exchange-oracle-server test

Expand All @@ -35,8 +35,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/fortune-recording-oracle
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/fortune-recording-oracle run build
- name: Run Recording Oracle tests
run: yarn workspace @apps/fortune-recording-oracle test
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-human-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Human App Check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,8 +19,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/human-app-server
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/human-app-server run build
- name: Run Job Human App unit tests
run: yarn workspace @apps/human-app-server test
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-job-launcher.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Job Launcher Check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,8 +19,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/job-launcher-server
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/job-launcher-server run build
- name: Run Job Launcher Server test
run: yarn workspace @apps/job-launcher-server test
12 changes: 6 additions & 6 deletions .github/workflows/ci-test-node-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: Node.js SDK check

on:
push:
branches: '**'
branches: "**"
paths:
- 'packages/core/**'
- 'packages/sdk/typescript/human-protocol-sdk/**'
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"

jobs:
node-sdk-test:
Expand All @@ -18,8 +18,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build core package
run: yarn workspace @human-protocol/core build
run: yarn workspaces focus @human-protocol/sdk
- name: Build packages (scoped)
run: yarn workspaces foreach -Rpt --from @human-protocol/sdk run build
- name: Run Node.js SDK test
run: yarn workspace @human-protocol/sdk test
12 changes: 6 additions & 6 deletions .github/workflows/ci-test-python-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,29 +2,29 @@ name: Python SDK check

on:
push:
branches: '**'
branches: "**"
paths:
- 'packages/core/**'
- 'packages/sdk/python/human-protocol-sdk/**'
- "packages/core/**"
- "packages/sdk/python/human-protocol-sdk/**"

jobs:
python-test:
name: Python Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v4
- uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: yarn
- name: Install core package dependencies
run: yarn install --immutable
run: yarn workspaces focus @human-protocol/core
- name: Build core package
run: yarn workspace @human-protocol/core build
- name: Set up Python 3.10
uses: actions/setup-python@v6
with:
python-version: '3.10'
python-version: "3.10"
- name: Install pipenv
run: pip install pipenv
- name: Python test
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/ci-test-reputation-oracle.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Reputation Oracle Check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/human-protocol-sdk/**"
Expand All @@ -19,8 +19,8 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
- name: Build libs
run: yarn build:libs
run: yarn workspaces focus @apps/reputation-oracle
- name: Build libs (scoped)
run: yarn workspaces foreach -Rpt --from @apps/reputation-oracle run build
- name: Run reputation oracle test
run: yarn workspace @apps/reputation-oracle test
4 changes: 2 additions & 2 deletions .github/workflows/ci-test-subgraph.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Subgraph check

on:
push:
branches: '**'
branches: "**"
paths:
- "packages/core/**"
- "packages/sdk/typescript/subgraph/**"
Expand All @@ -19,7 +19,7 @@ jobs:
node-version-file: .nvmrc
cache: yarn
- name: Install dependencies
run: yarn install --immutable
run: yarn workspaces focus @tools/subgraph
- name: Build core package
run: yarn workspace @human-protocol/core build
- name: Generate manifest for Polygon for tests
Expand Down
Loading
Loading