Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FOR REVIEW ONLY - go-algorand-sdk v1.15.0 #313

Merged
merged 9 commits into from
Apr 28, 2022
Merged
Show file tree
Hide file tree
Changes from 8 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
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,25 @@
# 1.15.0
- Update submodule to 3.5.1 [(#929)](https://github.com/algorand/indexer/pull/929)
algobarb marked this conversation as resolved.
Show resolved Hide resolved
- Fix dev mode by addressing off by one error. [(#920)](https://github.com/algorand/indexer/pull/920)
- Enable validation and acceptance of new parameter configuration [(#912)](https://github.com/algorand/indexer/pull/912)
- Revert imported_tx_per_block change and add new imported_txns gauge. [(#913)](https://github.com/algorand/indexer/pull/913)
- Update e2e_subs docs to revise artifact upload process [(#910)](https://github.com/algorand/indexer/pull/910)
- Document instructions for updating indexer e2e test input [(#906)](https://github.com/algorand/indexer/pull/906)
- Allow viewing of disabled params [(#902)](https://github.com/algorand/indexer/pull/902)
- Fix failing e2e test [(#899)](https://github.com/algorand/indexer/pull/899)
- Monitoring dashboard [(#876)](https://github.com/algorand/indexer/pull/876)
- Disable parameters in rest api [(#892)](https://github.com/algorand/indexer/pull/892)
- Ensure query is canceled after account rewind. [(#893)](https://github.com/algorand/indexer/pull/893)
- Temporarily revert to inline glob search [(#889)](https://github.com/algorand/indexer/pull/889)
- Configurable query parameters runtime data structures. [(#873)](https://github.com/algorand/indexer/pull/873)
- BugfixReturn all inner transactions are returned for logs endpoint. [(#915)](https://github.com/algorand/indexer/pull/915)
- Default to including python goAlgorand e2e tests in buildtestdata.sh [(#888)](https://github.com/algorand/indexer/pull/888)
- Do not mergeIndexer 2.10.0 [(#923)](https://github.com/algorand/indexer/pull/923)
- FeatureAdd support for unlimited assets. [(#900)](https://github.com/algorand/indexer/pull/900)
- Include block-generator and validator as algorandIndexer subcommands. [(#891)](https://github.com/algorand/indexer/pull/891)
- Release preparationFeature flag to disable configurable api parameters. [(#917)](https://github.com/algorand/indexer/pull/917)
- ToolsAdd cli doc generation command. [(#919)](https://github.com/algorand/indexer/pull/919)
- Use fetch/reset instead of pull for goAlgorand in nightly test. [(#885)](https://github.com/algorand/indexer/pull/885)
# 1.14.1
- Avoid client response failure on unknown field (#307)
- Add ParticipationUpdates to BlockHeader (#306)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test:

unit:
go test $(TEST_SOURCES_NO_CUCUMBER)
cd test && go test -timeout 0s --godog.strict=true --godog.format=pretty --godog.tags="@unit.offline,@unit.algod,@unit.indexer,@unit.transactions.keyreg,@unit.rekey,@unit.tealsign,@unit.dryrun,@unit.responses,@unit.applications,@unit.transactions,@unit.indexer.rekey,@unit.responses.messagepack,@unit.responses.231,@unit.responses.messagepack.231,@unit.responses.genesis,@unit.feetest,@unit.indexer.logs,@unit.abijson,@unit.transactions.payment,@unit.atomic_transaction_composer,@unit.responses.unlimited_assets,@unit.indexer.ledger_refactoring,@unit.algod.ledger_refactoring" --test.v .
cd test && go test -timeout 0s --godog.strict=true --godog.format=pretty --godog.tags="@unit.offline,@unit.algod,@unit.indexer,@unit.transactions.keyreg,@unit.rekey,@unit.tealsign,@unit.dryrun,@unit.responses,@unit.applications,@unit.transactions,@unit.indexer.rekey,@unit.responses.messagepack,@unit.responses.231,@unit.responses.messagepack.231,@unit.responses.genesis,@unit.feetest,@unit.indexer.logs,@unit.abijson,@unit.transactions.payment,@unit.atomic_transaction_composer,@unit.responses.unlimited_assets,@unit.indexer.ledger_refactoring,@unit.algod.ledger_refactoring,@unit.dryrun.trace.application" --test.v .

integration:
go test $(TEST_SOURCES_NO_CUCUMBER)
Expand Down
Loading