Skip to content

Commit bdbb52b

Browse files
Version Packages (#458)
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated. # Releases ## chainlink-deployments-framework@0.51.0 ### Minor Changes - [#429](#429) [`1703535`](1703535) Thanks [@bytesizedroll](https://github.com/bytesizedroll)! - Adding Jira package ### Patch Changes - [#459](#459) [`98c0ebc`](98c0ebc) Thanks [@graham-chainlink](https://github.com/graham-chainlink)! - fix: preserve large integers in YAML to JSON conversion Fixes TestSetDurablePipelineInputFromYAML_WithPathResolution by preventing large integers from being converted to scientific notation during JSON marshaling, which causes issues when unmarshaling to big.Int. **Problem:** - YAML parsing converts large numbers like `2000000000000000000000` to `float64(2e+21)` - JSON marshaling converts `float64(2e+21)` to scientific notation `"2e+21"` - big.Int cannot unmarshal scientific notation, causing errors --------- Co-authored-by: app-token-issuer-engops[bot] <144731339+app-token-issuer-engops[bot]@users.noreply.github.com>
1 parent 98c0ebc commit bdbb52b

File tree

4 files changed

+21
-20
lines changed

4 files changed

+21
-20
lines changed

.changeset/poor-donuts-fetch.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/six-comics-camp.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# chainlink-deployments-framework
22

3+
## 0.51.0
4+
5+
### Minor Changes
6+
7+
- [#429](https://github.com/smartcontractkit/chainlink-deployments-framework/pull/429) [`1703535`](https://github.com/smartcontractkit/chainlink-deployments-framework/commit/17035351f97836c3ac9b21bc9aa08c68be602c1f) Thanks [@bytesizedroll](https://github.com/bytesizedroll)! - Adding Jira package
8+
9+
### Patch Changes
10+
11+
- [#459](https://github.com/smartcontractkit/chainlink-deployments-framework/pull/459) [`98c0ebc`](https://github.com/smartcontractkit/chainlink-deployments-framework/commit/98c0ebcd969a96c8026df5f4328040026ae8051b) Thanks [@graham-chainlink](https://github.com/graham-chainlink)! - fix: preserve large integers in YAML to JSON conversion
12+
13+
Fixes TestSetDurablePipelineInputFromYAML_WithPathResolution by preventing
14+
large integers from being converted to scientific notation during JSON
15+
marshaling, which causes issues when unmarshaling to big.Int.
16+
17+
**Problem:**
18+
19+
- YAML parsing converts large numbers like `2000000000000000000000` to `float64(2e+21)`
20+
- JSON marshaling converts `float64(2e+21)` to scientific notation `"2e+21"`
21+
- big.Int cannot unmarshal scientific notation, causing errors
22+
323
## 0.50.1
424

525
### Patch Changes

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "chainlink-deployments-framework",
3-
"version": "0.50.1",
3+
"version": "0.51.0",
44
"description": "A deployment framework for chainlink-deployments ",
55
"private": true,
66
"scripts": {

0 commit comments

Comments
 (0)