Comparing version 5.14.0 to 5.14.1
@@ -5,3 +5,3 @@ { | ||
"license": "MIT", | ||
"version": "5.14.0", | ||
"version": "5.14.1", | ||
"type": "module", | ||
@@ -8,0 +8,0 @@ "types": "./types/index.d.ts", |
@@ -233,4 +233,5 @@ /** @import { ComponentContext, Derived, Effect, Reaction, Signal, Source, Value } from '#client' */ | ||
// Unowned signals should never be marked as clean. | ||
if (!is_unowned) { | ||
// Unowned signals should never be marked as clean unless they | ||
// are used within an active_effect without skip_reaction | ||
if (!is_unowned || (active_effect !== null && !skip_reaction)) { | ||
set_signal_status(reaction, CLEAN); | ||
@@ -237,0 +238,0 @@ } |
@@ -9,3 +9,3 @@ // generated during release, do not modify | ||
*/ | ||
export const VERSION = '5.14.0'; | ||
export const VERSION = '5.14.1'; | ||
export const PUBLIC_VERSION = '5'; |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
2457144
54206