Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
607cc37
remove npm token
shichengripple001 Sep 9, 2025
9398610
test release
shichengripple001 Sep 10, 2025
8d91388
test release
shichengripple001 Sep 10, 2025
b95ff5e
test release
shichengripple001 Sep 10, 2025
e9879b4
test release
shichengripple001 Sep 10, 2025
70b2c33
test release
shichengripple001 Sep 10, 2025
cb7ddf0
changes for issue https://github.com/XRPLF/xrpl.js/issues/3070
shichengripple001 Sep 16, 2025
ee870a7
fix permissions
shichengripple001 Sep 16, 2025
d9eb893
add the vulnerability report url to the Github issue
shichengripple001 Sep 16, 2025
fe718f2
add the vulnerability report url to the Github issue
shichengripple001 Sep 16, 2025
894241f
fix creating github issue
shichengripple001 Sep 17, 2025
109c045
fix creating github issue
shichengripple001 Sep 17, 2025
03b02b4
fix PR raising for non beta release
shichengripple001 Sep 17, 2025
73b7ade
fix PR raising for non beta release
shichengripple001 Sep 17, 2025
87830bb
fix slack msg for release note
shichengripple001 Sep 17, 2025
495e57e
no raise pr for rc/beta release
shichengripple001 Sep 17, 2025
e8d8570
update slack message
shichengripple001 Sep 17, 2025
a233ea6
update slack message
shichengripple001 Sep 17, 2025
27a561d
update slack message
shichengripple001 Sep 17, 2025
9b823c0
update slack message
shichengripple001 Sep 17, 2025
6c4840b
remove unused file
shichengripple001 Sep 17, 2025
59aa978
Merge branch 'main' into test-release-oidc
shichengripple001 Sep 17, 2025
b36c0df
change namespace
Patel-Raj11 Sep 17, 2025
9ecf80c
publish isomorphic
shichengripple001 Sep 17, 2025
d54be93
release isomorphic 2.0.0-rc.2
shichengripple001 Sep 17, 2025
679605b
fix lining errors
Patel-Raj11 Sep 17, 2025
37ab82f
release ripple-binary-codec 2.5.1
shichengripple001 Sep 17, 2025
944feea
fix lint errors
Patel-Raj11 Sep 17, 2025
c12226c
release latest isomorphic
Patel-Raj11 Sep 17, 2025
09b3e7d
release ripple-binary-codec 2.5.2
shichengripple001 Sep 17, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
716 changes: 439 additions & 277 deletions .github/workflows/release.yml

Large diffs are not rendered by default.

267 changes: 257 additions & 10 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ripple-binary-codec",
"version": "2.5.0",
"name": "cheng-ripple-binary-codec",
"version": "2.5.2",
"description": "XRP Ledger binary codec",
"files": [
"dist/*",
Expand Down Expand Up @@ -32,7 +32,7 @@
],
"repository": {
"type": "git",
"url": "[email protected]:XRPLF/xrpl.js.git"
"url": "[email protected]:xpring-eng/xrpl.js.git"
},
"bugs": {
"url": "https://github.com/XRPLF/xrpl.js/issues"
Expand All @@ -43,5 +43,6 @@
"prettier": "@xrplf/prettier-config",
"engines": {
"node": ">= 18"
}
},
"gitHead": "9ecf80ce3767e32a9009a14e4ec2f38f71c3acb3"
}
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ class Sha512Half extends BytesList {
* @returns the sha512half hash of the arguments.
*/
function sha512Half(...args: Uint8Array[]): Uint8Array {
console.log('xrpl automated release testing xxx2.5.2')
const hash = new Sha512Half()
args.forEach((a) => hash.put(a))
return hash.finish256()
Expand Down
Loading