@subql/node-stellar 3.10.2-2 → 3.11.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -1
- package/package.json +4 -5
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
|
5
5
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
|
+
|
|
9
|
+
## [3.11.0] - 2024-05-02
|
|
8
10
|
### Changed
|
|
9
11
|
- Update dependencies and apply changes to match (#62)
|
|
10
12
|
|
|
@@ -123,7 +125,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
123
125
|
- rename `soroban` to `sorobanEndpoint` in network config (#16)
|
|
124
126
|
|
|
125
127
|
## [2.12.0] - 2023-09-12
|
|
126
|
-
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.
|
|
128
|
+
[Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.0...HEAD
|
|
129
|
+
[3.11.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...node-stellar/3.11.0
|
|
127
130
|
[3.10.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...node-stellar/3.10.1
|
|
128
131
|
[3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0
|
|
129
132
|
[3.9.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.0...node-stellar/3.9.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@subql/node-stellar",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.11.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"author": "Ian He",
|
|
6
6
|
"license": "GPL-3.0",
|
|
@@ -25,11 +25,11 @@
|
|
|
25
25
|
"@nestjs/platform-express": "^9.4.0",
|
|
26
26
|
"@nestjs/schedule": "^3.0.1",
|
|
27
27
|
"@subql/common": "^3.5.1",
|
|
28
|
-
"@subql/common-stellar": "3.
|
|
28
|
+
"@subql/common-stellar": "3.5.0",
|
|
29
29
|
"@subql/node-core": "^10.1.0",
|
|
30
30
|
"@subql/testing": "^2.0.0",
|
|
31
31
|
"@subql/types": "^2.2.1-1",
|
|
32
|
-
"@subql/types-stellar": "3.
|
|
32
|
+
"@subql/types-stellar": "3.4.0",
|
|
33
33
|
"lodash": "^4.17.21",
|
|
34
34
|
"reflect-metadata": "^0.1.13",
|
|
35
35
|
"rimraf": "^3.0.2",
|
|
@@ -57,6 +57,5 @@
|
|
|
57
57
|
"files": [
|
|
58
58
|
"/dist",
|
|
59
59
|
"/bin"
|
|
60
|
-
]
|
|
61
|
-
"stableVersion": "3.10.2-1"
|
|
60
|
+
]
|
|
62
61
|
}
|