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] 20240125 #98

Merged
merged 5 commits into from
Jan 25, 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
7 changes: 6 additions & 1 deletion packages/common-algorand/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.2.0] - 2024-01-25
### Changed
- bump with @subql/common 3.3.1

## [3.1.0] - 2023-11-01
### Added
- Update `@subql/common` and relevant changes to support endBlock feature (#83)
Expand Down Expand Up @@ -66,7 +70,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/3.1.0...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.2.0...HEAD
[3.2.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.1.0...common-algorand/3.2.0
[3.1.0]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.0.2...common-algorand/3.1.0
[3.0.2]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.0.1...common-algorand/3.0.2
[3.0.1]: https://github.com/subquery/subql-algorand/compare/common-algorand/3.0.0...common-algorand/3.0.1
Expand Down
4 changes: 2 additions & 2 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": "3.1.0",
"version": "3.2.0",
"description": "",
"scripts": {
"build": "rm -rf dist && tsc -b",
Expand All @@ -14,7 +14,7 @@
"main": "dist/index.js",
"license": "GPL-3.0",
"dependencies": {
"@subql/common": "^3.3.0",
"@subql/common": "^3.3.1",
"@subql/types-algorand": "workspace:*",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
Expand Down
10 changes: 9 additions & 1 deletion packages/node/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.5.0] - 2024-01-25
### Changed
- Update @subql/node-core with
- a performance fix when using modulo filters with other datasources
- support for CSV exports
- support for schema migrations

## [3.4.4] - 2023-11-30
### Fixed
- Sync with `node-core` 7.0.2
Expand Down Expand Up @@ -193,7 +200,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.4.4...HEAD
[Unreleased]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.5.0...HEAD
[3.5.0]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.4.4...node-algorand/3.5.0
[3.4.4]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.4.3...node-algorand/3.4.4
[3.4.3]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.4.2...node-algorand/3.4.3
[3.4.2]: https://github.com/subquery/subql-algorand/compare/node-algorand/3.4.1...node-algorand/3.4.2
Expand Down
6 changes: 3 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.4.4",
"version": "3.5.0",
"description": "",
"author": "Ian He",
"license": "GPL-3.0",
Expand All @@ -25,9 +25,9 @@
"@nestjs/event-emitter": "^2.0.0",
"@nestjs/platform-express": "^9.4.0",
"@nestjs/schedule": "^3.0.1",
"@subql/common": "^3.3.0",
"@subql/common": "^3.3.1",
"@subql/common-algorand": "workspace:*",
"@subql/node-core": "^7.0.2",
"@subql/node-core": "^7.1.0",
"@subql/types-algorand": "workspace:*",
"algosdk": "^2.2.0",
"axios": "^1.3.4",
Expand Down
Loading
Loading