Skip to content

Commit c3b1f25

Browse files
authored
Merge pull request #1227 from aeternity/release/v8.3.0
Release 8.2.1
2 parents 849c875 + a246910 commit c3b1f25

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
### [8.2.1](https://github.com/aeternity/aepp-sdk-js/compare/v8.2.0...v8.2.1) (2021-06-21)
6+
7+
8+
### Bug Fixes
9+
10+
* swagger file of aeternity's compiler ([4001e64](https://github.com/aeternity/aepp-sdk-js/commit/4001e64f8ce90d234c9cd971e05f6b386b54221d))
11+
* swagger file of aeternity's latest compiler ([a1caa03](https://github.com/aeternity/aepp-sdk-js/commit/a1caa0374e3a0be84644d7b8dd846d70193e8242))
12+
513
## [8.2.0](https://github.com/aeternity/aepp-sdk-js/compare/8.1.0...v8.2.0) (2021-06-17)
614

715

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@aeternity/aepp-sdk",
3-
"version": "8.2.0",
3+
"version": "8.2.1",
44
"description": "SDK for the æternity blockchain",
55
"main": "dist/aepp-sdk.js",
66
"types": "es/index.d.ts",

src/utils/swagger.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,11 @@ export default async (specUrl, { spec, internalUrl, disableBigNumbers, disableCa
4646
spec = spec || await (await fetch(specUrl)).json()
4747
const jsonImp = disableBigNumbers ? JSON : JsonBig
4848

49+
if (['https://compiler.aepps.com', 'https://latest.compiler.aepps.com']
50+
.includes(new URL(specUrl).origin)) {
51+
spec.schemes = ['https']
52+
}
53+
4954
const [external, internal] = await Promise.all([specUrl, internalUrl].map((url) => {
5055
if (!url) return null
5156
return SwaggerClient({

0 commit comments

Comments
 (0)