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

more v0.2.0 fixes/updates #1781

Merged
merged 1 commit into from
Mar 2, 2024
Merged
Show file tree
Hide file tree
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
6 changes: 6 additions & 0 deletions docker_CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions release_image/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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",
Expand Down
Loading