Skip to content
This repository was archived by the owner on Sep 28, 2025. It is now read-only.

Commit 1db56ea

Browse files
committed
Create v1.0 release
1 parent 201f031 commit 1db56ea

File tree

7 files changed

+17
-5
lines changed

7 files changed

+17
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Install it:
1010
$ npm install graffiti --save
1111
```
1212

13-
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.
13+
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.
1414

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

@@ -34,7 +34,7 @@ exports.schema = {
3434

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

37-
So far, we get:
37+
So far, you get:
3838

3939
- Automatic creation of GraphQL APIs
4040
- Automatic relations between types (when using `ObjectId` as type)

packages/graffiti-plugin-auth/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.0 / 2020-09-10
2+
3+
- First stable release with complete docs
4+
15
# 0.3.0 / 2020-09-10
26

37
- Allow specifying redirect in auth plugin

packages/graffiti-plugin-auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graffiti-plugin-auth",
3-
"version": "0.3.0",
3+
"version": "1.0.0",
44
"description": "Authentication plugin for Graffiti framework",
55
"repository": "yamalight/graffiti",
66
"bugs": "https://github.com/yamalight/graffiti/issues",

packages/graffiti-plugin-next/CHAGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.0 / 2020-09-10
2+
3+
- First stable release with complete docs
4+
15
# 0.4.0 / 2020-09-10
26

37
- Allow specifying autobuild tag during init

packages/graffiti-plugin-next/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graffiti-plugin-next",
3-
"version": "0.4.0",
3+
"version": "1.0.0",
44
"description": "Next.js plugin for Graffiti framework",
55
"repository": "yamalight/graffiti",
66
"bugs": "https://github.com/yamalight/graffiti/issues",

packages/graffiti/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 1.0.0 / 2020-09-10
2+
3+
- First stable release with complete docs
4+
15
# 0.8.0 / 2020-09-10
26

37
- Allow providing custom nodemon config

packages/graffiti/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graffiti",
3-
"version": "0.8.0",
3+
"version": "1.0.0",
44
"description": "Minimalistic GraphQL framework",
55
"repository": "yamalight/graffiti",
66
"bugs": "https://github.com/yamalight/graffiti/issues",

0 commit comments

Comments
 (0)