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

@polywrap/http-plugin-js

Package Overview
Dependencies
Maintainers
2
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@polywrap/http-plugin-js - npm Package Versions

134

0.10.0-pre.5

Diff
polywrap-build-bot
published 0.10.0-pre.5 •
polywrap-build-bot
published 0.10.0-pre.4 •
polywrap-build-bot
published 0.10.0-pre.3 •
polywrap-build-bot
published 0.10.0-pre.1 •
polywrap-build-bot
published 0.10.0-pre.0 •
polywrap-build-bot
published 0.9.4 •
polywrap-build-bot
published 0.9.3 •

Changelog

Source

Polywrap Origin (0.9.3)

Bugs

  • PR-1344 @polywrap/cli: Improve workflow validation.
  • PR-1345 @polywrap/cli: The ens-recursive-name-register deploy step now properly registers ENS sub-domains recursively.
  • PR-1342 @polywrap/polywrap-manifest-schemas: Accept @ character in folder paths.
  • PR-1333 @polywrap/client-js: Added TsDoc comments to the PolywrapClient class.
  • PR-1337 @polywrap/schema-bind: In Rust bindings, enum imports are now added in serialization modules when the enum is a subtype of an array (Vec) or map.
polywrap-build-bot
published 0.9.2 •

Changelog

Source

Polywrap Origin (0.9.2)

Bugs

  • PR-1327 @polywrap/schema-bind: Added missing serialization bindings for module method arguments & return values.
polywrap-build-bot
published 0.9.1 •

Changelog

Source

Polywrap Origin (0.9.1)

Bugs

  • PR-1320 @polywrap/ethereum-plugin-js: Proper view method result parsing.
  • PR-1317 @polywrap/core-js, @polywrap/uri-resolvers-extensions-js: Properly check for null when using UriResolverExtensionFileReader to read wasm module.
  • PR-1318 polywrap CLI: The codegen command properly applies the -g, --codegen-dir option.
  • PR-1318 @polywrap/templates: Fix several issues within the wasm template projects.
  • PR-1316 polywrap CLI: Fix an issue where the CLI process would hang after the command had completed.
  • PR-1315 polywrap CLI: Minor cleanup post logging refactor.
  • PR-1310 polywrap CLI: Use base images from the "polywrap" Docker Hub organization.
polywrap-build-bot
published 0.9.0 •

Changelog

Source

Polywrap Origin (0.9.0)

Features

  • PR-1306 polywrap CLI: Console logging has been improved, and all commands now support -q, --quiet and -v, --verbose options.
  • PR-1204 polywrap CLI: Build times are faster for wasm wrappers!!! The build command has been updated to include the concept of "build strategies". The existing way of building (via Dockerfile image layers) is available through the polywrap build --strategy image command. Building without Docker (if all build-time dependencies are installed locally) can be performed using --strategy local. And lastly, the new default build strategy is --strategy vm, which runs all build steps in a pre-built base image, allowing for near-local speeds (once the image has been downloaded).
    • NOTE: --strategy image is useful for source-code verification, something we'll be better supporting in the future.
  • PR-1297 @polywrap/schema-bind: wasm/rust now has support for println!(...) and print!(...) macros. They have been redefined to use the polywrap_wasm_rs::wrap_debug_log(...) function.
  • PR-1192 @polywrap/client-js: PolywrapClient.invoke(...) now supports invoke-time environment variables, passed in via the env property.
  • PR-1270 polywrap CLI: The manifest command has been added:
Usage: polywrap manifest|m [options] [command]
Inspect & Migrade Polywrap Manifests
Options:
  -h, --help                  display help for command
Commands:
  schema|s [options] [type]   Prints out the schema for the current manifest format.
  migrate|m [options] [type]  Migrates the polywrap project manifest to the latest version.
  help [command]              display help for command
  • PR-1301 Added a --format option to the migrate command, enabling the targeting of specific format versions when migrating manifests (ex: polywrap manifest migrate -f 0.2.0).
  • PR-1218 polywrap CLI, @polywrap/tracing-js: The tracing infrastructure module (i.e. polywrap infra up --modules tracing) now uses version 0.11.0 of the SizNoz tracing service. Additionally the underlying @polywrap/tracing-js library has been updated to support this, and also now has named traces via the traceName configuration property.

Bugs

  • PR-1304 polywrap CLI: Generated build files from the vm strategy now have proper file-system permissions.
  • PR-1305 @polywrap/ipfs-plugin-js: Fallback providers are now properly being used.
  • PR-1296 polywrap CLI: The polywrap.app.yaml and polywrap.plugin.yaml project manifest file names are being deprecated in favor of a unified polywrap.yaml file for all types of projects (wasm, interface, plugin, app). They will still silently work now, but in the future will no longer be recognized defaults.
  • PR-1303 @polywrap/core-js: The Uri class now properly formats itself when being JSON.stringify(...)'d.
  • PR-1288 @polywrap/core-js: Correctly handle errors in the getImplementations algorithm.
  • PR-1298 @polywrap/ipfs-plugin-js, @polywrap/ipfs-resolver-plugin-js: Remove the use of require(...) statements.
  • PR-1286 @polywrap/polywrap-manifest-types-js: Manifest migration logic has been upgraded to use a strategy that finds a "shortest path" between the from and to format versions, using predefined migration functions.

Breaking Changes

  • PR-1284 @polywrap/core-js: Wrapper.getFile(...) and Wrapper.getManifest(...) no longer require a Client instance as a second function argument.
  • PR-1291 @polywrap/core-js, @polywrap/client-js: All ClientConfig properties are now readonly.
  • PR-1287 @polywrap/core-js: executeMaybeAsyncFunction has been removed.
  • PR-1277 @polywrap/client-js: The following methods now return the Result<T, E> type, and will not throw exceptions: getManifest(...), getFile(...), getImplementations(...), query(...), invokeWrapper(...), invoke(...), loadWrapper(...).
  • PR-1192 @polywrap/client-js: PolywrapClient.invoke(...) no longer accepts invoke-time reconfiguration via the config property. Users who wish to reconfigure the client can do so by calling client.getConfig(), modifying it via the ClientConfigBuilder, and constructing a new PolywrapClient instance.