From 43995c7b069f702a0e3ea6e4e269028cffaef713 Mon Sep 17 00:00:00 2001 From: Jason Desrosiers Date: Thu, 3 Oct 2024 23:54:35 -0700 Subject: [PATCH 1/4] Fix hyper-schema page links (#998) --- pages/specification/json-hyper-schema/_index.md | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/pages/specification/json-hyper-schema/_index.md b/pages/specification/json-hyper-schema/_index.md index b116253a75..c610e84aa1 100644 --- a/pages/specification/json-hyper-schema/_index.md +++ b/pages/specification/json-hyper-schema/_index.md @@ -13,18 +13,17 @@ In essence: - JSON Hyper-Schema is helpful in complex APIs where clients need to define and explicitly understand the relationships between resources and actions, especially when navigating resources without prior knowledge of the API structure. - It helps create more discoverable and self-documenting APIs, making it easier for clients to interact with them. -### Hyper Schema Documents +### Hyper Schema Specification -- Hyper-Schema: [jsonschema-hyperschema.xml](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/jsonschema-hyperschema.xml) -- Relative JSON Pointer: [relative-json-pointer.xml](https://github.com/json-schema-org/json-schema-spec/blob/master/relative-json-pointer.xml) +- Hyper-Schema: [draft-handrews-json-schema-hyperschema-02](/draft/2019-09/draft-handrews-json-schema-hyperschema-02.html) +- Relative JSON Pointer: [draft-bhutton-relative-json-pointer-00](https://datatracker.ietf.org/doc/html/draft-bhutton-relative-json-pointer-00.html) -**Other documents:** +**Schemas:** -- [JSON Schema meta-schema](https://github.com/json-schema-org/json-schema-spec/blob/master/schema.json) -- [JSON Hyper-Schema meta-schema](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/hyper-schema.json) -- [JSON Hyper-Schema Link Description Object meta-schema](https://github.com/json-schema-org/json-hyperschema-spec/blob/main/links.json) -- [JSON Schema Vocabulary meta-schemas](https://github.com/json-schema-org/json-hyperschema-spec/tree/main/meta/) -- [JSON Schema Output schemas and examples](https://github.com/json-schema-org/json-hyperschema-spec/tree/main/output/) +- [JSON Hyper-Schema meta-schema](/draft/2020-12/hyper-schema) +- [JSON Hyper-Schema vocabulary schema](/draft/2020-12/meta/hyper-schema) +- [JSON Hyper-Schema Link Description Object meta-schema](/draft/2020-12/links) +- [JSON Schema Output schemas and examples](/draft/2019-09/output/hyper-schema) ### Release Notes From 6eab3f21cf8d287a95b4cfdb0b794285caa36fd5 Mon Sep 17 00:00:00 2001 From: Bence Eros Date: Fri, 4 Oct 2024 09:13:04 +0200 Subject: [PATCH 2/4] Update json-sKema project info (#996) --- data/tooling-data.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/tooling-data.yaml b/data/tooling-data.yaml index 0055f93219..be71c1495c 100644 --- a/data/tooling-data.yaml +++ b/data/tooling-data.yaml @@ -353,9 +353,9 @@ license: 'MIT' source: 'https://github.com/erosb/json-sKema' supportedDialects: - draft: ['2019-09'] + draft: ['2020-12'] toolingListingNotes: 'Successor of the everit-org/json-schema library' - lastUpdated: '2023-04-10' + lastUpdated: '2024-09-21' - name: Snow description: 'Snow, a full-featured JSON Schema validator' From 458d5d61f15f412c77afff20db94b0e39e5dfa2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kevin=20Mu=C3=B1oz=20Rengifo?= <51754037+Kalevins@users.noreply.github.com> Date: Fri, 4 Oct 2024 02:20:41 -0500 Subject: [PATCH 3/4] [Fix] Recall and re-render images in mobile (#995) --- components/Layout.tsx | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/components/Layout.tsx b/components/Layout.tsx index 079e703a38..612cf6c12a 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -103,14 +103,10 @@ export default function Layout({ - {showMobileNav ? ( -
- - {children} -
- ) : ( -
{children}
- )} +
+ {showMobileNav && } + {children} +