New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@aetheris/react-query

Package Overview
Dependencies
Maintainers
0
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@aetheris/react-query - npm Package Compare versions

Comparing version
0.0.32
to
0.0.33
+7
-7
.turbo/turbo-build.log

@@ -10,10 +10,10 @@ yarn run v1.22.10

ESM Build start
CJS dist/server.cjs 2.91 KB
CJS dist/index.cjs 6.69 KB
CJS ⚡️ Build success in 76ms
ESM dist/server.js 1.84 KB
ESM dist/index.js 4.95 KB
ESM ⚡️ Build success in 71ms
CJS dist/server.cjs 2.91 KB
CJS dist/index.cjs 6.78 KB
CJS ⚡️ Build success in 71ms
ESM dist/index.js 4.87 KB
ESM ⚡️ Build success in 77ms
DTS Build start
DTS ⚡️ Build success in 1888ms
DTS ⚡️ Build success in 1876ms
DTS dist/index.d.cts 3.97 KB

@@ -23,2 +23,2 @@ DTS dist/server.d.cts 1.56 KB

DTS dist/server.d.ts 1.56 KB
✨ Done in 3.16s.
✨ Done in 3.00s.
# @aetheris/react-query
## 0.0.33
### Patch Changes
- update dependencies
## 0.0.32

@@ -4,0 +10,0 @@

@@ -113,6 +113,2 @@ "use strict";

const ref = import_react.default.useRef();
const key = import_react.default.useMemo(
() => props.join(".") + JSON.stringify(options.input),
[props, options.input]
);
import_react.default.useEffect(() => {

@@ -122,2 +118,3 @@ if (typeof window === "undefined") {

}
const key = props.join(".") + JSON.stringify(options.input);
const handleMessage = (data) => {

@@ -159,3 +156,3 @@ const subscription = subscriptions.get(key);

};
}, [key]);
}, [props, options]);
return {

@@ -162,0 +159,0 @@ unsubscribe: ref.current

@@ -80,6 +80,2 @@ // src/core/create-aetheris-react.tsx

const ref = React.useRef();
const key = React.useMemo(
() => props.join(".") + JSON.stringify(options.input),
[props, options.input]
);
React.useEffect(() => {

@@ -89,2 +85,3 @@ if (typeof window === "undefined") {

}
const key = props.join(".") + JSON.stringify(options.input);
const handleMessage = (data) => {

@@ -126,3 +123,3 @@ const subscription = subscriptions.get(key);

};
}, [key]);
}, [props, options]);
return {

@@ -129,0 +126,0 @@ unsubscribe: ref.current

{
"name": "@aetheris/react-query",
"version": "0.0.32",
"version": "0.0.33",
"license": "MIT",

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

@@ -182,6 +182,2 @@ import {

const ref = React.useRef<() => void>();
const key = React.useMemo(
() => props.join(".") + JSON.stringify(options.input),
[props, options.input],
);

@@ -193,2 +189,4 @@ React.useEffect(() => {

const key = props.join(".") + JSON.stringify(options.input);
const handleMessage = (data: any) => {

@@ -235,3 +233,3 @@ const subscription = subscriptions.get(key);

};
}, [key]);
}, [props, options]);

@@ -238,0 +236,0 @@ return {