Skip to content

Commit

Permalink
Update changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
milesj committed Aug 5, 2024
1 parent 9dcd7d8 commit f1fa780
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@
- Removed generics from `SchemaGenerator` and `SchemaRenderer`.

```rust
# Before
// Before
fn render(
&mut self,
schemas: &'gen IndexMap<String, Schema>,
references: &'gen HashSet<String>,
) -> RenderResult;

# After
// After
fn render(&mut self, schemas: IndexMap<String, Schema>) -> RenderResult;
```

Expand All @@ -35,6 +35,7 @@ fn render(&mut self, schemas: IndexMap<String, Schema>) -> RenderResult;
- Added a `env` Cargo feature for toggling environment variable functionality. Enabled by default.
- Added a `extends` Cargo feature for config extending functionality. Enabled by default.
- Added a `validate` Cargo feature for toggling validation functionality. Enabled by default.
- Added a `schema_serde` Cargo feature for allowing the `Schema` to be serialized.
- Reworked how parser and validator errors are rendered in the terminal.

#### ⚙️ Internal
Expand Down

0 comments on commit f1fa780

Please sign in to comment.