William Bonawentura
William Bonawentura
Have you tried configuring it via xml ? https://developer.android.com/training/articles/security-config#CertificatePinning
> Can you run `node --version` locally. There was never a Node.js version 3, as version three was part of the IO.js project. Currently supported versions of Node.js are 10,...
> > You should be able to work around this by implementing your custom loader to support a get_format hook which allows extensionless files. Thanks !. It's a duct-tape but...
I read the Node documentation to confirm my ignorance of the loader (https://nodejs.org/dist/latest-v13.x/docs/api/esm.html#esm_experimental_loaders). > When hooks are used they only apply to ES module loading and not to any CommonJS...
@guybedford Finally i added test for (also!) extensionless internal modules which `defaultGetFormat` recognize correctly: ```js export async function getFormat(urlString, context, defaultGetFormat) { // support for extensionless files in "bin" scripts...
I tested such minor changes and it works: `src/njsVariable.c` ```c bool njsVariable_initForQuery(njsVariable *vars, uint32_t numVars, dpiStmt *handle, njsBaton *baton) { case DPI_ORACLE_TYPE_TIMESTAMP_LTZ: if (vars[i].varTypeNum != DPI_ORACLE_TYPE_VARCHAR) { vars[i].varTypeNum = DPI_ORACLE_TYPE_TIMESTAMP_LTZ;...
node-oracledb 6.0: ```js await conn.execute("ALTER SESSION SET NLS_TERRITORY = 'SPAIN'" ); // comma number separator const {rows} = await conn.execute('select 38.73 AS N1, 38.73 AS N2, TO_CHAR(38.73) AS N3 from...
There is my PoC: ```js import {URL} from 'node:url'; import {getGlobalDispatcher, setGlobalDispatcher, Dispatcher, ProxyAgent} from 'undici'; const proxyAgents = Object.fromEntries( ['http', 'https'].map( protocol => { const uri = process.env[ `${protocol}_proxy`...
> We would also need to think about how to retrieve data from Oracle Database as `bigint` datatype as well. This translation is already possible for columns. ```js const fetchTypeHandler...
> Since the suggested code change is not in the code for Thin mode, I believe this bug could have existed with earlier versions also. Need to check it out....