Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
f7c0c78
feat: add obligation escrow commands and types
manishdex25 Jul 27, 2026
99ffec9
docs: update README for improved clarity and formatting
manishdex25 Jul 28, 2026
0c0bfed
fix: update W3C obligation record with new issuer and restructure cre…
manishdex25 Jul 28, 2026
9802e14
refactor: consolidate verification commands into a unified pipeline
manishdex25 Jul 28, 2026
1e5f18a
docs: enhance README with updated TrustVC library details and local d…
manishdex25 Jul 30, 2026
a28a14e
chore(release): add beta-boe branch for prerelease channel
manishdex25 Jul 30, 2026
81a4d24
chore(release): update to version 1.1.0 and enhance dependencies
manishdex25 Jul 31, 2026
c431c3a
docs: update README for obligation registry usage and enhance error h…
manishdex25 Jul 31, 2026
fef3701
chore(release): update release configuration and CI workflows
manishdex25 Jul 31, 2026
5488f9c
docs: refine README formatting and clarify command usage
manishdex25 Jul 31, 2026
dedcad6
chore: update dependencies and improve error handling in obligation e…
manishdex25 Jul 31, 2026
3390fcc
Update .github/workflows/ci.yml
manishdex25 Jul 31, 2026
4c3f853
Update src/utils/obligation-document.ts
manishdex25 Jul 31, 2026
ffe1544
Refactor error handling in extractObligationDocumentInfo function
manishdex25 Jul 31, 2026
6dad862
Update README and command descriptions for obligation-escrowd
manishdex25 Jul 31, 2026
a5534dc
Update @trustvc/trustvc dependency to version 2.16.0-beta.1 and add t…
manishdex25 Aug 3, 2026
2c88be0
Enhance obligation escrow command handlers and improve error handling
manishdex25 Aug 3, 2026
54075d6
Update src/commands/obligation-registry/mint.ts
manishdex25 Aug 3, 2026
87c7d0f
Update src/commands/obligation-registry/mint.ts
manishdex25 Aug 3, 2026
8a81dc1
Refactor mintObligationToken error handling in mint.ts
manishdex25 Aug 3, 2026
da13f56
Update GitHub Actions workflow for release process
manishdex25 Aug 3, 2026
df96db5
Add decrypted.json for driving licence credential and enhance error h…
manishdex25 Aug 3, 2026
86af57b
Enhance obligation escrow command inputs and error handling
manishdex25 Aug 3, 2026
82684c6
Enhance error handling in document store and title escrow commands
manishdex25 Aug 3, 2026
7ed1ea9
Update .gitignore, remove decrypted.json, and enhance README clarity
manishdex25 Aug 3, 2026
512d7a4
Refactor error handling in document store and title escrow commands
manishdex25 Aug 3, 2026
9615cd1
Refactor CLI error handling and remove unused code
manishdex25 Aug 3, 2026
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
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,21 @@
name: CI

# Same checks for PRs targeting main or beta (and for pushes to those branches).
on:
push:
branches:
- main
- beta
pull_request:
branches:
- main
- beta

jobs:
test:
name: Test
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [22.x, 24.x]
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- beta

jobs:
test:
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ wellknown.json
credentialStatus.json
signed_vc.json
raw_vc.json
decrypted.json

# Dependencies
node_modules/
Expand Down
16 changes: 14 additions & 2 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
{
"branches": ["main"],
"branches": [
"main",
{
"name": "beta",
"prerelease": "beta",
"channel": "beta"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand All @@ -9,7 +16,12 @@
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
[
"@semantic-release/npm",
{
"npmPublish": true
}
],
[
"@semantic-release/git",
{
Expand Down
774 changes: 574 additions & 200 deletions README.md

Large diffs are not rendered by default.

Loading
Loading