Skip to content

Commit 159b564

Browse files
committed
Merge branch 'release/v1.14.0'
2 parents 97021ab + ffe2d3c commit 159b564

File tree

11 files changed

+815
-461
lines changed

11 files changed

+815
-461
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
# v1.14.0
2+
3+
## Added
4+
5+
- Add stateproof keyreg field (#463)
6+
7+
## Changed
8+
9+
- Implement C2C tests (#498)
10+
- Moving from travis to circleci (#507)
11+
- Add installation instructions for vite users (#512)
12+
- Update langspec for TEAL 6 (#518)
13+
- Docs for `lookupAssetByID` and `lookupAccountTransactions` (#516)
14+
- Make FromObject parameter IntelliSense human readable (#528)
15+
- Bump url-parse from 1.5.1 to 1.5.8 (#529)
16+
17+
## Fixed
18+
19+
- Use HTTP request format arg to determine response type (#532)
20+
- Update chromedriver (#535)
21+
122
# v1.14.0-beta.1
223

324
## Added

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ Include a minified browser bundle directly in your HTML like so:
2222

2323
```html
2424
<script
25-
src="https://unpkg.com/[email protected]-beta.1/dist/browser/algosdk.min.js"
26-
integrity="sha384-GDxzwLVcHrypyA8CcFGLiOne9xqCWuLz9Bfay2fNICEkCuYBUvkC5g0bnY5aeoZC"
25+
src="https://unpkg.com/[email protected]/dist/browser/algosdk.min.js"
26+
integrity="sha384-ByDr5J6amcNY9qTbvonF4W+4BiDtYexo0oxc91Jedc9D/OPncbWAQzj2otxLa5cF"
2727
crossorigin="anonymous"
2828
></script>
2929
```
@@ -32,8 +32,8 @@ or
3232

3333
```html
3434
<script
35-
src="https://cdn.jsdelivr.net/npm/[email protected]-beta.1/dist/browser/algosdk.min.js"
36-
integrity="sha384-GDxzwLVcHrypyA8CcFGLiOne9xqCWuLz9Bfay2fNICEkCuYBUvkC5g0bnY5aeoZC"
35+
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/browser/algosdk.min.js"
36+
integrity="sha384-ByDr5J6amcNY9qTbvonF4W+4BiDtYexo0oxc91Jedc9D/OPncbWAQzj2otxLa5cF"
3737
crossorigin="anonymous"
3838
></script>
3939
```

package-lock.json

Lines changed: 63 additions & 63 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algosdk",
3-
"version": "1.14.0-beta.1",
3+
"version": "1.14.0",
44
"description": "The official JavaScript SDK for Algorand",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -36,7 +36,7 @@
3636
"@typescript-eslint/eslint-plugin": "^4.26.1",
3737
"@typescript-eslint/parser": "^4.26.1",
3838
"assert": "^2.0.0",
39-
"chromedriver": "^97.0.0",
39+
"chromedriver": "^99.0.0",
4040
"concurrently": "^6.2.0",
4141
"coveralls": "^3.1.0",
4242
"cucumber": "^5.1.0",
@@ -59,7 +59,7 @@
5959
"source-map-loader": "^2.0.2",
6060
"ts-loader": "^8.3.0",
6161
"ts-node": "^10.0.0",
62-
"typedoc": "^0.22.10",
62+
"typedoc": "^0.22.11",
6363
"typedoc-plugin-missing-exports": "^0.22.6",
6464
"typedoc-plugin-rename-defaults": "^0.4.0",
6565
"typescript": "^4.2.3",

0 commit comments

Comments
 (0)