Socket
Socket
Sign inDemoInstall

@furystack/repository

Package Overview
Dependencies
Maintainers
1
Versions
199
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@furystack/repository - npm Package Compare versions

Comparing version 9.0.3 to 9.0.4

80

CHANGELOG.md

@@ -10,7 +10,2 @@ # Change Log

### [5.0.29](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.28...@furystack/repository@5.0.29) (2022-02-02)

@@ -20,7 +15,2 @@

### [5.0.28](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.26...@furystack/repository@5.0.28) (2022-01-10)

@@ -30,7 +20,2 @@

### [5.0.27](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.26...@furystack/repository@5.0.27) (2022-01-10)

@@ -40,7 +25,2 @@

### [5.0.26](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.25...@furystack/repository@5.0.26) (2021-12-20)

@@ -50,7 +30,2 @@

### [5.0.25](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.24...@furystack/repository@5.0.25) (2021-12-08)

@@ -60,7 +35,2 @@

### [5.0.24](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.23...@furystack/repository@5.0.24) (2021-11-30)

@@ -70,7 +40,2 @@

### [5.0.23](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.22...@furystack/repository@5.0.23) (2021-11-29)

@@ -80,7 +45,2 @@

### [5.0.22](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.21...@furystack/repository@5.0.22) (2021-11-19)

@@ -90,7 +50,2 @@

### [5.0.21](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.20...@furystack/repository@5.0.21) (2021-11-09)

@@ -100,7 +55,2 @@

### [5.0.20](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.19...@furystack/repository@5.0.20) (2021-10-15)

@@ -110,7 +60,2 @@

### [5.0.19](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.18...@furystack/repository@5.0.19) (2021-10-05)

@@ -120,7 +65,2 @@

### [5.0.18](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.17...@furystack/repository@5.0.18) (2021-09-16)

@@ -130,7 +70,2 @@

### [5.0.17](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.16...@furystack/repository@5.0.17) (2021-08-27)

@@ -140,7 +75,2 @@

### [5.0.16](https://github.com/furystack/furystack/compare/@furystack/repository@5.0.15...@furystack/repository@5.0.16) (2021-08-19)

@@ -150,7 +80,2 @@

### [5.0.15](https://github.com/furystack/furystack/compare/@furystack/repository@4.0.6...@furystack/repository@5.0.15) (2021-08-19)

@@ -160,9 +85,4 @@

### [5.0.14](https://github.com/furystack/furystack/compare/@furystack/repository@4.0.6...@furystack/repository@5.0.14) (2021-07-30)
**Note:** Version bump only for package @furystack/repository

6

esm/dataset.spec.js

@@ -82,3 +82,3 @@ import { Injector } from '@furystack/inject';

getRepository(i).createDataSet(TestClass, 'id', { authorizeAdd });
const dataSet = await getDataSetFor(i, TestClass, 'id');
const dataSet = getDataSetFor(i, TestClass, 'id');
try {

@@ -156,3 +156,3 @@ await dataSet.add(i, { id: 1, value: 'asd' });

getRepository(i).createDataSet(TestClass, 'id', { authorizeUpdateEntity });
const dataSet = await getDataSetFor(i, TestClass, 'id');
const dataSet = getDataSetFor(i, TestClass, 'id');
try {

@@ -189,3 +189,3 @@ await dataSet.add(i, { id: 1, value: 'asd' });

getRepository(i).createDataSet(TestClass, 'id', { authorizeUpdate });
const dataSet = await getDataSetFor(i, TestClass, 'id');
const dataSet = getDataSetFor(i, TestClass, 'id');
try {

@@ -192,0 +192,0 @@ await dataSet.add(i, { id: 1, value: 'asd' });

{
"name": "@furystack/repository",
"version": "9.0.3",
"version": "9.0.4",
"description": "Repository implementation for FuryStack",

@@ -40,5 +40,5 @@ "type": "module",

"dependencies": {
"@furystack/core": "^14.0.3",
"@furystack/inject": "^11.0.2",
"@furystack/utils": "^7.0.1"
"@furystack/core": "^14.0.4",
"@furystack/inject": "^11.0.3",
"@furystack/utils": "^7.0.2"
},

@@ -45,0 +45,0 @@ "devDependencies": {

@@ -105,3 +105,3 @@ import { Injector } from '@furystack/inject'

const dataSet = await getDataSetFor(i, TestClass, 'id')
const dataSet = getDataSetFor(i, TestClass, 'id')

@@ -193,3 +193,3 @@ try {

const dataSet = await getDataSetFor(i, TestClass, 'id')
const dataSet = getDataSetFor(i, TestClass, 'id')

@@ -228,3 +228,3 @@ try {

const dataSet = await getDataSetFor(i, TestClass, 'id')
const dataSet = getDataSetFor(i, TestClass, 'id')

@@ -231,0 +231,0 @@ try {

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc