-
Notifications
You must be signed in to change notification settings - Fork 64
Qa - Sign and verify feature #1286
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
b4563f4
chore: removed unwanted values (#1212)
KambleSahil3 8b5dca3
Merge pull request #1228 from credebl/refactor/optimise-dockerfile
KambleSahil3 d7723d6
chore: retorfit templates in develop (#1242)
GHkrishna ac25975
chore/update-env-demo (#1250)
KambleSahil3 bd656a1
fix: removed unwanted log which was displaying large data
RinkalBhojani b4f3eeb
Merge pull request #1256 from credebl/fix/multiuse-connection
bhavanakarwade 9e745a5
chore/sync templates (#1270)
GHkrishna 7941742
Added trim method to requestId while maintaining the variable immutab…
sr467113 b7ea38d
feat: add sign and verify api (#1277)
GHkrishna 5bb5b98
feat: sign verify rawdata (#1280)
GHkrishna 33bd455
fix: success message and othe minor changes (#1281)
GHkrishna 45d433c
fix: add examples (#1282)
GHkrishna f2746cd
chore: minor fixes (#1283)
GHkrishna 4bc2174
fix: template
GHkrishna e9f2179
Merge pull request #1285 from credebl/merge/qa-temaplate
GHkrishna 52143b0
Merge pull request #1284 from credebl/develop
amitpadmani-awts File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 was deleted.
Oops, something went wrong.
This file contains hidden or 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,73 @@ | ||
name: "\U0001F680 Feature Request - new" | ||
title: "feat: " | ||
description: Suggest an idea or enhancement for CREDEBL platform | ||
labels: [enhancement, triage] | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Reporting a feature request/enhancement to CREDEBL | ||
|
||
Thank you for taking time to create a feature request for CREDEBL, your contribution will help | ||
make the product better for everyone. | ||
|
||
Make sure your issue has a generous description that will help others understand and fix it at earliest. | ||
|
||
- type: checkboxes | ||
id: preliminary-checks | ||
attributes: | ||
label: "✅ Preliminary Checks" | ||
description: "Please confirm the following before submitting." | ||
options: | ||
- label: "I've read the [contibution guide](https://docs.credebl.id/docs/contribute/how-to-contribute) and agree to it" | ||
required: true | ||
- label: "I have searched [existing issues](https://github.com/credebl/platform/issues) and [pull requests](https://github.com/credebl/platform/pulls) to avoid duplicates." | ||
required: true | ||
- label: "I'm willing to create a PR for this feature. (if applicable)." | ||
|
||
- type: textarea | ||
id: problem-statement | ||
attributes: | ||
label: "🧩 Problem Statement" | ||
description: "Is your feature request related to a problem? Please describe it clearly." | ||
placeholder: "Ex: I'm always frustrated when [...]" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: proposed-solution | ||
attributes: | ||
label: "💡 Proposed Solution" | ||
description: "A clear and concise description of what you want to happen." | ||
placeholder: "Ex: It would be great if [...]" | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: alternatives-considered | ||
attributes: | ||
label: "🔄 Alternatives Considered" | ||
description: "Have you considered any alternative solutions or features?" | ||
placeholder: "Ex: I also thought about [...], but [...]" | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: additional-context | ||
attributes: | ||
label: "📎 Additional Context" | ||
description: "Add any other context, references, mockups, or screenshots here." | ||
validations: | ||
required: false | ||
|
||
- type: textarea | ||
id: acceptance-criteria | ||
attributes: | ||
label: "✅ Acceptance Criteria" | ||
description: "List specific tasks or outcomes that define when this request is complete." | ||
placeholder: | | ||
- A new endpoint `/v1/...` is added | ||
- Docs updated | ||
- Tests written and passing | ||
validations: | ||
required: false |
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,90 @@ | ||
name: "🐛 Bug Report" | ||
description: Report a bug or unexpected behavior in the project | ||
labels: [bug] | ||
title: "fix: " | ||
body: | ||
- type: markdown | ||
attributes: | ||
value: | | ||
## Reporting a bug on CREDEBL | ||
|
||
Thank you for taking time to report the bug on CREDEBL, your contribution will help | ||
make the product better for everyone. | ||
|
||
Make sure your issue has a generous description that will help others understand and fix it at earliest. | ||
- type: checkboxes | ||
id: agreement | ||
attributes: | ||
label: Preliminary Checks | ||
options: | ||
- label: I have read the contributions guide [contibution guide](https://docs.credebl.id/docs/contribute/how-to-contribute) and agree to it | ||
required: true | ||
- label: I have searched [existing issues](https://github.com/credebl/platform/issues) and [pull requests](https://github.com/credebl/platform/pulls) to avoid duplicates. | ||
required: true | ||
- label: "I'm willing to create a PR for this feature. (if applicable)." | ||
- type: textarea | ||
id: steps-to-reproduce | ||
attributes: | ||
label: "🧪 Steps to Reproduce" | ||
description: "Provide clear steps to reproduce the bug." | ||
placeholder: | | ||
1. Go to '...' | ||
2. Click on '...' | ||
3. Scroll down to '...' | ||
4. See error | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: expected-behavior | ||
attributes: | ||
label: "✅ Expected Behavior" | ||
description: "What did you expect to happen?" | ||
placeholder: | | ||
Ex: After clicking 'Submit', I expected a confirmation modal to appear. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
id: current-behavior | ||
attributes: | ||
label: "❌ Current Behavior" | ||
description: "What is currently happening instead?" | ||
placeholder: | | ||
Ex: The page crashed with a 500 error when clicking 'Submit'. | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
id: affected-version | ||
attributes: | ||
label: "📌 Affected Version/Commit" | ||
description: "Version number, branch name, or commit hash where the bug occurs." | ||
placeholder: "e.g., v1.2.3, main, 4f3e2d1" | ||
validations: | ||
required: false | ||
|
||
- type: checkboxes | ||
id: environment | ||
attributes: | ||
label: "💻 Environment" | ||
description: "Where did the issue occur?" | ||
options: | ||
- label: "Local development" | ||
- label: "Production" | ||
- label: "CI/CD" | ||
- label: "Other" | ||
|
||
- type: textarea | ||
id: logs-and-screenshots | ||
attributes: | ||
label: "🧾 Relevant Logs, Screenshots, or Stack Traces" | ||
description: "Paste any error messages or screenshots that can help diagnose the issue." | ||
placeholder: | | ||
Please include: | ||
- Error logs | ||
- Screenshots | ||
- Console output | ||
- Stack traces | ||
validations: | ||
required: false |
This file contains hidden or 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 hidden or 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.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
🛠️ Refactor suggestion
Add lockfile before install The Dockerfile runs
pnpm i
but never copiespnpm-lock.yaml
. Include it alongsidepackage.json
for deterministic builds:COPY pnpm-lock.yaml* package.json ./
🤖 Prompt for AI Agents