Comparing version 5.7.0 to 6.0.0
@@ -75,3 +75,3 @@ "use strict"; | ||
__decorate([ | ||
typeorm_1.Column(), | ||
typeorm_1.Column("text"), | ||
__metadata("design:type", String) | ||
@@ -78,0 +78,0 @@ ], Claim.prototype, "value", void 0); |
@@ -6,2 +6,18 @@ # Change Log | ||
# [6.0.0](https://github.com/uport-project/daf/compare/v5.7.0...v6.0.0) (2020-05-29) | ||
### Bug Fixes | ||
* Big value handling ([#167](https://github.com/uport-project/daf/issues/167)) ([39a76b6](https://github.com/uport-project/daf/commit/39a76b60ecc085d7ce0c476b0b20e166b415d408)) | ||
### BREAKING CHANGES | ||
* database schema change required to accept large claims | ||
# [5.7.0](https://github.com/uport-project/daf/compare/v5.6.7...v5.7.0) (2020-05-29) | ||
@@ -8,0 +24,0 @@ |
{ | ||
"name": "daf-core", | ||
"description": "DID Agent Framework Core", | ||
"version": "5.7.0", | ||
"version": "6.0.0", | ||
"main": "build/index.js", | ||
@@ -32,3 +32,3 @@ "types": "build/index.d.ts", | ||
"keywords": [], | ||
"gitHead": "989720281c3159aee656ee1098cb507aa10ce218" | ||
"gitHead": "5b40055db6fa38c8e39157f186cd66a8f0f9e096" | ||
} |
@@ -50,3 +50,3 @@ import { Entity, Column, BaseEntity, ManyToOne, PrimaryColumn } from 'typeorm' | ||
@Column() | ||
@Column("text") | ||
value: string | ||
@@ -53,0 +53,0 @@ |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
349155