From 8ed065f900c5de0c47081a5974babd546ce0a532 Mon Sep 17 00:00:00 2001 From: Chris Drackett Date: Thu, 9 Apr 2020 09:39:51 -0700 Subject: [PATCH] prepair 0.8.0 release --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f95e1b17..e911f30f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## 0.8.0 + +- Allow LIST to be optional in TS. [174](https://github.com/mobxjs/mst-gql/pull/174) - [Aryk](https://github.com/Aryk) +- Generate model names that match JS conventions by default, add escape hatch option to opt-out - [155](https://github.com/mobxjs/mst-gql/pull/155) - [beepsoft](https://github.com/beepsoft) +- Better error handling around reserved model names. [192](https://github.com/mobxjs/mst-gql/pull/192) - [Matth10](https://github.com/Matth10) +- Remove example project `yarn.lock` files to reduce the "github auto PR" noise. + +** ⚠️ Note** + +mst-gql now generates model names matching JS conventions by default. If you are upgrading from a pre-0.8.0 release this may result in different names being geneated when you scaffold. If you don't wish to update your names or want to wait, use the new `--dontRenameModels` option to keep your current model names. + ## 0.7.1 - update how optional types are generated. [150](https://github.com/mobxjs/mst-gql/pull/150)