Skip to content

Commit 35007ca

Browse files
committed
Merge branch 'main' into pr/348
2 parents 694aa72 + 74fabab commit 35007ca

Some content is hidden

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

66 files changed

+5444
-5515
lines changed

.changeset/swift-tomatoes-care.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,10 @@ updates:
77
time: '01:00'
88
timezone: America/Los_Angeles
99
open-pull-requests-limit: 10
10+
- package-ecosystem: 'npm'
11+
directory: 'packages/renderers-js/e2e'
12+
schedule:
13+
interval: daily
14+
time: '01:00'
15+
timezone: America/Los_Angeles
16+
open-pull-requests-limit: 10

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ on:
88
env:
99
# Among other things, opts out of Turborepo telemetry. See https://consoledonottrack.com/.
1010
DO_NOT_TRACK: '1'
11-
NODE_VERSION: 18
11+
NODE_VERSION: 20
1212
CODAMA_VERSION: 1.x
13-
SOLANA_VERSION: 1.18.12
13+
SOLANA_VERSION: 2.1.9
1414

1515
jobs:
1616
lint:

package.json

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,6 @@
11
{
22
"name": "codama-monorepo",
33
"private": true,
4-
"workspaces": [
5-
"packages/*"
6-
],
74
"scripts": {
85
"build": "turbo run build --log-order grouped",
96
"lint": "turbo run lint --log-order grouped",
@@ -13,31 +10,31 @@
1310
},
1411
"devDependencies": {
1512
"@changesets/changelog-github": "^0.5.0",
16-
"@changesets/cli": "^2.27.11",
13+
"@changesets/cli": "^2.27.12",
1714
"@codama/internals": "workspace:*",
18-
"@eslint/js": "^9.18.0",
19-
"@eslint/json": "^0.9.1",
15+
"@eslint/js": "^9.19.0",
16+
"@eslint/json": "^0.10.0",
2017
"@solana/eslint-config-solana": "^4.0.0",
2118
"@solana/prettier-config-solana": "0.0.5",
2219
"@types/node": "^22",
23-
"@typescript-eslint/eslint-plugin": "^8.21.0",
24-
"@typescript-eslint/parser": "^8.21.0",
20+
"@typescript-eslint/eslint-plugin": "^8.22.0",
21+
"@typescript-eslint/parser": "^8.22.0",
2522
"agadoo": "^3.0.0",
26-
"eslint": "^9.18.0",
23+
"eslint": "^9.19.0",
2724
"eslint-plugin-simple-import-sort": "^12.1.1",
2825
"eslint-plugin-sort-keys-fix": "^1.1.2",
2926
"eslint-plugin-typescript-sort-keys": "^3.3.0",
30-
"happy-dom": "^16.7.2",
27+
"happy-dom": "^16.7.3",
3128
"prettier": "^3.4.2",
3229
"rimraf": "6.0.1",
33-
"tsup": "^8.3.5",
34-
"turbo": "^2.3.3",
30+
"tsup": "^8.3.6",
31+
"turbo": "^2.3.4",
3532
"typescript": "^5.7.3",
36-
"vitest": "^2.1.8",
33+
"vitest": "^3.0.4",
3734
"zx": "^8.3.0"
3835
},
3936
"engines": {
40-
"node": ">=18.0.0"
37+
"node": ">=20.0.0"
4138
},
4239
"packageManager": "[email protected]",
4340
"prettier": "@solana/prettier-config-solana"

packages/dynamic-codecs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codama/dynamic-codecs",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Get codecs on demand for Codama IDLs",
55
"exports": {
66
"types": "./dist/types/index.d.ts",

packages/dynamic-parsers/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codama/dynamic-parsers",
3-
"version": "1.1.1",
3+
"version": "1.1.2",
44
"description": "Helpers to dynamically identify and parse accounts and instructions",
55
"exports": {
66
"types": "./dist/types/index.d.ts",

packages/errors/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @codama/errors
22

3+
## 1.2.1
4+
5+
### Patch Changes
6+
7+
- [#390](https://github.com/codama-idl/codama/pull/390) [`92efaa9`](https://github.com/codama-idl/codama/commit/92efaa9261f38de10a1b691c5b25ea0ecf95360b) Thanks [@lithdew](https://github.com/lithdew)! - Support constant program ID's for PDA instruction accounts in Anchor.
8+
9+
- Updated dependencies []:
10+
- @codama/node-types@1.2.1
11+
312
## 1.2.0
413

514
### Patch Changes

packages/errors/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@codama/errors",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "Error management for Codama",
55
"exports": {
66
"types": "./dist/types/index.d.ts",

packages/library/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# codama
22

3+
## 1.2.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`92efaa9`](https://github.com/codama-idl/codama/commit/92efaa9261f38de10a1b691c5b25ea0ecf95360b)]:
8+
- @codama/errors@1.2.1
9+
- @codama/nodes@1.2.1
10+
- @codama/validators@1.2.1
11+
- @codama/visitors@1.2.1
12+
313
## 1.2.0
414

515
### Patch Changes

packages/library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codama",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A Solana framework for building standardised programs",
55
"exports": {
66
"types": "./dist/types/index.d.ts",

0 commit comments

Comments
 (0)