Skip to content

Commit aac044a

Browse files
Merge branch 'master' into dargon789-master
2 parents aaf7bb2 + f806807 commit aac044a

51 files changed

Lines changed: 1592 additions & 681 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/claude.yml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
1+
name: Claude Code
2+
3+
on:
4+
issue_comment:
5+
types: [created]
6+
pull_request_review_comment:
7+
types: [created]
8+
issues:
9+
types: [opened, assigned]
10+
pull_request_review:
11+
types: [submitted]
12+
13+
jobs:
14+
claude:
15+
if: |
16+
(github.event_name == 'issue_comment' && contains(github.event.comment.body, '@claude')) ||
17+
(github.event_name == 'pull_request_review_comment' && contains(github.event.comment.body, '@claude')) ||
18+
(github.event_name == 'pull_request_review' && contains(github.event.review.body, '@claude')) ||
19+
(github.event_name == 'issues' && (contains(github.event.issue.body, '@claude') || contains(github.event.issue.title, '@claude')))
20+
runs-on: ubuntu-latest
21+
permissions:
22+
contents: read
23+
pull-requests: read
24+
issues: read
25+
id-token: write
26+
actions: read # Required for Claude to read CI results on PRs
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v4
30+
with:
31+
fetch-depth: 1
32+
33+
- name: Run Claude Code
34+
id: claude
35+
uses: anthropics/claude-code-action@v1
36+
with:
37+
anthropic_api_key: ${{ secrets.ANTHROPIC_API_KEY_GITHUB_ACTIONS }}
38+
39+
# This is an optional setting that allows Claude to read CI results on PRs
40+
additional_permissions: |
41+
actions: read
42+
43+
# Optional: Give a custom prompt to Claude. If this is not specified, Claude will perform the instructions specified in the comment that tagged it.
44+
# prompt: 'Update the pull request description to include a summary of changes.'
45+
46+
# Optional: Add claude_args to customize behavior and configuration
47+
# See https://github.com/anthropics/claude-code-action/blob/main/docs/usage.md
48+
# or https://code.claude.com/docs/en/cli-reference for available options
49+
# claude_args: '--allowed-tools Bash(gh pr:*)'

extras/docs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@repo/ui": "workspace:^",
16-
"next": "^15.5.14",
16+
"next": "^15.5.16",
1717
"react": "^19.2.3",
1818
"react-dom": "^19.2.3"
1919
},
@@ -24,6 +24,6 @@
2424
"@types/react": "^19.2.7",
2525
"@types/react-dom": "^19.2.3",
2626
"eslint": "^9.39.2",
27-
"typescript": "^5.9.3"
27+
"typescript": "^6.0.3"
2828
}
2929
}

extras/docs/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
}
88
]
99
},
10-
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", "next.config.js", ".next/types/**/*.ts"],
10+
"include": [
11+
"**/*.ts",
12+
"**/*.tsx",
13+
"../../repo/typescript-config/next-css-side-effect.d.ts",
14+
"next-env.d.ts",
15+
"next.config.js",
16+
".next/types/**/*.ts"
17+
],
1118
"exclude": ["node_modules"]
1219
}

extras/web/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
},
1414
"dependencies": {
1515
"@repo/ui": "workspace:^",
16-
"next": "^15.5.14",
16+
"next": "^15.5.16",
1717
"react": "^19.2.3",
1818
"react-dom": "^19.2.3"
1919
},
@@ -24,6 +24,6 @@
2424
"@types/react": "^19.2.7",
2525
"@types/react-dom": "^19.2.3",
2626
"eslint": "^9.39.2",
27-
"typescript": "^5.9.3"
27+
"typescript": "^6.0.3"
2828
}
2929
}

