-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3302 from nervosnetwork/rc/v0.121.0
- Loading branch information
Showing
34 changed files
with
598 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v0.120.0 | ||
v0.121.0-rc1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
name: Spam detection | ||
|
||
on: | ||
issue_comment: | ||
types: [created, edited] | ||
|
||
permissions: | ||
issues: write | ||
|
||
jobs: | ||
detect-spam: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Set up Node.js | ||
uses: actions/setup-node@main | ||
|
||
- name: Check for Spam | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const comment = process.env.COMMENT_BODY.toLowerCase() | ||
const spam_words = process.env.SPAM_WORDS.split(',').map(w => w.toLowerCase()) | ||
const comment_id = process.env.COMMENT_ID | ||
const issue_number = process.env.ISSUE_NUMBER | ||
const owner = process.env.REPO_OWNER | ||
const repo = process.env.REPO_NAME | ||
const EXTERNAL_LINK_REGEXT = /https?:\/\/(?!((\w+\.)?github\.com|github\.com|(\w+\.)?magickbase\.com|(\w+\.)?nervos\.org))/gi | ||
if (spam_words.some(w => comment.includes(w))) { | ||
console.info(`Spam comment: ${comment}`) | ||
github.rest.issues.deleteComment({ owner, repo, comment_id }) | ||
} else if (EXTERNAL_LINK_REGEXT.test(comment)) { | ||
console.info(`External link detected, append an annotation`) | ||
github.rest.issues.createComment({ | ||
owner, | ||
repo, | ||
issue_number, | ||
body: `An external link is mentioned in the comment above. Please verify the link's safety before visiting.` | ||
}) | ||
} else { | ||
console.info("No spam detected") | ||
} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
COMMENT_BODY: ${{ github.event.comment.body }} | ||
COMMENT_ID: ${{ github.event.comment.id }} | ||
ISSUE_NUMBER: ${{ github.event.issue.number }} | ||
REPO_OWNER: ${{github.repository_owner }} | ||
REPO_NAME: ${{ github.event.repository.name }} | ||
SPAM_WORDS: ${{ secrets.SPAM_WORDS }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,25 @@ | ||
# 0.121.0 (2025-01-16) | ||
|
||
### CKB Node & Light Client | ||
|
||
- [[email protected]](https://github.com/nervosnetwork/ckb/releases/tag/v0.121.0-rc1) was released on Jan. 9th, 2025. This version of CKB node is now bundled and preconfigured in Neuron. | ||
- [CKB Light [email protected]](https://github.com/nervosnetwork/ckb-light-client/releases/tag/v0.4.1) was released on Nov. 13th, 2024. This version of CKB Light Client is now bundled and preconfigured in Neuron | ||
|
||
### Assumed valid target | ||
|
||
Block before `0x1381f9e4f70ce521256c4095fa536d11165488171a8a2cbac687f8cf53907afa`(at height `15,119,157`) will be skipped in validation.(https://github.com/nervosnetwork/neuron/pull/3300) | ||
|
||
--- | ||
|
||
## New features | ||
|
||
- #3290: Support inspecting and exporting private key for specific addresses.(@devchenyan) | ||
- #3293: Refine interaction of Sign and Verify Message.(@devchenyan) | ||
|
||
|
||
**Full Changelog**: https://github.com/nervosnetwork/neuron/compare/v0.120.0...v0.121.0 | ||
|
||
|
||
# 0.120.0 (2024-12-13) | ||
|
||
### CKB Node & Light Client | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
5e5c406
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Packaging for test is done in 12805337730
5e5c406
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Packaging for test is done in 12809615212
5e5c406
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
'%0A'### Downloads'%0A''%0A'OS | Arch | Package | SHA256 Checksum'%0A'-- | -- | -- | --'%0A'Windows | x64 | exe |
610c1e649bd141857d93798abcc78cac5564ff74b5116cca9544e8a4a4ea9efd
'%0A'macOS | x64 | zip |c31619090d1eb541df7547b0cc4dd968815dd394669cc585ddebeeff4df9a942
'%0A'macOS | arm64 | zip |7d028adc616fab51837990e1a2510bc2d5413ac8bd015800fcfb94ddec03708c
'%0A'macOS | x64 | DMG |190641e4e304c732c1c507507b45ff85df4a07ac6b6cb6a65b573a1040806a04
'%0A'macOS | arm64 | DMG |0d4f8f427770cfc43f4d104e69fd4749b37ff7b32dce9fab716f991edb8994d2
'%0A'Linux | x64 | AppImage |7b83566892bb6fe3ca106aa9bd4f26de0d0f8f12aab67c67538c5ba8c1f93568