From 285a0831606be59e4b05fcec32971726b0430da0 Mon Sep 17 00:00:00 2001 From: Ola Okelola Date: Thu, 29 Feb 2024 23:44:36 -0800 Subject: [PATCH] more v0.2.0 fixes/updates --- docker_CHANGELOG.md | 6 ++++++ release_image/main.go | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/docker_CHANGELOG.md b/docker_CHANGELOG.md index b6a527dba..6619f28f5 100644 --- a/docker_CHANGELOG.md +++ b/docker_CHANGELOG.md @@ -9,6 +9,11 @@ Changelog for the npm version are [here](/CHANGELOG.md). ## [Unreleased] +## [0.2.0-alpha.3] - 2024-03-01 + +- make it so that fooId UUID fieldEdge works (#1779) +- fix @gqlField with gqlConnection and args with custom types (#1780) + ## [0.2.0-alpha.2] - 2024-02-29 ### Added @@ -33,6 +38,7 @@ Changelog for the npm version are [here](/CHANGELOG.md). * the existing names can be kept by using `storageKey` and `graphqlName` in the schema files so that there doesn't have to be any production impact. * standardizes on `Id` instead of `ID` so functions like `User.loadIDFromEmailAddress` become `User.loadIdFromEmailAddress` - changes generated files for patterns to make them more customizable (#1760) +- changes enum names with numbers fro FOO_1 to FOO1 ## [0.1.17] - 2024-01-21 diff --git a/release_image/main.go b/release_image/main.go index 6ead859fb..3a4093ed3 100644 --- a/release_image/main.go +++ b/release_image/main.go @@ -18,7 +18,7 @@ import ( ) // next tag to use -const TAG = "v0.2.0-alpha.2" +const TAG = "v0.2.0-alpha.3" // current node gets latest tag... const CURRENT_NODE_VERSION = 18 @@ -33,7 +33,7 @@ var NODE_VERSIONS = []int{ } const AUTO_SCHEMA_VERSION = "0.0.32" -const TSENT_VERSION = "v0.2.0-alpha.2" +const TSENT_VERSION = "v0.2.0-alpha.3" var SUFFIXES = []string{ "dev",