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

hydro-js

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hydro-js - npm Package Compare versions

Comparing version 1.5.15 to 1.5.16

8

CHANGELOG.md
# Changelog
## 1.5.16- 2024-02-16
- Fix bug where false variable matched incorrectly in the switch
## 1.5.15- 2024-02-14
- Fix bug where web components where not registered correctly in the h function
## 1.5.14- 2023-04-04

@@ -4,0 +12,0 @@

4

dist/library.js

@@ -141,2 +141,6 @@ // Safari Polyfills

case isNode(variable) && variable: {
if (variable === false) {
resolvedVariables.push(String(variable));
break;
}
insertNodes.push(variable);

@@ -143,0 +147,0 @@ resolvedVariables.push(template);

2

package.json
{
"name": "hydro-js",
"version": "1.5.15",
"version": "1.5.16",
"description": "A lightweight reactive library",

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

@@ -247,2 +247,6 @@ declare global {

case isNode(variable) && variable: {
if (variable === false) {
resolvedVariables.push(String(variable));
break;
}
insertNodes.push(variable);

@@ -249,0 +253,0 @@ resolvedVariables.push(template);

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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