Skip to content
This repository has been archived by the owner on Dec 8, 2022. It is now read-only.

Commit

Permalink
Release 1.3.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
ksaric committed Dec 11, 2020
1 parent 8a5b122 commit 4fdb0b8
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,21 @@
# Changelog for smash

## Next version
## 1.3.0

### Story

- [CAD-2169] - Expose API types in a separate package
- [CAD-2177] - smash should work also with pool_ids in Bech32 format
- [CAD-2182] - Pool insertion and ticker insertion should be added into API
- [CAD-2183] - Add/remove admin user via CLI
- [CAD-2323] - Bump up to Allegra Hard Fork

### Bug

- [CAD-2176] - errors endpoint doesn't validate poolId properly
- [CAD-2178] - The retryCount from the /errors endpoint is not correctly incremented
- [CAD-2179] - pool_id delist endpoint is returning 200 for any string (not only for valid pool_ids)
- [CAD-2181] - All queries that don't return anything should return 404

## 1.2.0

Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started/how-to-install-smash.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ cardano-node --genesis-file genesis.json --socket-path node.socket --config conf

You can then run ``smash`` using e.g:
```
SMASHPGPASSFILE=./config/pgpass cabal run smash-exe -- run-app-with-db-sync --config config.yaml --socket-path node.socket --schema-dir schema/
SMASHPGPASSFILE=./config/pgpass cabal run smash-exe -- run-app-with-db-sync --config config.yaml --socket-path node.socket --schema-dir schema/ --state-dir ledger-state/mainnet
```
You can also run a mainnet node using a Nix command:
```
Expand Down
2 changes: 1 addition & 1 deletion doc/getting-started/how-to-run-smash.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ We need to run it using appropriate parameters, since running it requires it to
The socket path is just pointing to a socket that will be used for communication with the node.
The example:
```
SMASHPGPASSFILE=config/pgpass ./smash-local run-app-with-db-sync --config config/testnet-config.yaml --socket-path ../cardano-node/state-node-shelley_testnet/node.socket --schema-dir schema/
SMASHPGPASSFILE=config/pgpass ./smash-local run-app-with-db-sync --config config/testnet-config.yaml --socket-path ../cardano-node/state-node-shelley_testnet/node.socket --schema-dir schema/ --state-dir ledger-state/shelley-testnet
```

After this, the SMASH application should start syncing blocks and picking up pools.
Expand Down
2 changes: 1 addition & 1 deletion smash-servant-types/smash-servant-types.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: smash-servant-types
version: 1.2.0
version: 1.3.0
description:
Shared servant API types for SMASH

Expand Down
2 changes: 1 addition & 1 deletion smash/smash.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 1.12
name: smash
version: 1.2.0
version: 1.3.0
description:
Please see the README on GitHub at <https://github.com/input-output-hk/smash#readme>

Expand Down
2 changes: 1 addition & 1 deletion stack.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
resolver: https://raw.githubusercontent.com/input-output-hk/cardano-haskell/master/snapshots/cardano-1.24.1.yaml
resolver: https://raw.githubusercontent.com/input-output-hk/cardano-haskell/master/snapshots/cardano-1.24.2.yaml
compiler: ghc-8.6.5

#allow-newer: true
Expand Down

0 comments on commit 4fdb0b8

Please sign in to comment.