@@ -7,6 +7,48 @@ All notable changes to this project will be documented in this file. It uses the
7
7
[ Semantic Versioning ] : https://semver.org/spec/v2.0.0.html
8
8
"Semantic Versioning 2.0.0"
9
9
10
+ ## [ v0.3.0] — 2024-09-23
11
+
12
+ ### ⚡ Improvements
13
+
14
+ * Designed experimental distribution [ metadata schema] to be appended to v2
15
+ ` META.json ` by PGXN upon release. The object is in [ JWS-JS] format, and
16
+ intended to sign the release user, date, URI, and one or more SHA digests
17
+ for the distribution zip file. The format is subject to change pending
18
+ expert review and approval of the [ JWS-signing RFC] .
19
+ * Created release JSON Schemas for [ v1] and [ v2] release validation. PGXN
20
+ Manager adds the v1 metadata to the distribution-supplied ` META.json ` so
21
+ that clients can validate downloads. In the future it will generate the v2
22
+ JWS-signed schema.
23
+ * Added the [ release module] , which extends the [ dist module] to load loads
24
+ v1 and v2 spec files into read-only data structures, converts v1 metadata
25
+ to v2, and merges multiple files.
26
+
27
+ ### 📔 Notes
28
+
29
+ * Renamed the meta module to the [ dist module] , since it handles
30
+ * distribution* metadata, and therefore better compliments the new [ release
31
+ module] , which handles * release* metadata.
32
+ * Removed the SHA-256 hash from the [ v2 artifacts schema] , leaving only
33
+ SHA-512.
34
+ * Replaced the ` TryFrom<PathBuf> ` trait in the [ dist module] with a ` load `
35
+ function. This is because one does not convert a file path into a struct,
36
+ but loads it into a struct. It also allows the argument to be of type
37
+ ` AsRef<Path> ` , which supports ` Path ` , ` PathBuf ` , or ` String ` arguments.
38
+ * The v1-v2 conversion in the [ release module] does not sign the release
39
+ payload, as we are not doing any key signing, yet. For now it generates
40
+ random strings to satisfy JSON Schema validation.
41
+
42
+ [ v0.3.0 ] : https://github.com/pgxn/meta/compare/v0.3.0...v0.3.0
43
+ [ metadata schema ] : https://github.com/pgxn/meta/blob/v0.3.0/schema/v2/pgxn-jws.schema.json
44
+ [ dist module ] : https://docs.rs/pgxn_meta/0.3.0/pgxn_meta/dist/
45
+ [ release module ] : https://docs.rs/pgxn_meta/0.3.0/pgxn_meta/release/
46
+ [ JWS-JS ] : https://datatracker.ietf.org/doc/html/draft-jones-json-web-signature-json-serialization-01
47
+ [ JWS-signing RFC ] : https://github.com/pgxn/rfcs/pull/5
48
+ [ v1 ] : https://github.com/pgxn/meta/blob/v0.3.0/schema/v1/release.schema.json
49
+ [ v2 ] : https://github.com/pgxn/meta/blob/v0.3.0/schema/v2/release.schema.json
50
+ [ v2 artifacts schema ] : https://github.com/pgxn/meta/blob/v0.3.0/schema/v2/artifacts.schema.json
51
+
10
52
## [ v0.2.0] — 2024-09-12
11
53
12
54
### ⚡ Improvements
@@ -31,8 +73,8 @@ All notable changes to this project will be documented in this file. It uses the
31
73
* Updated the README example to use the [ meta module] to load an object.
32
74
33
75
[ v0.2.0 ] : https://github.com/pgxn/meta/compare/v0.1.0...v0.2.0
34
- [ meta module ] : https://docs.rs/pgxn_meta/meta/
35
- [ valid module ] : https://docs.rs/pgxn_meta/meta /
76
+ [ meta module ] : https://docs.rs/pgxn_meta/0.2.0/pgxn_meta/ meta/
77
+ [ valid module ] : https://docs.rs/pgxn_meta/0.2.0/pgxn_meta/valid /
36
78
[ pull request ] : https://github.com/pgxn/rfcs/pull/3 " pgxn/rfcs#3 Meta Spec v2 "
37
79
38
80
## [ v0.1.0] — 2024-08-08
0 commit comments