Skip to content

Commit

Permalink
Create v1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
yamalight committed Sep 10, 2020
1 parent 201f031 commit 1db56ea
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Install it:
$ npm install graffiti --save
```

After that, the file-system is the main API. Every `.js` file becomes a Mongoose schema that gets automatically processed and converted to GraphQL API.
After that, the file-system is the main API. Every `.js` file becomes a schema definition that gets automatically processed and converted to GraphQL API.

Populate `./schema/note.js` inside your project:

Expand All @@ -34,7 +34,7 @@ exports.schema = {

and then just run `graffiti dev` and go to `http://localhost:3000/playground`

So far, we get:
So far, you get:

- Automatic creation of GraphQL APIs
- Automatic relations between types (when using `ObjectId` as type)
Expand Down
4 changes: 4 additions & 0 deletions packages/graffiti-plugin-auth/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.0 / 2020-09-10

- First stable release with complete docs

# 0.3.0 / 2020-09-10

- Allow specifying redirect in auth plugin
Expand Down
2 changes: 1 addition & 1 deletion packages/graffiti-plugin-auth/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graffiti-plugin-auth",
"version": "0.3.0",
"version": "1.0.0",
"description": "Authentication plugin for Graffiti framework",
"repository": "yamalight/graffiti",
"bugs": "https://github.com/yamalight/graffiti/issues",
Expand Down
4 changes: 4 additions & 0 deletions packages/graffiti-plugin-next/CHAGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.0 / 2020-09-10

- First stable release with complete docs

# 0.4.0 / 2020-09-10

- Allow specifying autobuild tag during init
Expand Down
2 changes: 1 addition & 1 deletion packages/graffiti-plugin-next/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graffiti-plugin-next",
"version": "0.4.0",
"version": "1.0.0",
"description": "Next.js plugin for Graffiti framework",
"repository": "yamalight/graffiti",
"bugs": "https://github.com/yamalight/graffiti/issues",
Expand Down
4 changes: 4 additions & 0 deletions packages/graffiti/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.0.0 / 2020-09-10

- First stable release with complete docs

# 0.8.0 / 2020-09-10

- Allow providing custom nodemon config
Expand Down
2 changes: 1 addition & 1 deletion packages/graffiti/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graffiti",
"version": "0.8.0",
"version": "1.0.0",
"description": "Minimalistic GraphQL framework",
"repository": "yamalight/graffiti",
"bugs": "https://github.com/yamalight/graffiti/issues",
Expand Down

0 comments on commit 1db56ea

Please sign in to comment.