Skip to content

Commit 252d945

Browse files
authored
Cut v0.5.0 (#56)
1 parent 4e40b2e commit 252d945

File tree

10 files changed

+86
-12
lines changed

10 files changed

+86
-12
lines changed

CHANGELOG.md

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,25 @@
1-
# Changelog
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.5.0 (2020-07-01)
7+
8+
9+
### Bug Fixes
10+
11+
* support number ID field generation in StubDatabaseAdapter ([#43](https://github.com/expo/entity/issues/43)) ([60cc0fb](https://github.com/expo/entity/commit/60cc0fbda460c3ada1f5244a2780f90382fe3ebd))
12+
* upgrade Apollo server for security advisory ([#38](https://github.com/expo/entity/issues/38)) ([d25c1e1](https://github.com/expo/entity/commit/d25c1e142d52385725593f4f155d1795697ab490))
13+
14+
15+
### Features
16+
17+
* add two fan out methods to association loader ([#52](https://github.com/expo/entity/issues/52)) ([89cfb3d](https://github.com/expo/entity/commit/89cfb3d5a01d4da90f64acc52ae1b839ba348a35))
18+
* support entity fields subset of db fields ([#49](https://github.com/expo/entity/issues/49)) ([4e40b2e](https://github.com/expo/entity/commit/4e40b2e521407e521d236978ec3b3b56db3990be))
19+
20+
21+
# 0.4.0 (2020-06-03)
222

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

524
* All Packages
625
* Documentation Improvements
@@ -16,11 +35,11 @@
1635
* `@expo/entity-example`
1736
* Initial Version
1837

19-
## v0.3.0 (2020-04-28)
38+
# 0.3.0 (2020-04-28)
2039

2140
* `@expo/entity`
2241
* Initial Version
2342
* `@expo/entity-cache-adapter-redis`
2443
* Initial Version
2544
* `@expo/entity-database-adapter-knex`
26-
* Initial Version
45+
* Initial Version

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@
44
],
55
"npmClient": "yarn",
66
"useWorkspaces": true,
7-
"version": "0.4.0"
7+
"version": "0.5.0"
88
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.5.0 (2020-07-01)
7+
8+
9+
### Features
10+
11+
* support entity fields subset of db fields ([#49](https://github.com/expo/entity/issues/49)) ([4e40b2e](https://github.com/expo/entity/commit/4e40b2e521407e521d236978ec3b3b56db3990be))

packages/entity-cache-adapter-redis/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-cache-adapter-redis",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Redis cache adapter for @expo/entity",
55
"files": [
66
"build",
@@ -32,6 +32,6 @@
3232
"ioredis": "^4.16.1"
3333
},
3434
"devDependencies": {
35-
"@expo/entity": "^0.4.0"
35+
"@expo/entity": "^0.5.0"
3636
}
3737
}
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.5.0 (2020-07-01)
7+
8+
9+
### Features
10+
11+
* support entity fields subset of db fields ([#49](https://github.com/expo/entity/issues/49)) ([4e40b2e](https://github.com/expo/entity/commit/4e40b2e521407e521d236978ec3b3b56db3990be))

packages/entity-database-adapter-knex/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity-database-adapter-knex",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "Knex database adapter for @expo/entity",
55
"files": [
66
"build",
@@ -32,6 +32,6 @@
3232
"knex": "^0.20.11"
3333
},
3434
"devDependencies": {
35-
"@expo/entity": "^0.4.0"
35+
"@expo/entity": "^0.5.0"
3636
}
3737
}
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.5.0 (2020-07-01)
7+
8+
9+
### Bug Fixes
10+
11+
* upgrade Apollo server for security advisory ([#38](https://github.com/expo/entity/issues/38)) ([d25c1e1](https://github.com/expo/entity/commit/d25c1e142d52385725593f4f155d1795697ab490))
12+
13+
14+
### Features
15+
16+
* support entity fields subset of db fields ([#49](https://github.com/expo/entity/issues/49)) ([4e40b2e](https://github.com/expo/entity/commit/4e40b2e521407e521d236978ec3b3b56db3990be))

packages/entity-example/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@expo/entity-example",
33
"private": true,
4-
"version": "0.4.0",
4+
"version": "0.5.0",
55
"description": "An example integration of the @expo/entity framework",
66
"scripts": {
77
"tsc": "tsc",
@@ -22,7 +22,7 @@
2222
"author": "Expo",
2323
"license": "MIT",
2424
"dependencies": {
25-
"@expo/entity": "^0.4.0",
25+
"@expo/entity": "^0.5.0",
2626
"apollo-server-koa": "^2.14.2",
2727
"graphql": "^15.0.0",
2828
"koa": "^2.11.0",

packages/entity/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.5.0 (2020-07-01)
7+
8+
9+
### Bug Fixes
10+
11+
* support number ID field generation in StubDatabaseAdapter ([#43](https://github.com/expo/entity/issues/43)) ([60cc0fb](https://github.com/expo/entity/commit/60cc0fbda460c3ada1f5244a2780f90382fe3ebd))
12+
13+
14+
### Features
15+
16+
* add two fan out methods to association loader ([#52](https://github.com/expo/entity/issues/52)) ([89cfb3d](https://github.com/expo/entity/commit/89cfb3d5a01d4da90f64acc52ae1b839ba348a35))
17+
* support entity fields subset of db fields ([#49](https://github.com/expo/entity/issues/49)) ([4e40b2e](https://github.com/expo/entity/commit/4e40b2e521407e521d236978ec3b3b56db3990be))

packages/entity/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@expo/entity",
3-
"version": "0.4.0",
3+
"version": "0.5.0",
44
"description": "A privacy-first data model",
55
"files": [
66
"build",

0 commit comments

Comments
 (0)