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

@maybe-remote/rxjs

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@maybe-remote/rxjs - npm Package Compare versions

Comparing version 0.0.5 to 0.0.6

7

CHANGELOG.md

@@ -0,1 +1,8 @@

## 0.0.6 (2024-10-15)
### 🩹 Fixes
- **rxjs:** subscriptions no longer weirdly multicast ([c2166b2](https://github.com/benlesh/maybe-remote/commit/c2166b2))
## 0.0.5 (2024-10-14)

@@ -2,0 +9,0 @@

2

package.json
{
"name": "@maybe-remote/rxjs",
"version": "0.0.5",
"version": "0.0.6",
"dependencies": {

@@ -5,0 +5,0 @@ "tslib": "^2.3.0"

@@ -251,3 +251,3 @@ import {

return (...params: any[]) => {
const subscriptionId = crypto.randomUUID();
const observableId = crypto.randomUUID();

@@ -257,3 +257,3 @@ connection.send({

payload: {
subscriptionId,
observableId,
method,

@@ -265,2 +265,4 @@ params,

const observable = new Observable<any>((subscriber) => {
const subscriptionId = crypto.randomUUID();
const dispose = connection.onMessage((message) => {

@@ -302,2 +304,3 @@ switch (message.type) {

payload: {
observableId,
subscriptionId,

@@ -308,3 +311,3 @@ },

this.refs.set(subscriptionId, new WeakRef(observable));
this.refs.set(observableId, new WeakRef(observable));

@@ -311,0 +314,0 @@ return observable;

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