File tree 6 files changed +44
-16
lines changed
6 files changed +44
-16
lines changed Original file line number Diff line number Diff line change @@ -133,3 +133,4 @@ commands:
133
133
command : |
134
134
set -e
135
135
npm ci
136
+ npm install chromedriver@latest
Original file line number Diff line number Diff line change 9
9
required : true
10
10
type : string
11
11
pre_release_version :
12
- description : " Pre-Release version, e.g. 'beta.1'"
12
+ description : " (Optional) Pre-Release version, e.g. 'beta.1'. Used mainly to support consensus release on betanet. "
13
13
required : false
14
14
type : string
15
15
Original file line number Diff line number Diff line change
1
+ # v2.5.0
2
+
3
+ <!-- Release notes generated using configuration in .github/release.yml at release/v2.5.0 -->
4
+
5
+ ## What's Changed
6
+
7
+ ### Bugfixes
8
+
9
+ - bug-fix: include currency-greater-than param for 0 value by @shiqizng in https://github.com/algorand/js-algorand-sdk/pull/807
10
+
11
+ ### New Features
12
+
13
+ - Simulation: Execution trace (PC/Stack/Scratch) support by @ahangsu in https://github.com/algorand/js-algorand-sdk/pull/803
14
+
15
+ ### Enhancements
16
+
17
+ - fetch: Add Cloudflare Workers support (cross-fetch v4) by @spencercap in https://github.com/algorand/js-algorand-sdk/pull/794
18
+ - logging: Add rn warning and logging by @Eric-Warehime in https://github.com/algorand/js-algorand-sdk/pull/798
19
+ - CICD: Update Chromedriver version and CI orb by @algochoi in https://github.com/algorand/js-algorand-sdk/pull/802
20
+ - CICD: Update chromedriver in package.json to 116+ by @algochoi in https://github.com/algorand/js-algorand-sdk/pull/811
21
+
22
+ ## New Contributors
23
+
24
+ - @spencercap made their first contribution in https://github.com/algorand/js-algorand-sdk/pull/794
25
+
26
+ ** Full Changelog** : https://github.com/algorand/js-algorand-sdk/compare/v2.4.0...v2.5.0
27
+
1
28
# v2.4.0
2
29
3
30
## What's Changed
Original file line number Diff line number Diff line change @@ -20,8 +20,8 @@ Include a minified browser bundle directly in your HTML like so:
20
20
21
21
``` html
22
22
<script
23
- src =" https://unpkg.com/algosdk@v2.4 .0/dist/browser/algosdk.min.js"
24
- integrity =" sha384-vb9VngcgEwkDszQ4wPAsk/oiOfBcbEjNG+Icx9erSJMLZCDPNp0ncx22oBM+8Xji "
23
+ src =" https://unpkg.com/algosdk@v2.5 .0/dist/browser/algosdk.min.js"
24
+ integrity =" sha384-6PTPyb/CJ0CVqEu9Ff7ss4fpdAI0H9DgjQ1y0ftafqNMTC0I9sJvkSu1rHuWT5vf "
25
25
crossorigin =" anonymous"
26
26
></script >
27
27
```
30
30
31
31
``` html
32
32
<script
33
- src =" https://cdn.jsdelivr.net/npm/algosdk@v2.4 .0/dist/browser/algosdk.min.js"
34
- integrity =" sha384-vb9VngcgEwkDszQ4wPAsk/oiOfBcbEjNG+Icx9erSJMLZCDPNp0ncx22oBM+8Xji "
33
+ src =" https://cdn.jsdelivr.net/npm/algosdk@v2.5 .0/dist/browser/algosdk.min.js"
34
+ integrity =" sha384-6PTPyb/CJ0CVqEu9Ff7ss4fpdAI0H9DgjQ1y0ftafqNMTC0I9sJvkSu1rHuWT5vf "
35
35
crossorigin =" anonymous"
36
36
></script >
37
37
```
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " algosdk" ,
3
- "version" : " 2.4 .0" ,
3
+ "version" : " 2.5 .0" ,
4
4
"description" : " The official JavaScript SDK for Algorand" ,
5
5
"main" : " dist/cjs/index.js" ,
6
6
"module" : " dist/esm/index.js" ,
37
37
"@typescript-eslint/eslint-plugin" : " ^4.26.1" ,
38
38
"@typescript-eslint/parser" : " ^4.26.1" ,
39
39
"assert" : " ^2.0.0" ,
40
- "chromedriver" : " ^114 .0.0" ,
40
+ "chromedriver" : " ^116 .0.0" ,
41
41
"concurrently" : " ^6.2.0" ,
42
42
"cucumber" : " ^5.1.0" ,
43
43
"es-abstract" : " ^1.18.3" ,
You can’t perform that action at this time.
0 commit comments