edoxen 2.1.1 → 2.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 0ba69e84d00cf1307fc4887da2270e2c6c8c30ffd437858aaf6afb2e1a58a1dc
4
- data.tar.gz: 6e4814249a7417323e6d83dde4d4631451c6a70abdea4106c1af55caf5c5d291
3
+ metadata.gz: 61cbf2b8c1a246081e37c9d7825cbcd6525eb9a7ac0c158532217fd62d78e157
4
+ data.tar.gz: daa768397de2ea5f2d3e2ce357043cefa33be8b4904140248a6de3ba0f6eba3a
5
5
  SHA512:
6
- metadata.gz: 9d5453a5e99eb21be23dc0ba448cd7b44cdd91d3be947f3eb2bbb6d0c4a7cff171b4b95c1e4f477b8b194f72bff06908e88db7d0bb0bdf0163d9db3051ca3d93
7
- data.tar.gz: 3dbcb645d7d6fc5e8823d553dd7bbbc740464c5a954c43038c9f5ea2680a53a347fd35b082d53c5c6579b2331d4cc9129ea56dbc5b0f1805c2c3fc737487a714
6
+ metadata.gz: 0fa6668545d593136089233bc9040fdcc6b30a2c9a9333e2f4c87d0072ef8d30589a3083a095340454beb26c913ddb665c5f02a7e8d16fc7d567e1fae3c55786
7
+ data.tar.gz: dba16df211688953e6d4a4ccc9423659dad03ac49f3d433842b922b6967a620cc5d570b30faef2209c61ad2525531f68b02eb175727c75fab69b6240556fb7a8
data/CHANGELOG.md CHANGED
@@ -5,11 +5,27 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.1.2] — 2026-07-07
9
+
10
+ Patch release. Adds `MeetingSeries` as a valid top-level document in
11
+ `schema/meeting.yaml` so downstream consumers can ship a
12
+ committee-level MeetingSeries fixture as the single source of truth
13
+ for committee metadata (name, description, chair as `contact`,
14
+ secretariat as `hosts[]`, social-media URLs as `extensions[]`).
15
+ Previously MeetingSeries was only reachable as a `$ref` inside other
16
+ documents.
17
+
18
+ Backwards-compatible: existing Meeting and MeetingCollection root
19
+ documents still validate unchanged.
20
+
21
+ Mirror change in `edoxen-model/schema/meeting.yaml`.
22
+
8
23
  ## [2.1.1] — 2026-07-06
9
24
 
10
25
  Patch release. Bundles the v2.2 OCP refactor (Contact family), the
11
26
  post-v2.2 audit cleanup, and the gem↔model canonical-schema sync spec.
12
27
 
28
+
13
29
  ### Added
14
30
 
15
31
  - **Contact family** (v2.2 OCP refactor): `Contact`, `Name`,
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Edoxen
4
- VERSION = "2.1.1"
4
+ VERSION = "2.1.2"
5
5
  end
data/schema/meeting.yaml CHANGED
@@ -18,6 +18,7 @@ type: object
18
18
  oneOf:
19
19
  - $ref: "#/$defs/MeetingCollection"
20
20
  - $ref: "#/$defs/Meeting"
21
+ - $ref: "#/$defs/MeetingSeries"
21
22
 
22
23
  $defs:
23
24
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: edoxen
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.1.1
4
+ version: 2.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2026-07-06 00:00:00.000000000 Z
11
+ date: 2026-07-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: json_schemer