Revisions of nodejs13

Adam Majer's avatar Adam Majer (adamm) committed (revision 30)
Adam Majer's avatar Adam Majer (adamm) committed (revision 29)
- Update to 13.14.0:
  * async_hooks:
   + Merge run and exit methods
   + Prevent sync methods of async storage exiting outer context
  * vm: Add importModuleDynamically option to compileFunction
Adam Majer's avatar Adam Majer (adamm) committed (revision 28)
Adam Majer's avatar Adam Majer (adamm) committed (revision 27)
- linker_lto_jobs.patch: serialize linker during build
Adam Majer's avatar Adam Majer (adamm) committed (revision 26)
Adam Majer's avatar Adam Majer (adamm) committed (revision 25)
- Update to 13.13.0:
  * fs:
    + new overload is available for fs.readSync, which allows to
      optionally pass any of the offset, length and position parameters
    + add fs.readv (with sync and promisified versions). This function
      takes an array of ArrayBufferView elements and will write
      the data it reads sequentially to the buffers
  * dns: Added the dns.ALL flag, that can be passed to dns.lookup()
    with dns.V4MAPPED to return resolved IPv6 addresses as well
    as IPv4 mapped IPv6 addresses
  * http: default maximum HTTP header size was changed from 8KB to 16KB
  * n-api: Calls to napi_call_threadsafe_function from the main thread
    can now return the napi_would_deadlock status
  * util: Added a new maxStrLength option to util.inspect with
    Infinity being default.
  * worker: Added support for passing a transferList along with
    workerData to the Worker constructor
- fix_ci_tests.patch: refreshed
Adam Majer's avatar Adam Majer (adamm) committed (revision 24)
- Update to 13.12.0:
  * deps:
    + upgrade npm to 6.14.4 (Ruy Adorno) #32495
    + update to uvwasi 0.0.6 (Colin Ihrig) #32309
    + upgrade to libuv 1.35.0 (Colin Ihrig) #32204
  * lib: add --disable-proto option to cli
  * node_report:  move diagnostic reports to stable
  * worker: allow URL in Worker constructor
  * util: use a global symbol for util.promisify.custom
Adam Majer's avatar Adam Majer (adamm) committed (revision 23)
- Update to 13.11.0:
  * async_hooks: add sync enterWith to ALS
  * cli: allow --jitless V8 flag in NODE_OPTIONS
  * fs: return first folder made by mkdir recursive
  * n-api: define release 6
  * os: create a getter for kernel version
  * wasi: add returnOnExit option
Adam Majer's avatar Adam Majer (adamm) committed (revision 22)
- Update to 13.10.1:
  * async_hooks: introduce async-context API
  * stream: support passing generator functions into pipeline()
  * tls: expose SSL_export_keying_material
  * vm: implement vm.measureMemory() for per-context measurement
- openssl_rand_regression.patch: upstreamed

- openssl_rand_regression.patch: Add getrandom syscall definition
  for all Linux platforms. This fixes a runtime error in SLE-12
  (bnc#1162117)
Adam Majer's avatar Adam Majer (adamm) committed (revision 21)
Adam Majer's avatar Adam Majer (adamm) committed (revision 20)
- Update to 13.9.0:
  * async_hooks: add executionAsyncResource
  * crypto:
    + add crypto.diffieHellman
    + add DH support to generateKeyPair and simplify DH groups
    + add key type 'dh'
  * test: skip keygen tests on arm systems
  * perf_hooks: add property flags to GCPerformanceEntry
  * process: report ArrayBuffer memory in memoryUsage()
  * readline: make tab size configurable
  * report: add support for Workers
  * worker: add ability to take heap snapshot from parent thread
- wasi_compile_flags.patch: upstreamed
Adam Majer's avatar Adam Majer (adamm) committed (revision 19)
- wasi_compile_flags.patch: fix header inclusions in uvwasi dependency
Adam Majer's avatar Adam Majer (adamm) committed (revision 18)
Adam Majer's avatar Adam Majer (adamm) committed (revision 17)
- Update to 13.8.0:
  * fixes a remotely triggerable assertion on a TLS server via a
    crafted certificate string (CVE-2019-15604, bsc#1163104)
  * fixes an HTTP request smuggling vulnerability via malformed
    Transfer-Encoding header (CVE-2019-15605, bsc#1163102)
  * trim HTTP header values of optional white space
    (CVE-2019-15606, bsc#1163103)
  * enabled stricter HTTP header parsing by default.
Adam Majer's avatar Adam Majer (adamm) committed (revision 16)
- Update to 13.7.0:
  * deps:
    + upgrade to libuv 1.34.1
    + upgrade npm to 6.13.6
  * module:
    + add API for interacting with source maps
    + loader getSource, getFormat, transform hooks
    + logical conditional exports ordering
    + unflag conditional exports
  * process: allow monitoring uncaughtException
- python3.patch: upstreamed
- versioned.patch, skip_no_console.patch: refreshed
Adam Majer's avatar Adam Majer (adamm) committed (revision 15)
- Update to 13.6.0:
  * assert: Implement assert.match() and assert.doesNotMatch()
  * events:
    + Add EventEmitter.on to async iterate over events
    + Allow monitoring error events
  * fs: Allow overriding fs for streams
  * perf_hooks: Move perf_hooks out of experimental
  * repl: Implement ZSH-like reverse-i-search
  * tls: Add PSK (pre-shared key) support
- fix_ci_tests.patch: refreshed
Adam Majer's avatar Adam Majer (adamm) committed (revision 14)
Syncing ARM fixes
Adam Majer's avatar Adam Majer (adamm) committed (revision 13)
Adam Majer's avatar Adam Majer (adamm) committed (revision 12)
- sle12_python3_compat.patch: Adds Python 3.4 to compatible
  python versions allowing us to build with python3 on SLE-12
Adam Majer's avatar Adam Majer (adamm) committed (revision 11)
- Update to 13.5.0:
  * cli: add --trace-exit cli option
  * http, https: increase server headers timeout
  * readline:
    + update ansi-regex
    + promote _getCursorPos to public api
  * repl: add completion preview
  * util: add Set and map size to inspect output
  * wasi: require CLI flag to require() wasi module
- Changes in 13.4.0:
  * deps:
    + update npm to 6.13.4 fixing an arbitrary path overwrite
    and access via "bin" field (bsc#1159352, CVE-2019-16777,
    CVE-2019-16776, CVE-2019-16775)
    + update uvwasi
    + upgrade to libuv 1.34.0
  * doc: docs deprecate http finished
  * events: add captureRejection option
  * http:
    + add captureRejection support
    + llhttp opt-in insecure HTTP header parsing
  * http2: implement capture rection for 'request' and 'stream' events
  * net: implement capture rejections for 'connection' event
  * repl: support previews by eager evaluating input
  * stream: add support for captureRejection option
  * tls:
    + implement capture rejections for 'secureConnection' event
    + expose IETF name for current cipher suite
  * worker: add argv constructor option
- skip_no_console.patch, versioned.patch: refreshed
Displaying revisions 1 - 20 of 30
openSUSE Build Service is sponsored by