Skip to content

Commit

Permalink
Merge branch 'near:master' into master
Browse files Browse the repository at this point in the history
  • Loading branch information
Longarithm authored Oct 9, 2024
2 parents 7274f29 + d0a33c3 commit 43a89d8
Show file tree
Hide file tree
Showing 224 changed files with 7,289 additions and 3,488 deletions.
4 changes: 4 additions & 0 deletions .cargo/audit.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,8 @@ ignore = [
# older versions of parking-lot are vulnerable, but used by wasmer0, which we need to keep alive for replayability reasons.
# We should remove it, as well as this ignore, as soon as we get limited replayability.
"RUSTSEC-2020-0070",

# proc-macro-error is unmaintained, but hard to replace right now.
# Follow https://github.com/Kyuuhachi/syn_derive/issues/4
"RUSTSEC-2024-0370",
]
96 changes: 96 additions & 0 deletions .github/ISSUE_TEMPLATE/0-node-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
name: Node Issue
description: Issue while running a node
title: "Node Issue: "
labels: ["Node", "community", "investigation required"]
assignees:
- VanBarbascu
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
Before you go ahead, please make sure that the issue has not been reported already.
Please, follow steps below to help us resolve your issue.
In scripts below we assume that `$NEARD` environmental variable contains path to your neard binary,
and `$NEAR_HOME` variable contains path to your near home.
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: dropdown
id: node-type
attributes:
label: Node type
description: What type of node are you running?
options:
- Top 100 Validator
- Non-Top 100 Validator
- RPC
- Split Storage Archival
- Legacy Archival (Deprecated)
default: 2
validations:
required: true
- type: dropdown
id: network
attributes:
label: Which network are you running?
description: Pick the network
options:
- mainnet
- testnet
- other (specify below)
default: 0
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe your issue with running a near node.
validations:
required: true
- type: textarea
id: version
attributes:
label: Version
description: What version of neard are you running? Please, provide output of `$NEARD --version`.
render: shell
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
validations:
required: false
- type: textarea
id: block-misc
attributes:
label: Node head info
description: Please, provide full output of `RUST_LOG=warn $NEARD --home $NEAR_HOME --unsafe-fast-startup view-state scan-db-column --column BlockMisc`.
render: shell
validations:
required: false
- type: textarea
id: neard-history
attributes:
label: Node upgrade history
description: When did you upgrade to current version? Please, try to provide date and time. What version were you running before that?
render: shell
validations:
required: true
- type: textarea
id: db-history
attributes:
label: DB reset history
description: When was the last time you restarted your DB from snapshot?
render: shell
validations:
required: true
68 changes: 68 additions & 0 deletions .github/ISSUE_TEMPLATE/1-rpc-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
name: RPC Issue
description: Issue while using public RPC service
title: "RPC Issue: "
labels: ["A-RPC", "community", "investigation required"]
assignees:
- khorolets
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
Before you go ahead, please make sure that the issue has not been reported already.
Please, follow steps below to help us resolve your issue.
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: dropdown
id: network
attributes:
label: Which network are you using?
description: Pick the network
options:
- mainnet
- testnet
- other (specify below)
default: 0
validations:
required: true
- type: textarea
id: rpc-url
attributes:
label: RPC URL
description: Provide the RPC URL you are using
validations:
required: true
- type: textarea
id: rpc-request
attributes:
label: RPC Request
description: Provide the RPC request
validations:
required: true
- type: textarea
id: expected-result
attributes:
label: Expected result
description: What is the expected result of the request?
validations:
required: true
- type: textarea
id: actual-result
attributes:
label: Actual result
description: Provide the actual response
validations:
required: true
- type: checkboxes
id: is-archival
attributes:
label: Is it an archival request?
description: The requested data is older than 3 days
options:
- label: The result contains archival data
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/2-contract-runtime-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Contract runtime Issue
description: Issue while developing a contract
title: "Contract Runtime Issue: "
labels: ["T-contract-runtime", "community", "investigation required"]
assignees:
- akhi3030
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
Before you go ahead, please make sure that the issue has not been reported already.
Please, follow steps below to help us resolve your issue.
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: dropdown
id: network
attributes:
label: Which network are you using?
description: Pick the network
options:
- mainnet
- testnet
- other (specify below)
default: 0
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe your issue with the contract
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
validations:
required: false
50 changes: 50 additions & 0 deletions .github/ISSUE_TEMPLATE/3-feature-request.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Feature Request
description: Any ideas how to improve nearcore
title: "Feature: "
labels: ["community"]
assignees:
- walnut-the-cat
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this feature request!
Before you go ahead, please make sure that the feature request has not been reported already.
Please, follow steps below to explain the feature request better.
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: textarea
id: feature-request
attributes:
label: Feature Request
description: Describe your feature request
validations:
required: true
- type: textarea
id: beneficiary
attributes:
label: Beneficiary
description: Who is the main beneficiary of this feature?
validations:
required: true
- type: textarea
id: priority
attributes:
label: Priority
description: How important this feature is? Why should developers prioritize this?
render: shell
validations:
required: true
- type: checkboxes
id: ready-to-contribute
attributes:
label: Contributing
description: Are you interested in implementing this feature?
options:
- label: Yes, I am interested
48 changes: 48 additions & 0 deletions .github/ISSUE_TEMPLATE/4-general-issue.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Bug Report
description: General bug report. Use this only if it does not fit into any of the categories above.
title: "Bug: "
labels: ["community", "investigation required"]
assignees:
- telezhnaya
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report!
Before you go ahead, please make sure that the issue has not been reported already.
Please, follow steps below to help us resolve your issue.
- type: input
id: contact
attributes:
label: Contact Details
description: How can we get in touch with you if we need more info?
placeholder: ex. email@example.com
validations:
required: false
- type: dropdown
id: network
attributes:
label: Which network are you using?
description: Pick the network
options:
- mainnet
- testnet
- other (specify below)
default: 0
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: What happened?
description: Describe your issue with running a near node.
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant log output
description: Please copy and paste any relevant log output.
render: shell
validations:
required: true
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/5-internal.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
name: Internal
description: Template for nearcore employees only
body:
- type: textarea
id: content
attributes:
label: Description
validations:
required: true
36 changes: 0 additions & 36 deletions .github/ISSUE_TEMPLATE/bug_report.md

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/master_fuzzer_binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
jobs:
build_fuzzers:
name: Build Fuzzers
runs-on: "ubuntu-20.04-32core"
runs-on: "ubuntu-22.04-16core"

permissions:
contents: "read"
Expand Down
Loading

0 comments on commit 43a89d8

Please sign in to comment.