extras/web/tsconfig.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,13 @@
77
}
88
]
99
},
10-
"include": ["**/*.ts", "**/*.tsx", "next-env.d.ts", "next.config.js", ".next/types/**/*.ts"],
10+
"include": [
11+
"**/*.ts",
12+
"**/*.tsx",
13+
"../../repo/typescript-config/next-css-side-effect.d.ts",
14+
"next-env.d.ts",
15+
"next.config.js",
16+
".next/types/**/*.ts"
17+
],
1118
"exclude": ["node_modules"]
1219
}

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,19 +21,19 @@
2121
},
2222
"devDependencies": {
2323
"@changesets/cli": "^2.29.8",
24-
"lefthook": "^2.1.1",
25-
"prettier": "^3.8.1",
24+
"lefthook": "^2.1.6",
25+
"prettier": "^3.8.3",
2626
"rimraf": "^6.1.3",
27-
"syncpack": "^14.0.0",
28-
"turbo": "^2.8.10",
29-
"typescript": "^5.9.3"
27+
"syncpack": "^14.3.1",
28+
"turbo": "^2.9.8",
29+
"typescript": "^6.0.3"
3030
},
3131
"pnpm": {
3232
"overrides": {
3333
"ox": "^0.9.17"
3434
}
3535
},
36-
"packageManager": "pnpm@10.24.0",
36+
"packageManager": "pnpm@10.33.4",
3737
"engines": {
3838
"node": ">=18"
3939
},

packages/services/api/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @0xsequence/api
22

3+
## 3.0.10
4+
5+
### Patch Changes
6+
7+
- Minor network updates, relayer interface
8+
9+
## 3.0.9
10+
11+
### Patch Changes
12+
13+
- Fee options fixes
14+
15+
## 3.0.8
16+
17+
### Patch Changes
18+
19+
- Bug fix for relayer fee options handling
20+
21+
## 3.0.7
22+
23+
### Patch Changes
24+
25+
- Minor bug fixes
26+
27+
## 3.0.6
28+
29+
### Patch Changes
30+
31+
- userdata upgrade, arweave support
32+
333
## 3.0.5
434

535
### Patch Changes

packages/services/api/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@0xsequence/api",
3-
"version": "3.0.5",
3+
"version": "3.0.10",
44
"description": "api sub-package for Sequence",
55
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/api",
66
"author": "Sequence Platforms ULC",
@@ -26,6 +26,6 @@
2626
"@repo/typescript-config": "workspace:^",
2727
"@types/node": "^25.3.0",
2828
"@repo/eslint-config": "workspace:^",
29-
"typescript": "^5.9.3"
29+
"typescript": "^6.0.3"
3030
}
3131
}

packages/services/builder/CHANGELOG.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# @0xsequence/builder
22

3+
## 3.0.10
4+
5+
### Patch Changes
6+
7+
- Minor network updates, relayer interface
8+
9+
## 3.0.9
10+
11+
### Patch Changes
12+
13+
- Fee options fixes
14+
15+
## 3.0.8
16+
17+
### Patch Changes
18+
19+
- Bug fix for relayer fee options handling
20+
21+
## 3.0.7
22+
23+
### Patch Changes
24+
25+
- Minor bug fixes
26+
27+
## 3.0.6
28+
29+
### Patch Changes
30+
31+
- userdata upgrade, arweave support
32+
333
## 3.0.5
434

535
### Patch Changes

packages/services/builder/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@0xsequence/builder",
3-
"version": "3.0.5",
3+
"version": "3.0.10",
44
"description": "builder sub-package for Sequence",
55
"repository": "https://github.com/0xsequence/sequence.js/tree/master/packages/services/builder",
66
"author": "Sequence Platforms ULC",
@@ -26,6 +26,6 @@
2626
"@repo/eslint-config": "workspace:^",
2727
"@repo/typescript-config": "workspace:^",
2828
"@types/node": "^25.3.0",
29-
"typescript": "^5.9.3"
29+
"typescript": "^6.0.3"
3030
}
3131
}

0 commit comments

Comments
 (0)