Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@data-eden/athena

Package Overview
Dependencies
Maintainers
4
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@data-eden/athena - npm Package Compare versions

Comparing version 0.8.0 to 0.8.1

40

__tests__/client.test.ts

@@ -244,2 +244,22 @@ import { describe, test, expect, beforeEach } from 'vitest';

},
{
id: '3',
__typename: 'Comment',
message: 'third comment',
author: {
id: '1',
__typename: 'Author',
name: 'Foo',
},
},
{
id: '4',
__typename: 'Comment',
message: 'fourth comment',
author: {
id: '1',
__typename: 'Author',
name: 'Foo',
},
},
],

@@ -276,2 +296,22 @@ },

},
{
"__typename": "Comment",
"author": {
"__typename": "Author",
"id": "1",
"name": "Foo",
},
"id": "3",
"message": "third comment",
},
{
"__typename": "Comment",
"author": {
"__typename": "Author",
"id": "1",
"name": "Foo",
},
"id": "4",
"message": "fourth comment",
},
],

@@ -278,0 +318,0 @@ "id": "1",

5

dist/signal-cache.js

@@ -215,7 +215,2 @@ import { createSignalProxy } from './signal-proxy.js';

}
// If this node has already been visited, we know it has already been fully traversed
// and don't need to continue
if (visited.has(value)) {
return false;
}
// If we've made it here, it means that we've fully traversed all the elements in this path

@@ -222,0 +217,0 @@ // and can mark this node as having been visited so we don't traverse it again

4

package.json
{
"name": "@data-eden/athena",
"version": "0.8.0",
"version": "0.8.1",
"repository": {

@@ -28,3 +28,3 @@ "type": "git",

"dependencies": {
"@data-eden/cache": "^0.8.0",
"@data-eden/cache": "^0.8.1",
"lodash-es": "^4.17.21"

@@ -31,0 +31,0 @@ },

@@ -315,8 +315,2 @@ import type { Entries } from 'type-fest';

// If this node has already been visited, we know it has already been fully traversed
// and don't need to continue
if (visited.has(value)) {
return false;
}
// If we've made it here, it means that we've fully traversed all the elements in this path

@@ -323,0 +317,0 @@ // and can mark this node as having been visited so we don't traverse it again

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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