Skip to content

Commit e084dd5

Browse files
authored
Merge branch 'master' into release-please--branches--master--components--synapse-react
2 parents 8292dce + 4040dd0 commit e084dd5

5 files changed

Lines changed: 55 additions & 3 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
22
"packages/synapse-sdk": "0.40.1",
3-
"packages/synapse-core": "0.3.2",
3+
"packages/synapse-core": "0.3.3",
44
"packages/synapse-react": "0.2.3"
55
}

.github/workflows/demo.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: demo
2+
on:
3+
push:
4+
branches:
5+
- master
6+
paths:
7+
- "apps/synapse-playground/**"
8+
- .github/workflows/demo.yml
9+
workflow_dispatch:
10+
workflow_call:
11+
permissions:
12+
contents: read
13+
concurrency:
14+
group: demo
15+
cancel-in-progress: false
16+
jobs:
17+
publish:
18+
runs-on: ubuntu-latest
19+
if: github.ref_name == 'master'
20+
steps:
21+
- uses: actions/checkout@v6
22+
- uses: pnpm/action-setup@v4
23+
- uses: actions/setup-node@v6
24+
with:
25+
node-version: lts/*
26+
- run: pnpm install
27+
- run: pnpm run build
28+
- run: pnpm -r --filter synapse-playground run build
29+
- run: pnpx wrangler deploy --cwd synapse-playground --env production
30+
env:
31+
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
32+
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}

.github/workflows/docs.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,15 @@ jobs:
2020
- run: pnpm install
2121
- run: pnpm run build
2222
- run: pnpm -r --filter docs run build
23-
- run: pnpx wrangler deploy --cwd docs --env production
23+
- name: Deploy docs
24+
run: pnpx wrangler deploy --cwd docs --env production
2425
env:
2526
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
2627
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
28+
- name: Upload Wrangler logs
29+
if: failure()
30+
uses: actions/upload-artifact@v4
31+
with:
32+
name: wrangler-logs
33+
path: ~/.config/.wrangler/logs/*.log
34+
if-no-files-found: ignore

packages/synapse-core/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [0.3.3](https://github.com/FilOzone/synapse-sdk/compare/synapse-core-v0.3.2...synapse-core-v0.3.3) (2026-03-30)
4+
5+
6+
### Bug Fixes
7+
8+
* remove unused storage cost calculation utility and export zod schemas ([1fd793b](https://github.com/FilOzone/synapse-sdk/commit/1fd793b9449e9c24387bed2905abe7899290920e))
9+
10+
11+
### Chores
12+
13+
* update biome and fix issues ([f5e8abd](https://github.com/FilOzone/synapse-sdk/commit/f5e8abd4b006e4818717d16f1ede49cb80a2fc3f))
14+
315
## [0.3.2](https://github.com/FilOzone/synapse-sdk/compare/synapse-core-v0.3.1...synapse-core-v0.3.2) (2026-03-30)
416

517

packages/synapse-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@filoz/synapse-core",
3-
"version": "0.3.2",
3+
"version": "0.3.3",
44
"description": "JavaScript Standard Library for Filecoin Onchain Cloud",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)