Skip to content

Commit 58ab7b4

Browse files
authored
Merge pull request #24 from wayfair-incubator/gwardwell_froid_schema_generation_overhaul
2 parents e81ff35 + 959002e commit 58ab7b4

21 files changed

+5741
-352
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@ node_modules
22
dist
33
test-report.xml
44
coverage/
5+
.DS_Store

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html).
88

9+
## [v3.1.0] - 2023-11-09
10+
11+
- Added a new `FroidSchema` class to test the next version of FROID schema
12+
generation.
13+
- FROID schema is now sorted (both new and old version) and include
14+
documentation string.
15+
916
## [v3.0.1] - 2023-08-17
1017

1118
### Fix

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wayfair/node-froid",
3-
"version": "3.0.1",
3+
"version": "3.1.0",
44
"description": "Federated GQL Relay Object Identification implementation",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ export {
33
generateFroidSchema,
44
FederationVersion,
55
} from './schema/generateFroidSchema';
6+
export {FroidSchema} from './schema/FroidSchema';
67
export * from './service/types';
78
export * from './schema/types';

0 commit comments

Comments
 (0)