Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
5 changes: 5 additions & 0 deletions .changeset/maestro-submit-endpoint.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@evolution-sdk/evolution": patch
---

Fix the Maestro provider host and transaction submission endpoint. Submission posted to `/submit` (or `/turbo/submit` with `turboSubmit`), but Maestro accepts transactions through its Transaction Manager API at `/txmanager` and `/txmanager/turbosubmit`, so every submit returned a 404. The pre-configured `mainnet`, `preprod`, and `preview` constructors also pointed at `*.api.maestro.org`, which does not serve the Cardano API; they now use `https://{network}.gomaestro-api.org/v1`, affecting every request the provider makes, not just submission.
7 changes: 4 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,10 @@ jobs:
cache: 'pnpm'
registry-url: 'https://registry.npmjs.org/'

- name: 📦 Update npm to latest (required for trusted publishing)
run: npm install -g npm@latest
# npm 12 rejects the --no-git-checks flag that changesets passes when publishing
# a pnpm workspace, so pin to the 11.x line (>= 11.5.1 is required for trusted publishing)
- name: 📦 Update npm (required for trusted publishing)
run: npm install -g npm@11

- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
Expand All @@ -49,7 +51,6 @@ jobs:
- name: 🦋 Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1.9.0
continue-on-error: true
with:
# This uses our custom publish script that builds before publishing
publish: pnpm changeset-publish
Expand Down
8 changes: 0 additions & 8 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,5 @@
# docs

## 0.0.54

### Patch Changes

- Updated dependencies [[`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da)]:
- @evolution-sdk/evolution@0.6.0
- @evolution-sdk/devnet@4.0.0

## 0.0.53

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "docs",
"version": "0.0.54",
"version": "0.0.53",
"private": true,
"type": "module",
"scripts": {
Expand Down
7 changes: 0 additions & 7 deletions examples/with-vite-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# evolution-vite-react-example

## 0.1.32

### Patch Changes

- Updated dependencies [[`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da)]:
- @evolution-sdk/evolution@0.6.0

## 0.1.31

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/with-vite-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "evolution-vite-react-example",
"version": "0.1.32",
"version": "0.1.31",
"private": true,
"type": "module",
"scripts": {
Expand Down
7 changes: 0 additions & 7 deletions packages/aiken-uplc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# @evolution-sdk/aiken-uplc

## 3.0.0

### Patch Changes

- Updated dependencies [[`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da)]:
- @evolution-sdk/evolution@0.6.0

## 2.0.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/aiken-uplc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/aiken-uplc",
"version": "3.0.0",
"version": "2.0.11",
"description": "Aiken UPLC evaluator for Evolution SDK with WASM-based local script evaluation",
"type": "module",
"main": "./dist/index.js",
Expand Down
9 changes: 0 additions & 9 deletions packages/evolution-devnet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,5 @@
# @evolution-sdk/devnet

## 4.0.0

### Patch Changes

- Updated dependencies [[`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da)]:
- @evolution-sdk/evolution@0.6.0
- @evolution-sdk/aiken-uplc@3.0.0
- @evolution-sdk/scalus-uplc@3.0.0

## 3.0.12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolution-devnet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/devnet",
"version": "4.0.0",
"version": "3.0.12",
"description": "Local Cardano devnet for testing and development with Docker",
"type": "module",
"main": "./dist/index.js",
Expand Down
6 changes: 0 additions & 6 deletions packages/evolution/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
# @evolution-sdk/evolution

## 0.6.0

### Minor Changes

- [#474](https://github.com/IntersectMBO/evolution-sdk/pull/474) [`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da) Thanks [@hadelive](https://github.com/hadelive)! - Fix the Maestro provider host and transaction submission endpoint. Submission posted to `/submit` (or `/turbo/submit` with `turboSubmit`), but Maestro accepts transactions through its Transaction Manager API at `/txmanager` and `/txmanager/turbosubmit`, so every submit returned a 404. The pre-configured `mainnet`, `preprod`, and `preview` constructors also pointed at `*.api.maestro.org`, which does not serve the Cardano API; they now use `https://{network}.gomaestro-api.org/v1`, affecting every request the provider makes, not just submission.

## 0.5.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/evolution/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/evolution",
"version": "0.6.0",
"version": "0.5.11",
"description": "A modern TypeScript SDK for Cardano blockchain development",
"type": "module",
"main": "./dist/index.js",
Expand Down
7 changes: 0 additions & 7 deletions packages/scalus-uplc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
# @evolution-sdk/scalus-uplc

## 3.0.0

### Patch Changes

- Updated dependencies [[`9e45103`](https://github.com/IntersectMBO/evolution-sdk/commit/9e451039688818c4beb7395eb500daf04b8d65da)]:
- @evolution-sdk/evolution@0.6.0

## 2.0.11

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/scalus-uplc/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@evolution-sdk/scalus-uplc",
"version": "3.0.0",
"version": "2.0.11",
"description": "Scalus UPLC evaluator adapter for Evolution SDK",
"type": "module",
"main": "./dist/index.js",
Expand Down