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

[release] 20240807 #131

Merged
merged 1 commit into from
Aug 7, 2024
Merged
Show file tree
Hide file tree
Changes from all 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
3 changes: 3 additions & 0 deletions .yarn/versions/61f828a2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/common-algorand"
- "@subql/node-algorand"
3 changes: 3 additions & 0 deletions .yarn/versions/8351327d.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/common-algorand"
- "@subql/types-algorand"
3 changes: 3 additions & 0 deletions .yarn/versions/e0683f6d.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
undecided:
- "@subql/node-algorand"
- "@subql/types-algorand"
5 changes: 4 additions & 1 deletion packages/common-algorand/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [4.1.0] - 2024-08-07
### Removed
- `apiKey` option from network config, please use endpoint config and specify the `X-Indexer-API-Token` header instead (#130)

Expand Down Expand Up @@ -99,7 +101,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fixed `assetId` on transaction filter being validated as a string. (#9)

## [1.0.0] - 2022-08-04
[Unreleased]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.0.0...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.1.0...HEAD
[4.1.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/4.0.0...common-algorand/4.1.0
[4.0.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.5.0...common-algorand/4.0.0
[3.5.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.4.0...common-algorand/3.5.0
[3.4.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.3.0...common-algorand/3.4.0
Expand Down
5 changes: 2 additions & 3 deletions packages/common-algorand/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/common-algorand",
"version": "4.0.1-0",
"version": "4.1.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand Down Expand Up @@ -28,6 +28,5 @@
"@types/js-yaml": "^4.0.4",
"@types/pino": "^6.3.12",
"@types/semver": "^7"
},
"stableVersion": "4.0.0"
}
}
8 changes: 7 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [3.13.0] - 2024-08-07
### Changed
- Update dependencies and apply dependent changes (#130)

### Added
- Support for specifying headers for network endpoints (#130)

### Fixed
- Transaction filters not working correctly (#130)

## [3.12.0] - 2024-07-03
### Changed
- Bump version with `@subql/common-algorand`, sync with `@subql/node-core`, add admin module
Expand Down Expand Up @@ -256,7 +261,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Synced latest changes from main repo. (#10)

## [1.6.0] - 2022-08-04
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.12.0...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.13.0...HEAD
[3.13.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.12.0...node-algorand/3.13.0
[3.12.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.3...node-algorand/3.12.0
[3.11.3]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.2...node-algorand/3.11.3
[3.11.2]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.11.0...node-algorand/3.11.2
Expand Down
5 changes: 2 additions & 3 deletions packages/node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/node-algorand",
"version": "3.12.1-0",
"version": "3.13.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand Down Expand Up @@ -52,6 +52,5 @@
"files": [
"/dist",
"/bin"
],
"stableVersion": "3.12.0"
]
}
5 changes: 4 additions & 1 deletion packages/types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [3.5.0] - 2024-08-07
### Changed
- Update dependencies (#130)

Expand Down Expand Up @@ -79,7 +81,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [1.2.1] - 2022-08-04

## [1.2.0] - 2022-08-04
[Unreleased]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.4.0...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.5.0...HEAD
[3.5.0]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.4.0...types-algorand/3.5.0
[3.4.0]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.3.0...types-algorand/3.4.0
[3.3.0]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.2.0...types-algorand/3.3.0
[3.2.0]: https://github.com/subquery/subql-algorand/compare/types-algorand/3.1.2...types-algorand/3.2.0
Expand Down
5 changes: 2 additions & 3 deletions packages/types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@subql/types-algorand",
"version": "3.4.1-0",
"version": "3.5.0",
"description": "",
"homepage": "https://github.com/subquery/subql",
"repository": "github:subquery/subql-algorand",
Expand All @@ -25,6 +25,5 @@
},
"dependencies": {
"@subql/types-core": "^1.0.0"
},
"stableVersion": "3.4.0"
}
}
Loading