Skip to content

Commit

Permalink
v0.4.0 (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
wschurman authored Jun 3, 2020
1 parent aefec72 commit 509b590
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 8 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## v0.4.0 (2020-06-03)

* All Packages
* Documentation Improvements
* CI & Coverage
* TypeScript 3.9 ([#18](https://github.com/expo/entity/pull/18))
* `@expo/entity`
* Enforcing mutator convenience functions ([#5](https://github.com/expo/entity/pull/5))
* `loadByIDNullable` loader method ([#28](https://github.com/expo/entity/pull/28))
* Add ability to check update and delete policies outside of mutation ([#30](https://github.com/expo/entity/pull/30))
* `@expo/entity-cache-adapter-redis`
* `@expo/entity-database-adapter-knex`
* Throw when database adapter receives unexpected mutation results ([#31](https://github.com/expo/entity/pull/31))
* `@expo/entity-example`
* Initial Version

## v0.3.0 (2020-04-28)

* `@expo/entity`
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "0.3.0"
"version": "0.4.0"
}
4 changes: 2 additions & 2 deletions packages/entity-cache-adapter-redis/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/entity-cache-adapter-redis",
"version": "0.3.0",
"version": "0.4.0",
"description": "Redis cache adapter for @expo/entity",
"files": [
"build",
Expand Down Expand Up @@ -32,6 +32,6 @@
"ioredis": "^4.16.1"
},
"devDependencies": {
"@expo/entity": "*"
"@expo/entity": "^0.4.0"
}
}
4 changes: 2 additions & 2 deletions packages/entity-database-adapter-knex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/entity-database-adapter-knex",
"version": "0.3.0",
"version": "0.4.0",
"description": "Knex database adapter for @expo/entity",
"files": [
"build",
Expand Down Expand Up @@ -32,6 +32,6 @@
"knex": "^0.20.11"
},
"devDependencies": {
"@expo/entity": "*"
"@expo/entity": "^0.4.0"
}
}
4 changes: 2 additions & 2 deletions packages/entity-example/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@expo/entity-example",
"private": true,
"version": "0.3.0",
"version": "0.4.0",
"description": "An example integration of the @expo/entity framework",
"scripts": {
"tsc": "tsc",
Expand All @@ -22,7 +22,7 @@
"author": "Expo",
"license": "MIT",
"dependencies": {
"@expo/entity": "^0.3.0",
"@expo/entity": "^0.4.0",
"apollo-server-koa": "^2.13.0",
"graphql": "^15.0.0",
"koa": "^2.11.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/entity/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@expo/entity",
"version": "0.3.0",
"version": "0.4.0",
"description": "A privacy-first data model",
"files": [
"build",
Expand Down

0 comments on commit 509b590

Please sign in to comment.