Skip to content

Commit 648df2c

Browse files
authored
Updates for 6.1.2 (#3805)
* Add index on subject with org credential (#3802) * Add index on subject with org credential * Add release notes for 6.1.1 * Fix version number
1 parent 974d8b1 commit 648df2c

File tree

2 files changed

+64
-5
lines changed

2 files changed

+64
-5
lines changed

docs/pages/release_notes.rst

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22
Release notes
33
#############
44

5+
***************
6+
Peanut (v6.1.2)
7+
***************
8+
9+
Release date: 2025-04-28
10+
11+
- Add index to the VCR credential store to improve response times to the auth/v1 API (#3802)
12+
13+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v6.1.1...v6.1.2
14+
515
***************
616
Peanut (v6.1.1)
717
***************
@@ -241,6 +251,16 @@ The following features have been deprecated:
241251
- Network v1 API, to be removed
242252
- VDR v1 API, replaced by VDR v2
243253

254+
***************
255+
Hazelnut update (v5.4.18)
256+
***************
257+
258+
Release date: 2025-04-28
259+
260+
- Add index to the VCR credential store to improve response times to the auth/v1 API (#3802)
261+
262+
**Full Changelog**: https://github.com/nuts-foundation/nuts-node/compare/v5.4.17...v5.4.18
263+
244264
*************************
245265
Hazelnut update (v5.4.17)
246266
*************************

vcr/assets/assets/default.index.yaml

Lines changed: 44 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,59 @@ indices:
55
- name: index_issuer
66
parts:
77
- iriPath: ["https://www.w3.org/2018/credentials#issuer"]
8+
- name: index_subject_organization
9+
parts:
10+
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject"]
11+
- iriPath:
12+
[
13+
"https://www.w3.org/2018/credentials#credentialSubject",
14+
"http://schema.org/organization",
15+
"http://schema.org/legalname",
16+
]
17+
- iriPath:
18+
[
19+
"https://www.w3.org/2018/credentials#credentialSubject",
20+
"http://schema.org/organization",
21+
"http://schema.org/city",
22+
]
823
- name: index_organization
924
parts:
10-
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject", "http://schema.org/organization", "http://schema.org/legalname"]
25+
- iriPath:
26+
[
27+
"https://www.w3.org/2018/credentials#credentialSubject",
28+
"http://schema.org/organization",
29+
"http://schema.org/legalname",
30+
]
1131
tokenizer: whitespaceOrExact
1232
transformer: cologne
13-
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject", "http://schema.org/organization", "http://schema.org/city"]
33+
- iriPath:
34+
[
35+
"https://www.w3.org/2018/credentials#credentialSubject",
36+
"http://schema.org/organization",
37+
"http://schema.org/city",
38+
]
1439
tokenizer: whitespaceOrExact
1540
transformer: cologne
1641
- name: index_auth_subject
1742
parts:
1843
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject"]
19-
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject", "https://nuts.nl/credentials/v1#subject"]
44+
- iriPath:
45+
[
46+
"https://www.w3.org/2018/credentials#credentialSubject",
47+
"https://nuts.nl/credentials/v1#subject",
48+
]
2049
- name: index_auth_subject_purpose_resources
2150
parts:
2251
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject"]
23-
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject", "https://nuts.nl/credentials/v1#purposeOfUse"]
24-
- iriPath: ["https://www.w3.org/2018/credentials#credentialSubject", "https://nuts.nl/credentials/v1#resources", "https://nuts.nl/credentials/v1#path"]
52+
- iriPath:
53+
[
54+
"https://www.w3.org/2018/credentials#credentialSubject",
55+
"https://nuts.nl/credentials/v1#purposeOfUse",
56+
]
57+
- iriPath:
58+
[
59+
"https://www.w3.org/2018/credentials#credentialSubject",
60+
"https://nuts.nl/credentials/v1#resources",
61+
"https://nuts.nl/credentials/v1#path",
62+
]
63+

0 commit comments

Comments
 (0)