Skip to content
This repository has been archived by the owner on Apr 17, 2023. It is now read-only.

Releases: aerogear/graphback

0.11.0-rc6

08 Mar 23:15
61c823b
Compare
Choose a tag to compare
0.11.0-rc6 Pre-release
Pre-release
Merge pull request #870 from aerogear/renovate/babel-monorepo

Update dependency babel-eslint to v10.1.0

0.11.0-rc5

03 Mar 16:50
Compare
Choose a tag to compare
0.11.0-rc5 Pre-release
Pre-release
fix: version format

0.11.0-rc4

02 Mar 17:41
11c10e1
Compare
Choose a tag to compare
0.11.0-rc4 Pre-release
Pre-release
Merge pull request #824 from aerogear/package-bumps

fix: bump graphql-serve

0.11.0-rc3

24 Feb 23:26
9f3d5ef
Compare
Choose a tag to compare
0.11.0-rc3 Pre-release
Pre-release
chore: 0.11.0-rc3 (#786)

0.11.0-rc2

24 Feb 17:25
Compare
Choose a tag to compare
0.11.0-rc2 Pre-release
Pre-release

An early version of v0.11.0.

  • Bug fixes

0.11.0-rc1

18 Feb 13:16
d7f0654
Compare
Choose a tag to compare
0.11.0-rc1 Pre-release
Pre-release

An early version of the 0.11.0.

Limitations:

  • Limited database mapping capabilities
  • No support for db relationships

Release blog post: https://medium.com/@wtr/graphback-plugin-based-realtime-database-generator-78f4f608b81e

0.10.2

10 Jan 15:51
ff272c8
Compare
Choose a tag to compare

graphql-migrations

It's now possible to create database relationships from the 1:M side of your data model!

type User {
  id: ID!
  messages: [Message]
}

This creates a userId foreign key column in the message table.

0.10.1

09 Jan 15:59
Compare
Choose a tag to compare

Graphback-Codegen-Client

  • Generate relationship variables in mutations, fragment, subscriptions, queries.

0.10.0

06 Jan 12:45
8dd9c51
Compare
Choose a tag to compare

BREAKING changes for CLI/ and runtime.

Graphback-CLI

  • Removed init method

Init method is no longer available. To start new boilerplate project
please use graphql-cli init command instead that now incorporates Graphback.

Graphback

  • Added runtime layer

Runtime layer gives developers ability to run GraphQL server basing on input model
without code generation. All resolvers are created at runtime giving developers ability to update applications
on the fly. For more information please check official documentation for runtime layer.

  • Deprecating graphback as way to interact with the Graphback ecosystem

Graphback package offers multiple helpers however to fully configure all generators and other capabilities
developers can use individual packages:

@graphback/codegen-client
@graphback/codegen-resolvers
@graphback/codegen-schema
@graphback/core
@graphback/runtime
graphql-migrations

GraphQL-Migrations

  • Added a new library graphql-migrations for executing database migrations.

  • migrateDB directly compares the input model with the current database and uses the generated diff to update the database structure. This mode does not generate any migration metadata.

  • migrateDBUsingSchema updates the database by comparing the input model with the previous model. This mode generates migration metadata which is persisted to the local filesystem and to the database.

0.10.0-rc3

23 Dec 17:44
3d64df6
Compare
Choose a tag to compare
0.10.0-rc3 Pre-release
Pre-release
Merge pull request #583 from aerogear/0.10.0-rc3

0.10.0-rc3