Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

start 0.18 changelog #951

Merged
merged 1 commit into from
May 9, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
# 0.18.0 (in progress)

## Behavioural changes

### Cats Module

Addition of a cats module to contain `SchemaVisitor` implementations of commonly-used cats typeclasses. Currently included are `cats.Show` and `cats.Hash` (note that `cats.Eq` is provided by the `cats.Hash` implementation).

See https://github.com/disneystreaming/smithy4s/pull/921

### Structure Patterns

Allows for marking string types with the `alloy#structurePattern` trait. This trait indicates that a given pattern, with parameters, applies to a given string and that this string should
actually be parsed into a structure where the members of the structure are derived from the parameters in the string pattern.

See https://github.com/disneystreaming/smithy4s/pull/942

### Non-Orphan Typeclass Instances

Allows creating implicit typeclass instances in the companion objects in the smithy4s-generated code. This is useful for creating instances of
typeclasses such as `cats.Show`, `cats.Eq` or any others you may be using.

See https://github.com/disneystreaming/smithy4s/pull/912

# 0.17.5

This release is backward binary-compatible with the previous releases from the 0.17.x lineage.
Expand Down