objection-unique
Advanced tools
Comparing version
# Changelog | ||
## [v0.2.1](https://github.com/seegno/objection-unique/tree/v0.2.1) (2017-09-28) | ||
[Full Changelog](https://github.com/seegno/objection-unique/compare/v0.2.0...v0.2.1) | ||
**Merged pull requests:** | ||
- Update yarn lockfile [\#7](https://github.com/seegno/objection-unique/pull/7) ([nunorafaelrocha](https://github.com/nunorafaelrocha)) | ||
- Fix a bug when running patch queries [\#6](https://github.com/seegno/objection-unique/pull/6) ([dsego](https://github.com/dsego)) | ||
## [v0.2.0](https://github.com/seegno/objection-unique/tree/v0.2.0) (2017-08-11) | ||
@@ -4,0 +12,0 @@ [Full Changelog](https://github.com/seegno/objection-unique/compare/v0.1.0...v0.2.0) |
@@ -76,3 +76,3 @@ 'use strict'; | ||
getQuery(update, queryOptions) { | ||
return options.fields.reduce((queries, field) => { | ||
return options.fields.reduce((queries, field, index) => { | ||
if (isNil(this[field])) { | ||
@@ -94,3 +94,3 @@ return queries; | ||
queries.push(query); | ||
queries[index] = query; | ||
@@ -97,0 +97,0 @@ return queries; |
{ | ||
"name": "objection-unique", | ||
"version": "0.2.0", | ||
"version": "0.2.1", | ||
"description": "objection-unique", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -136,2 +136,26 @@ | ||
it('should throw a `ValidationError` for the correct field when patching.', async () => { | ||
const TestModel = modelFactory({ | ||
fields: ['bar', 'foo'] | ||
}); | ||
await TestModel.query().insert({ bar: 'bar', foo: 'foo' }); | ||
const result = await TestModel.query().insertAndFetch({ bar: 'biz', foo: 'buz' }); | ||
try { | ||
await result.$query().patch({ foo: 'foo' }); | ||
fail(); | ||
} catch (e) { | ||
expect(e).toBeInstanceOf(ValidationError); | ||
expect(e.data).toEqual({ | ||
foo: [{ | ||
keyword: 'unique', | ||
message: 'foo already in use.' | ||
}] | ||
}); | ||
} | ||
}); | ||
it('should update the entity ignoring the unique validation if the values are from the same entity that are begin updated.', async () => { | ||
@@ -138,0 +162,0 @@ const TestModel = modelFactory({ |
Sorry, the diff of this file is not supported yet
New author
Supply chain riskA new npm collaborator published a version of the package for the first time. New collaborators are usually benign additions to a project, but do indicate a change to the security surface area of a package.
Found 1 instance in 1 package
145085
0.54%319
6.33%1
Infinity%