Skip to content

Commit 64a89cc

Browse files
committed
Merge branch 'v7.0'
2 parents 3ff852b + ef123ab commit 64a89cc

14 files changed

Lines changed: 9163 additions & 16 deletions

File tree

.github/workflows/continuous-integration.yaml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,6 +351,9 @@ jobs:
351351
if: ${{ github.event_name == 'push' }}
352352
runs-on: ${{ matrix.os }}
353353
needs: [clients_TypeScript]
354+
permissions:
355+
contents: read
356+
id-token: write
354357
strategy:
355358
matrix:
356359
os: [ ubuntu-22.04 ]
@@ -362,7 +365,9 @@ jobs:
362365
- name: 🧰 Setup Node.js
363366
uses: actions/setup-node@v5
364367
with:
365-
node-version: lts/jod
368+
node-version: 24
369+
registry-url: https://registry.npmjs.org
370+
package-manager-cache: false
366371

367372
- name: 📦 Pack
368373
working-directory: clients/TypeScript
@@ -385,7 +390,7 @@ jobs:
385390
with:
386391
package: clients/TypeScript/packages/${{ matrix.package }}/package.json
387392
strategy: upgrade
388-
token: ${{ secrets.NPM_TOKEN }}
393+
access: public
389394

390395
# ██████████ ███████ █████████ █████ ████ ██████████ ███████████
391396
# ░░███░░░░███ ███░░░░░███ ███░░░░░███░░███ ███░ ░░███░░░░░█░░███░░░░░███

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ pre: "<b>6. </b>"
77
math: true
88
---
99

10-
### [7.0.0] - UNRELEASED
10+
### [7.0.0] - 2026-06-20
1111

1212
#### Added
1313

@@ -23,8 +23,18 @@ math: true
2323

2424
- When evaluating transactions, additional utxos provided manually are now preferred over those automatically resolved (allowing to override more easily existing utxos for testing).
2525

26+
- The `treasury` field on transaction was sometimes ommitted when it should've been present; this is now fixed.
27+
2628
- **⚠️ BREAKING-CHANGE ⚠️**: on `ProtocolParameters` and `ProposedProtocolParameters`, the field `maxReferenceScriptsSize` has been renamed to `maxReferenceScriptsSizePerTransaction` to disambiguate it from `maxReferenceScriptsSizePerBlock`.
2729

30+
- **⚠️ BREAKING-CHANGE ⚠️**: transaction object now omits the `validityInterval` and `outputs` fields when they're empty.
31+
32+
- **⚠️ BREAKING-CHANGE ⚠️**: Byron bootstrap witness encoding has changed from a single 64-bytes key payload to a combo key + chain-code.
33+
34+
#### Removed
35+
36+
- **⚠️ BREAKING-CHANGE ⚠️**: transaction submission and evaluation no longer include `shelley`, `allegra` and `mary` parsing hints on errors. Only `alonzo` onwards is included.
37+
2838
---
2939
---
3040

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
| Ogmios | Cardano-node (mainnet, preview, preprod) |
1717
| --- | --- |
18-
| **`v6.15.*`** | **`11.0.1`** |
18+
| **`v7.0.0`** | **`11.0.1`** |
1919
| `v6.14.*` | `10.5.1` |
2020
| `v6.13.*` | `10.1.2`, `10.1.3`, `10.1.4` |
2121
| `v6.12.*` | `10.1.2`, `10.1.3`, `10.1.4` |

clients/TypeScript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cardano-ogmios",
3-
"version": "6.14.0",
3+
"version": "7.0.0",
44
"private": true,
55
"description": "TypeScript monorepo with client libraries for Cardano Ogmios",
66
"engines": {

clients/TypeScript/packages/client/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"name": "@cardano-ogmios/client",
3-
"version": "6.14.0",
3+
"version": "7.0.0",
44
"description": "TypeScript client library for Cardano Ogmios",
55
"engines": {
66
"node": ">=14"
77
},
88
"main": "dist/index.js",
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/cardanosolutions/ogmios.git",
11+
"url": "git+https://github.com/cardanosolutions/ogmios.git",
1212
"directory": "clients/TypeScript/packages/client"
1313
},
14+
"publishConfig": {
15+
"access": "public"
16+
},
1417
"author": "Rhys Bartels-Waller",
1518
"license": "MPL-2.0",
1619
"scripts": {
@@ -47,7 +50,7 @@
4750
"typescript": "^4.2.3"
4851
},
4952
"dependencies": {
50-
"@cardano-ogmios/schema": "6.14.0",
53+
"@cardano-ogmios/schema": "7.0.0",
5154
"@cardanosolutions/json-bigint": "^1.0.1",
5255
"@types/json-bigint": "^1.0.1",
5356
"bech32": "^2.0.0",

clients/TypeScript/packages/repl/package.json

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cardano-ogmios/repl",
3-
"version": "6.14.0",
3+
"version": "7.0.0",
44
"description": "REPL for Cardano Ogmios",
55
"engines": {
66
"node": ">=14"
@@ -9,9 +9,12 @@
99
"main": "dist/index.js",
1010
"repository": {
1111
"type": "git",
12-
"url": "https://github.com/cardanosolutions/ogmios.git",
12+
"url": "git+https://github.com/cardanosolutions/ogmios.git",
1313
"directory": "clients/TypeScript/packages/repl"
1414
},
15+
"publishConfig": {
16+
"access": "public"
17+
},
1518
"author": "Rhys Bartels-Waller",
1619
"license": "MPL-2.0",
1720
"scripts": {
@@ -39,7 +42,7 @@
3942
"typescript": "^4.2.3"
4043
},
4144
"dependencies": {
42-
"@cardano-ogmios/client": "6.14.0",
45+
"@cardano-ogmios/client": "7.0.0",
4346
"yargs-parser": "^20.2.7"
4447
},
4548
"files": [

clients/TypeScript/packages/schema/package.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,19 @@
11
{
22
"name": "@cardano-ogmios/schema",
3-
"version": "6.14.0",
3+
"version": "7.0.0",
44
"description": "Generated TypeScript from the Cardano Ogmios schema",
55
"engines": {
66
"node": ">=14"
77
},
88
"main": "dist/index.js",
99
"repository": {
1010
"type": "git",
11-
"url": "https://github.com/cardanosolutions/ogmios.git",
11+
"url": "git+https://github.com/cardanosolutions/ogmios.git",
1212
"directory": "clients/TypeScript/packages/schema"
1313
},
14+
"publishConfig": {
15+
"access": "public"
16+
},
1417
"author": "Rhys Bartels-Waller",
1518
"license": "MPL-2.0",
1619
"scripts": {

docs/content/api/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "WebSocket API Reference (v6.14.*)"
2+
title = "WebSocket API Reference (v7.0.*)"
33
weight = 4
44
chapter = false
55
pre = "<b>4. </b>"

docs/content/api/v6.14.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
+++
2+
title = "Archive (v6.14.*)"
3+
weight = 984
4+
chapter = false
5+
+++

docs/content/http-api/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
+++
2-
title = "HTTP API Reference (v6.14.*)"
2+
title = "HTTP API Reference (v7.0.*)"
33
weight = 5
44
chapter = false
55
pre = "<b>5. </b>"

0 commit comments

Comments
 (0)