Skip to content

Commit 2fb824c

Browse files
committed
Merge branch 'develop' into 3.0.0
2 parents df77157 + 7469c41 commit 2fb824c

File tree

6 files changed

+44
-16
lines changed

6 files changed

+44
-16
lines changed

.circleci/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,3 +133,4 @@ commands:
133133
command: |
134134
set -e
135135
npm ci
136+
npm install chromedriver@latest

.github/workflows/create-release-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
required: true
1010
type: string
1111
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."
1313
required: false
1414
type: string
1515

CHANGELOG.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,30 @@
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+
128
# v2.4.0
229

330
## What's Changed

README.md

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

2121
```html
2222
<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"
2525
crossorigin="anonymous"
2626
></script>
2727
```
@@ -30,8 +30,8 @@ or
3030

3131
```html
3232
<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"
3535
crossorigin="anonymous"
3636
></script>
3737
```

package-lock.json

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

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "algosdk",
3-
"version": "2.4.0",
3+
"version": "2.5.0",
44
"description": "The official JavaScript SDK for Algorand",
55
"main": "dist/cjs/index.js",
66
"module": "dist/esm/index.js",
@@ -37,7 +37,7 @@
3737
"@typescript-eslint/eslint-plugin": "^4.26.1",
3838
"@typescript-eslint/parser": "^4.26.1",
3939
"assert": "^2.0.0",
40-
"chromedriver": "^114.0.0",
40+
"chromedriver": "^116.0.0",
4141
"concurrently": "^6.2.0",
4242
"cucumber": "^5.1.0",
4343
"es-abstract": "^1.18.3",

0 commit comments

Comments
 (0)