Skip to content

Commit

Permalink
Merge branch 'master' into v6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Sep 1, 2024
2 parents a3ae314 + 706941a commit 67135d7
Show file tree
Hide file tree
Showing 9 changed files with 25 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/network-synchronization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
matrix:
network: [ preview ]
ogmios_version: [ latest ]
ogmios_version: [ v6.6.0 ]
cardano_node_version: [ 9.1.0 ]

runs-on: ubuntu-latest
Expand Down
17 changes: 16 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,21 @@ pre: "<b>6. </b>"
math: true
---


### [6.6.1] - UNRELEASED

#### Added

N/A

#### Changed

- Fix Conway block reporting `"babbage"` era.

#### Removed

N/A

### [6.6.0] - 2024-08-15

#### Added
Expand Down Expand Up @@ -108,7 +123,7 @@ $$
</tr>
<tr>
<td>$[179200; 204800[$</td>
<td>$157.66$</td>
<td>$157.6599552$</td>
</tr>
</tbody>
</table>
Expand Down
4 changes: 0 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,6 @@ services:

ogmios:
image: cardanosolutions/ogmios:latest
build:
context: .
target: ogmios
cache_from: [cardanosolutions/ogmios:latest]
restart: on-failure
command: [
"--host", "0.0.0.0",
Expand Down
4 changes: 2 additions & 2 deletions docs/content/getting-started/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ Clone the git repository from Github:

```console
$ git clone --depth 1 --recursive --shallow-submodules [email protected]:cardanosolutions/ogmios.git
$ cd cardano-ogmios/server
$ cd ogmios/server
```

Then, use cabal to compile the project source code from the `server` directory:
Expand Down Expand Up @@ -155,7 +155,7 @@ Clone the git repository from Github:

```console
$ git clone --depth 1 --recursive --shallow-submodules [email protected]:cardanosolutions/ogmios.git
$ cd cardano-ogmios/clients/TypeScript
$ cd ogmios/clients/TypeScript
```

Then, use Yarn to install dependencies and compile the project source code from the
Expand Down
4 changes: 2 additions & 2 deletions docs/content/getting-started/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,8 @@ Configuration files are available from within the image under `/config` in folde
Alternatively, you may use Docker's [compose](https://docs.docker.com/compose/) to run either Ogmios standalone, or an orchestration of cardano-node and Ogmios talking to each other. Compose is a handy tool to orchestrate multiple services packaged as containers. It works from a compose file which is available in the project repository, get it via:

```console
$ git clone --depth 1 [email protected]:cardanosolutions/ogmios.git
$ cd cardano-ogmios
$ git clone --depth 1 --recursive --shallow-submodules [email protected]:cardanosolutions/ogmios.git
$ cd ogmios
```

Then, starts the components stack using:
Expand Down
2 changes: 1 addition & 1 deletion docs/static/cardano.json
Original file line number Diff line number Diff line change
Expand Up @@ -2724,7 +2724,7 @@
{ "title": "UInt64"
, "type": "integer"
, "minimum": 0
, "maximum": 18446744073709552999
, "maximum": 18446744073709551615
}

, "UtcTime":
Expand Down
2 changes: 1 addition & 1 deletion server/ogmios.cabal

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion server/package.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_config: !include ".hpack.config.yaml"

name: ogmios
version: 6.6.0
version: 0
stability: stable
github: "cardanosolutions/ogmios"
license: MPL-2.0
Expand Down
2 changes: 1 addition & 1 deletion server/src/Ogmios/Data/Json/Conway.hs
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ encodeBlock opts (ShelleyBlock (Ledger.Block blkHeader txs) headerHash) =
encodeObject
( "type" .= encodeText "praos"
<>
"era" .= encodeText "babbage"
"era" .= encodeText "conway"
<>
"id" .= Shelley.encodeShelleyHash headerHash
<>
Expand Down

0 comments on commit 67135d7

Please sign in to comment.