Compare commits

...

2 Commits

Author SHA1 Message Date
7d3c94cae6 4.3.2
Some checks failed
Default (tags) / security (push) Successful in 58s
Default (tags) / test (push) Successful in 1m45s
Default (tags) / release (push) Failing after 59s
Default (tags) / metadata (push) Successful in 1m0s
2025-10-17 09:09:12 +00:00
5bae452365 fix(core): Remove stray console.log from core module 2025-10-17 09:09:12 +00:00
4 changed files with 7 additions and 3 deletions

View File

@@ -1,5 +1,10 @@
# Changelog
## 2025-10-17 - 4.3.2 - fix(core)
Remove stray console.log from core module
- Removed a stray debug console.log(modulePath) from ts/core/index.ts that printed the module path during Node environment initialization
## 2025-08-19 - 4.3.1 - fix(core)
Improve streaming support and timeout handling; add browser streaming & timeout tests and README clarifications

View File

@@ -1,6 +1,6 @@
{
"name": "@push.rocks/smartrequest",
"version": "4.3.1",
"version": "4.3.2",
"private": false,
"description": "A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.",
"exports": {

View File

@@ -3,6 +3,6 @@
*/
export const commitinfo = {
name: '@push.rocks/smartrequest',
version: '4.3.1',
version: '4.3.2',
description: 'A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.'
}

View File

@@ -15,7 +15,6 @@ if (smartenvInstance.isNode) {
plugins.smartpath.dirname(import.meta.url),
'../core_node/index.js',
);
console.log(modulePath);
const impl = await smartenvInstance.getSafeNodeModule(modulePath);
CoreRequest = impl.CoreRequest;
CoreResponse = impl.CoreResponse;