Skip to content

Commit 3f7f470

Browse files
committed
Merge tag '2.0.5'
Fedify 2.0.5
2 parents 150998a + 197a60a commit 3f7f470

2 files changed

Lines changed: 104 additions & 0 deletions

File tree

CHANGES.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,17 @@ To be released.
146146
[#599]: https://github.com/fedify-dev/fedify/pull/599
147147

148148

149+
Version 2.0.5
150+
-------------
151+
152+
Released on March 11, 2026.
153+
154+
### @fedify/fedify
155+
156+
- Added <https://w3id.org/security/data-integrity/v2> to preloaded JSON-LD
157+
contexts.
158+
159+
149160
Version 2.0.4
150161
-------------
151162

@@ -779,6 +790,17 @@ Released on February 22, 2026.
779790
[#351]: https://github.com/fedify-dev/fedify/issues/351
780791

781792

793+
Version 1.10.4
794+
--------------
795+
796+
Released on March 11, 2026.
797+
798+
### @fedify/fedify
799+
800+
- Added <https://w3id.org/security/data-integrity/v2> to preloaded JSON-LD
801+
contexts.
802+
803+
782804
Version 1.10.3
783805
--------------
784806

packages/vocab-runtime/src/contexts.ts

Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -537,6 +537,88 @@ const preloadedContexts: Record<string, unknown> = {
537537
},
538538
},
539539

540+
"https://w3id.org/security/data-integrity/v2": {
541+
"@context": {
542+
"id": "@id",
543+
"type": "@type",
544+
"@protected": true,
545+
"proof": {
546+
"@id": "https://w3id.org/security#proof",
547+
"@type": "@id",
548+
"@container": "@graph",
549+
},
550+
"DataIntegrityProof": {
551+
"@id": "https://w3id.org/security#DataIntegrityProof",
552+
"@context": {
553+
"@protected": true,
554+
"id": "@id",
555+
"type": "@type",
556+
"challenge": "https://w3id.org/security#challenge",
557+
"created": {
558+
"@id": "http://purl.org/dc/terms/created",
559+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime",
560+
},
561+
"domain": "https://w3id.org/security#domain",
562+
"expires": {
563+
"@id": "https://w3id.org/security#expiration",
564+
"@type": "http://www.w3.org/2001/XMLSchema#dateTime",
565+
},
566+
"nonce": "https://w3id.org/security#nonce",
567+
"previousProof": {
568+
"@id": "https://w3id.org/security#previousProof",
569+
"@type": "@id",
570+
},
571+
"proofPurpose": {
572+
"@id": "https://w3id.org/security#proofPurpose",
573+
"@type": "@vocab",
574+
"@context": {
575+
"@protected": true,
576+
"id": "@id",
577+
"type": "@type",
578+
"assertionMethod": {
579+
"@id": "https://w3id.org/security#assertionMethod",
580+
"@type": "@id",
581+
"@container": "@set",
582+
},
583+
"authentication": {
584+
"@id": "https://w3id.org/security#authenticationMethod",
585+
"@type": "@id",
586+
"@container": "@set",
587+
},
588+
"capabilityInvocation": {
589+
"@id": "https://w3id.org/security#capabilityInvocationMethod",
590+
"@type": "@id",
591+
"@container": "@set",
592+
},
593+
"capabilityDelegation": {
594+
"@id": "https://w3id.org/security#capabilityDelegationMethod",
595+
"@type": "@id",
596+
"@container": "@set",
597+
},
598+
"keyAgreement": {
599+
"@id": "https://w3id.org/security#keyAgreementMethod",
600+
"@type": "@id",
601+
"@container": "@set",
602+
},
603+
},
604+
},
605+
"cryptosuite": {
606+
"@id": "https://w3id.org/security#cryptosuite",
607+
"@type": "https://w3id.org/security#cryptosuiteString",
608+
},
609+
"proofValue": {
610+
"@id": "https://w3id.org/security#proofValue",
611+
"@type": "https://w3id.org/security#multibase",
612+
},
613+
"verificationMethod": {
614+
"@id": "https://w3id.org/security#verificationMethod",
615+
"@type": "@id",
616+
},
617+
},
618+
},
619+
},
620+
},
621+
540622
"https://www.w3.org/ns/did/v1": {
541623
"@context": {
542624
"@protected": true,

0 commit comments

Comments
 (0)