Skip to content

Commit

Permalink
Release v0.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OlegIlyenko committed Oct 3, 2015
1 parent 8ff870d commit 467f667
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
## Upcoming
## v0.4.1 (2015-10-03)

For the most part implemented spec changes. Now compatible with "October 2015" version of the GraphQL spec.

* Type condition optional on inline fragments. (#82) (spec change)
* Introspection descriptions for scalars and introspection (#80)
* Make operation name optional (#81) (spec change)
* Introspection descriptions for scalars and introspection (#80)
* `beforeField` now able to replace value and prevent `resolve` call (#79). This can be useful for things like caching. It contains minor breaking change - return type of `beforeField` has changed. If you are implementing it, just return `continue` if your `FieldVal` was `Unit` or `continue(someFieldVal)`.
* `Projection` and `NoProjection` should be tags instead of resolve function wrappers (#78). Backwards-incompatible change: you need to replace
`Projection` with `ProjectionName` tag and `NoProjection` with `ProjectionExclude` tag. here is an example:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

SBT Configuration:

libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.4.0"
libraryDependencies += "org.sangria-graphql" %% "sangria" % "0.4.1"

You can find an example application that uses akka-http with sangria here:

Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name := "sangria"
organization := "org.sangria-graphql"
version := "0.4.1-SNAPSHOT"
version := "0.4.1"

description := "Scala GraphQL implementation"
homepage := Some(url("http://sangria-graphql.org"))
Expand Down

0 comments on commit 467f667

Please sign in to comment.