Skip to content

Commit 797fa67

Browse files
Docs and small fixes before 3.1.0 release (#161)
* Docs and small fixes before 3.1.0 release * Changelog
1 parent a2ea25d commit 797fa67

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,23 @@
99

1010
### Changed
1111

12+
* Triggering reindexing won't lead to dropping the database automatically anymore. `ReindexingRequiredError` is raised instead. `--forbid-reindexing` option has become default.
13+
* `--reindex` option is removed. Use `dipdup schema wipe` instead.
1214
* Values of `dipdup_schema.reindex` field updated to simplify querying database. See [`dipdup.enums.ReindexingReason`](https://github.com/dipdup-net/dipdup-py/blob/master/src/dipdup/enums.py) class for possible values.
1315

1416
### Fixed
1517

1618
* Fixed `ReindexRequiredError` not being raised when running DipDup after reindexing was triggered.
1719
* Fixed index config hash calculation. Hashes of existing indexes in a database will be updated during the first run.
20+
* Fixed issue in `BigMapIndex` causing the partial loss of big map diffs.
21+
* Fixed printing help for CLI commands.
22+
* Fixed merging storage which contains specific nested structures.
1823

1924
### Improved
2025

2126
* Raise `DatabaseConfigurationError` exception when project models are not compatible with GraphQL.
2227
* Another bunch of performance optimizations. Reduced DB pressure, speeded up parallel processing lots of indexes.
28+
* Added initial set of performance benchmarks (run: `./scripts/run_benchmarks.sh`)
2329

2430
## 3.0.4 - 2021-10-04
2531

src/dipdup/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ def init_sentry(config: DipDupConfig) -> None:
8989
)
9090

9191

92-
@click.group(help='Docs: https://docs.dipdup.net')
92+
@click.group(help='Docs: https://docs.dipdup.net', context_settings=dict(max_content_width=120))
9393
@click.version_option(__version__)
9494
@click.option('--config', '-c', type=str, multiple=True, help='Path to dipdup YAML config', default=['dipdup.yml'])
9595
@click.option('--env-file', '-e', type=str, multiple=True, help='Path to .env file', default=[])

0 commit comments

Comments
 (0)