Skip to content

Commit 2e99570

Browse files
committed
Merge branch 'master' into thlorenz/committor
* master: release: v0.1.7 (#409) Feat: simpler gasless implementation (#406) perf: run ensure accounts concurrently feat: account hydration on background task (#407) Revert "feat: Cleaner gasless implementation" (#405) feat: Cleaner gasless implementation (#360) fix: cleanup slots on non-fresh ledger (#404) release: v0.1.5 (#403) fix: properly init geyser plugin for rpc and use valid dummy Library (#402) release: v0.1.4 (#401) fix: remove grpc plugin altogether from geyser manager (#400) Patch tests from failing on subscription due to rate limits (#386)
2 parents 10bdf51 + 82a2993 commit 2e99570

Some content is hidden

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

48 files changed

+2636
-2230
lines changed

.github/packages/npm-package/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@magicblock-labs/ephemeral-validator",
3-
"version": "0.1.3",
3+
"version": "0.1.7",
44
"description": "MagicBlock Ephemeral Validator",
55
"homepage": "https://github.com/magicblock-labs/ephemeral-validator#readme",
66
"bugs": {
@@ -27,11 +27,11 @@
2727
"typescript": "^4.9.4"
2828
},
2929
"optionalDependencies": {
30-
"@magicblock-labs/ephemeral-validator-darwin-arm64": "0.1.3",
31-
"@magicblock-labs/ephemeral-validator-darwin-x64": "0.1.3",
32-
"@magicblock-labs/ephemeral-validator-linux-arm64": "0.1.3",
33-
"@magicblock-labs/ephemeral-validator-linux-x64": "0.1.3",
34-
"@magicblock-labs/ephemeral-validator-windows-x64": "0.1.3"
30+
"@magicblock-labs/ephemeral-validator-darwin-arm64": "0.1.7",
31+
"@magicblock-labs/ephemeral-validator-darwin-x64": "0.1.7",
32+
"@magicblock-labs/ephemeral-validator-linux-arm64": "0.1.7",
33+
"@magicblock-labs/ephemeral-validator-linux-x64": "0.1.7",
34+
"@magicblock-labs/ephemeral-validator-windows-x64": "0.1.7"
3535
},
3636
"publishConfig": {
3737
"access": "public"

.github/packages/npm-package/package.json.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@magicblock-labs/${node_pkg}",
33
"description": "Ephemeral Validator (${node_pkg})",
4-
"version": "0.1.3",
4+
"version": "0.1.7",
55
"repository": {
66
"type": "git",
77
"url": "git+https://github.com/magicblock-labs/ephemeral-validator.git"

.github/workflows/ci-fmt.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
push:
33
branches: [master]
44
pull_request:
5-
branches: ["*"]
65
types: [opened, reopened, synchronize, ready_for_review]
76

87
name: Run CI - Format

.github/workflows/ci-lint.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
push:
33
branches: [master]
44
pull_request:
5-
branches: ["*"]
65
types: [opened, reopened, synchronize, ready_for_review]
76

87
name: Run CI - Lint

.github/workflows/ci-test-integration.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
push:
33
branches: [master]
44
pull_request:
5-
branches: ["*"]
65
types: [opened, reopened, synchronize, ready_for_review]
76

87
name: Run CI - Integration Tests

.github/workflows/ci-test-unit.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ on:
22
push:
33
branches: [master]
44
pull_request:
5-
branches: ["*"]
65
types: [opened, reopened, synchronize, ready_for_review]
76

87
name: Run CI - Unit Tests

0 commit comments

Comments
 (0)