Skip to content

Commit a5dbedd

Browse files
committed
Increment to v0.3.0, update changelog
Also add a note to `pgxn-jws.schema.json` that its format is subject to change. Also mentioned in the cangelog.
1 parent b70ac3f commit a5dbedd

File tree

6 files changed

+52
-8
lines changed

6 files changed

+52
-8
lines changed

CHANGELOG.md

+44-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,48 @@ All notable changes to this project will be documented in this file. It uses the
77
[Semantic Versioning]: https://semver.org/spec/v2.0.0.html
88
"Semantic Versioning 2.0.0"
99

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+
1052
## [v0.2.0] — 2024-09-12
1153

1254
### ⚡ Improvements
@@ -31,8 +73,8 @@ All notable changes to this project will be documented in this file. It uses the
3173
* Updated the README example to use the [meta module] to load an object.
3274

3375
[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/
3678
[pull request]: https://github.com/pgxn/rfcs/pull/3 "pgxn/rfcs#3 Meta Spec v2"
3779

3880
## [v0.1.0] — 2024-08-08

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pgxn_meta"
3-
version = "0.2.0"
3+
version = "0.3.0"
44
description = "The PGXN distribution metadata specification"
55
repository = "https://github.com/pgxn/pgxn-meta-spec"
66
documentation = "https://docs.rs/pgxn_meta/"

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99

1010
The PGXN Meta [v1] and [v2] specs define the requirements for the metadata
1111
file (`META.json`) file for [PGXN] source distribution packages. This project
12-
provides Rust a crates for working with spec `META.json` files.
12+
provides Rust a crates for working with spec `META.json` files, as well as
13+
PGXN-generated release `META.json` files.
1314

1415
Crate Usage
1516
-----------
@@ -58,7 +59,8 @@ See the [`pgxn_meta` docs on docs.rs] for complete details.
5859
Installation
5960
------------
6061

61-
There are several ways to install `pgxn_meta`.
62+
There are several ways to install the `pgxn_meta` distribution `META.json`
63+
validation CLI.
6264

6365
### `ubi`
6466

schema/v2/pgxn-jws.schema.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"$schema": "https://json-schema.org/draft/2020-12/schema",
33
"$id": "https://pgxn.org/meta/v2/pgxn-jws.schema.json",
44
"title": "PGXN Release Metadata",
5-
"description": "JSON Web Signature release metadata populated by PGXN. Structure defined by [JWS-JS](https://datatracker.ietf.org/doc/html/draft-jones-json-web-signature-json-serialization-01)",
5+
"description": "JSON Web Signature release metadata populated by PGXN. Structure defined by [JWS-JS](https://datatracker.ietf.org/doc/html/draft-jones-json-web-signature-json-serialization-01). Subject to change pending expert review and approval of the [JWS-signing RFC](https://github.com/pgxn/rfcs/pull/5).",
66
"type": "object",
77
"properties": {
88
"headers": {

src/dist/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
PGXN `META.json` validation and management.
2+
PGXN distribution `META.json` validation and management.
33
44
This module provides interfaces to load, validate, and manipulate PGXN
55
distribution `META.json` files. It supports both the [v1] and [v2] specs.

0 commit comments

Comments
 (0)