@subql/node-stellar 3.10.2-2 → 3.11.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +10 -1
  2. package/package.json +5 -6
package/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@ 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
+
10
+ ## [3.11.1] - 2024-05-02
11
+ ### Fixed
12
+ - Sandbox Uint8Array and missing pg dep issue
13
+
14
+ ## [3.11.0] - 2024-05-02
8
15
  ### Changed
9
16
  - Update dependencies and apply changes to match (#62)
10
17
 
@@ -123,7 +130,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
123
130
  - rename `soroban` to `sorobanEndpoint` in network config (#16)
124
131
 
125
132
  ## [2.12.0] - 2023-09-12
126
- [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...HEAD
133
+ [Unreleased]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.1...HEAD
134
+ [3.11.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.11.0...node-stellar/3.11.1
135
+ [3.11.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.1...node-stellar/3.11.0
127
136
  [3.10.1]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.10.0...node-stellar/3.10.1
128
137
  [3.10.0]: https://github.com/subquery/subql-stellar/compare/node-stellar/3.9.1...node-stellar/3.10.0
129
138
  [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.10.2-2",
3
+ "version": "3.11.1",
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.4.2-0",
29
- "@subql/node-core": "^10.1.0",
28
+ "@subql/common-stellar": "3.5.0",
29
+ "@subql/node-core": "^10.1.1",
30
30
  "@subql/testing": "^2.0.0",
31
31
  "@subql/types": "^2.2.1-1",
32
- "@subql/types-stellar": "3.3.2-1",
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
  }