Commit a50ddf3
JS: Upgrade to
Summary:
Pull Request resolved: #53606
Upgrades projects to `signedsource@2.0.0`, which includes a critical bug fix to the `isSigned` and `signFile` functions:
```lang=diff
isSigned(data) {
- return !PATTERN.exec(data);
+ return PATTERN.exec(data) != null;
},
```
Changelog:
[Internal]
Reviewed By: bvanderhoof, jehartzog
Differential Revision: D81723007
fbshipit-source-id: 0606eef35df1e5ec988b537aa012bc2c6d3c2d3asignedsource@2.0.0 (#53606)1 parent 020c92e commit a50ddf3
2 files changed
Lines changed: 5 additions & 5 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
112 | 112 | | |
113 | 113 | | |
114 | 114 | | |
115 | | - | |
| 115 | + | |
116 | 116 | | |
117 | 117 | | |
118 | 118 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
8482 | 8482 | | |
8483 | 8483 | | |
8484 | 8484 | | |
8485 | | - | |
8486 | | - | |
8487 | | - | |
8488 | | - | |
| 8485 | + | |
| 8486 | + | |
| 8487 | + | |
| 8488 | + | |
8489 | 8489 | | |
8490 | 8490 | | |
8491 | 8491 | | |
| |||
0 commit comments