node-aix-ppc64 24.0.2 → 24.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -23,8 +23,8 @@
23
23
  #define SRC_NODE_VERSION_H_
24
24
 
25
25
  #define NODE_MAJOR_VERSION 24
26
- #define NODE_MINOR_VERSION 0
27
- #define NODE_PATCH_VERSION 2
26
+ #define NODE_MINOR_VERSION 2
27
+ #define NODE_PATCH_VERSION 0
28
28
 
29
29
  #define NODE_VERSION_IS_LTS 0
30
30
  #define NODE_VERSION_LTS_CODENAME ""
@@ -31,7 +31,7 @@
31
31
  */
32
32
 
33
33
  #define UV_VERSION_MAJOR 1
34
- #define UV_VERSION_MINOR 50
34
+ #define UV_VERSION_MINOR 51
35
35
  #define UV_VERSION_PATCH 0
36
36
  #define UV_VERSION_IS_RELEASE 1
37
37
  #define UV_VERSION_SUFFIX ""
@@ -499,8 +499,11 @@ typedef struct {
499
499
  union { \
500
500
  struct { \
501
501
  /* Used for readable TTY handles */ \
502
- /* TODO: remove me in v2.x. */ \
503
- HANDLE unused_; \
502
+ union { \
503
+ /* TODO: remove me in v2.x. */ \
504
+ HANDLE unused_; \
505
+ int mode; \
506
+ } mode; \
504
507
  uv_buf_t read_line_buffer; \
505
508
  HANDLE read_raw_wait; \
506
509
  /* Fields used for translating win keystrokes into vt100 characters */ \
package/include/node/uv.h CHANGED
@@ -58,6 +58,7 @@ extern "C" {
58
58
  #include <stddef.h>
59
59
  #include <stdio.h>
60
60
  #include <stdint.h>
61
+ #include <math.h>
61
62
 
62
63
  /* Internal type, do not use. */
63
64
  struct uv__queue {
@@ -805,10 +806,15 @@ struct uv_tty_s {
805
806
  typedef enum {
806
807
  /* Initial/normal terminal mode */
807
808
  UV_TTY_MODE_NORMAL,
808
- /* Raw input mode (On Windows, ENABLE_WINDOW_INPUT is also enabled) */
809
+ /*
810
+ * Raw input mode (On Windows, ENABLE_WINDOW_INPUT is also enabled).
811
+ * May become equivalent to UV_TTY_MODE_RAW_VT in future libuv versions.
812
+ */
809
813
  UV_TTY_MODE_RAW,
810
814
  /* Binary-safe I/O mode for IPC (Unix-only) */
811
- UV_TTY_MODE_IO
815
+ UV_TTY_MODE_IO,
816
+ /* Raw input mode. On Windows ENABLE_VIRTUAL_TERMINAL_INPUT is also set. */
817
+ UV_TTY_MODE_RAW_VT
812
818
  } uv_tty_mode_t;
813
819
 
814
820
  typedef enum {
@@ -1585,6 +1591,8 @@ UV_EXTERN int uv_fs_chmod(uv_loop_t* loop,
1585
1591
  const char* path,
1586
1592
  int mode,
1587
1593
  uv_fs_cb cb);
1594
+ #define UV_FS_UTIME_NOW (INFINITY)
1595
+ #define UV_FS_UTIME_OMIT (NAN)
1588
1596
  UV_EXTERN int uv_fs_utime(uv_loop_t* loop,
1589
1597
  uv_fs_t* req,
1590
1598
  const char* path,
@@ -11,7 +11,7 @@
11
11
  #define V8_MAJOR_VERSION 13
12
12
  #define V8_MINOR_VERSION 6
13
13
  #define V8_BUILD_NUMBER 233
14
- #define V8_PATCH_LEVEL 8
14
+ #define V8_PATCH_LEVEL 10
15
15
 
16
16
  // Use 1 for candidates and 0 otherwise.
17
17
  // (Boolean macro values are not supported by all preprocessors.)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "node-aix-ppc64",
3
- "version": "v24.0.2",
3
+ "version": "v24.2.0",
4
4
  "description": "node",
5
5
  "bin": {
6
6
  "node": "bin/node"