Skip to content

Commit bf8a1dc

Browse files
authored
Merge branch 'main' into docs/849-indexer-operational-runbook
2 parents 114e5a1 + ba9dc16 commit bf8a1dc

63 files changed

Lines changed: 1513 additions & 966 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 17 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,21 @@ A clear and concise description of what you expected to happen.
2121
## Actual Behavior
2222
A clear and concise description of what actually happened.
2323

24-
## Screenshots
25-
If applicable, add screenshots to help explain your problem.
24+
## Component
25+
Select the sub-project(s) or component(s) affected:
26+
- [ ] Frontend
27+
- [ ] Backend
28+
- [ ] Contracts (Smart Contracts)
29+
- [ ] Infrastructure (Infra / CI / Deployment)
30+
- [ ] Documentation
31+
- [ ] Other (please specify)
32+
33+
## Network
34+
Select the target Stellar network environment:
35+
- [ ] Testnet
36+
- [ ] Mainnet
37+
- [ ] Local Sandbox
38+
- [ ] Not Applicable
2639

2740
## Environment
2841
- **FlowFi Version**: (e.g., commit hash or version number)
@@ -31,12 +44,8 @@ If applicable, add screenshots to help explain your problem.
3144
- **Node.js Version**: (if relevant)
3245
- **Wallet**: (e.g., Freighter 2.0.0)
3346

34-
## Component
35-
- [ ] Frontend
36-
- [ ] Backend
37-
- [ ] Smart Contracts
38-
- [ ] Documentation
39-
- [ ] Other (please specify)
47+
## Screenshots
48+
If applicable, add screenshots to help explain your problem.
4049

4150
## Logs/Error Messages
4251
```

.github/ISSUE_TEMPLATE/security.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,16 @@ assignees: ''
1010

1111
**For non-sensitive security-related issues only:**
1212

13+
### What to expect
14+
15+
Per our [Security Policy](../../SECURITY.md#response-timeline), the same response timeline applies to reports filed here:
16+
17+
- **Initial Response**: Within 48 hours of receiving your report
18+
- **Status Update**: Within 7 days with our assessment and planned timeline
19+
- **Resolution**: We aim to resolve critical vulnerabilities within 30 days
20+
21+
If you have not heard from us within 48 hours, please ping the issue or reach out through our [community Telegram](https://t.me/+DOylgFv1jyJlNzM0).
22+
1323
## Description
1424
A clear and concise description of the security concern.
1525

.github/pull_request_template.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ Closes #
5555
- [ ] I have performed a self-review of my own code
5656
- [ ] I have commented my code, particularly in hard-to-understand areas
5757
- [ ] I have made corresponding changes to the documentation
58+
- [ ] Updated Postman/Hoppscotch API collections if routes changed
5859
- [ ] My changes generate no new warnings
5960
- [ ] I have added tests that prove my fix is effective or that my feature works
6061
- [ ] New and existing unit tests pass locally with my changes

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,11 @@ coverage
88

99
# Soroban test runner — auto-generated, never commit
1010
**/test_snapshots/
11+
.npm-cache/
12+
13+
# Scratch / draft markdown files — never commit
1114
fix.md
12-
.npm-cache/
15+
issue*.md
16+
pr*.md
17+
ISSUE_*.md
18+
PR_*.md

.husky/pre-commit

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,6 @@
1-
npx lint-staged
1+
if [ ! -x ./node_modules/.bin/lint-staged ]; then
2+
echo "lint-staged is not installed locally. Run 'npm install' before committing." >&2
3+
exit 1
4+
fi
5+
6+
./node_modules/.bin/lint-staged

ISSUE_134_SUMMARY.md

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

PR_DESCRIPTION.md

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

0 commit comments

Comments
 (0)