New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

objection-unique

Package Overview
Dependencies
Maintainers
3
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

objection-unique - npm Package Compare versions

Comparing version

to
0.2.1

8

CHANGELOG.md
# 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)

4

index.js

@@ -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