frida 17.5.2 → 17.6.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "frida",
3
- "version": "17.5.2",
3
+ "version": "17.6.0",
4
4
  "authors": [
5
5
  "Frida Developers"
6
6
  ],
package/releng/deps.toml CHANGED
@@ -1,5 +1,5 @@
1
1
  [dependencies]
2
- version = "20250919"
2
+ version = "20260106"
3
3
  bootstrap_version = "20250801"
4
4
 
5
5
  [ninja]
@@ -65,7 +65,7 @@ options = [
65
65
  [selinux]
66
66
  when = "machine.os == 'android'"
67
67
  name = "SELinux Userspace"
68
- version = "6d5513fd8069e9ff9b7aa10970d34457b32970c8"
68
+ version = "b7c8cd70d821bb3fc69500e6273149299b80b923"
69
69
  url = "https://github.com/frida/selinux.git"
70
70
  options = [
71
71
  "-Dregex=disabled",
@@ -73,7 +73,7 @@ options = [
73
73
 
74
74
  [glib]
75
75
  name = "GLib"
76
- version = "9dc59b1b5503789ada22f7699e53256fa3287217"
76
+ version = "81b631758fe5c665ade9d869554148f6160fe681"
77
77
  url = "https://github.com/frida/glib.git"
78
78
  options = [
79
79
  "-Dcocoa=disabled",
@@ -218,7 +218,7 @@ url = "https://github.com/frida/libusb.git"
218
218
  [lwip]
219
219
  when = "machine.os != 'none'"
220
220
  name = "lwIP"
221
- version = "4fe7223c2e80dc328266fb2483e789ee5fad7c79"
221
+ version = "334ebb20a22023db2f0d5017e96eb0c7798082fd"
222
222
  url = "https://github.com/frida/lwip.git"
223
223
  options = [
224
224
  "-Dipv4=disabled",
@@ -386,7 +386,7 @@ when = """ \
386
386
  and machine.os not in {'none', 'qnx'} \
387
387
  """
388
388
  name = "V8"
389
- version = "669119f601663b73fc01f8eee02cf2f093bbf25b"
389
+ version = "ef1c2f15d84ff1e1afcc6dd165a23c9fd63608b4"
390
390
  url = "https://github.com/frida/v8.git"
391
391
  options = [
392
392
  "-Ddebug=false",
@@ -113,7 +113,7 @@ class MachineSpec:
113
113
  def maybe_adapt_to_host(self, host_machine: MachineSpec) -> MachineSpec:
114
114
  if self.identifier == host_machine.identifier and host_machine.triplet is not None:
115
115
  return host_machine
116
- if self.os == "windows":
116
+ if self.os == "windows" and host_machine.os == "windows":
117
117
  if host_machine.arch in {"x86_64", "x86"}:
118
118
  return host_machine
119
119
  if self.arch == host_machine.arch:
@@ -36,6 +36,7 @@ upstreams = {
36
36
  "v8": "https://chromium.googlesource.com/v8/v8",
37
37
  "capstone": ("https://github.com/capstone-engine/capstone.git", "v5"),
38
38
  "tinycc": "https://repo.or.cz/tinycc.git",
39
+ "selinux": "https://github.com/SELinuxProject/selinux.git",
39
40
  }
40
41
 
41
42
 
@@ -633,6 +633,7 @@ fdn_variant_from_value (napi_env env,
633
633
  {
634
634
  napi_value second;
635
635
  GVariant * val;
636
+ napi_value desc_prop;
636
637
  napi_value desc;
637
638
  gchar * type;
638
639
  GVariant * t[2];
@@ -640,12 +641,24 @@ fdn_variant_from_value (napi_env env,
640
641
  if (napi_get_element (env, value, 1, &second) != napi_ok)
641
642
  return FALSE;
642
643
 
643
- if (!fdn_variant_from_value (env, second, &val))
644
- return FALSE;
645
-
646
- napi_coerce_to_string (env, first, &desc);
644
+ desc_prop = fdn_utf8_to_value (env, "description");
645
+ napi_get_property (env, first, desc_prop, &desc);
647
646
  fdn_utf8_from_value (env, desc, &type);
648
647
 
648
+ if (strcmp (type, "uint64") == 0)
649
+ {
650
+ gint64 i;
651
+
652
+ if (!fdn_int64_from_value (env, second, &i))
653
+ return FALSE;
654
+
655
+ val = g_variant_new_uint64 ((guint64) i);
656
+ }
657
+ else if (!fdn_variant_from_value (env, second, &val))
658
+ {
659
+ return FALSE;
660
+ }
661
+
649
662
  t[0] = g_variant_new_take_string (type);
650
663
  t[1] = val;
651
664
 
@@ -1,6 +1,6 @@
1
1
  [wrap-git]
2
2
  url = https://github.com/frida/frida-core.git
3
- revision = 17.5.2
3
+ revision = 17.6.0
4
4
  depth = 1
5
5
 
6
6
  [provide]