-
Notifications
You must be signed in to change notification settings - Fork 74
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Pet Daemon: Merge Master (January, 2024) #1998
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fixup tsconfig.json
… package This extracts everything from `@endo/bundle-source/src/transform.js` into a new package (formerly `@endo/transforms`). LavaMoat has need to consume the SES-censorship-evasion functionality, and it would be cumbersome to try to use `@endo/bundle-source` for this.
This jettisons `src/transform.js` and consumes `@endo/evasive-transform` instead.
This normalizes linebreaks to `lf`. Sorry, Windows contributors. Additionally, forces `.snap` and `.agar` to be binary, if not already recognized as such.
feat: support `M.raw()` in method guards
Much like #1803, this adds `types` conditional exports where appropriate.
The `proxiedExports` param to the `execute` function cannot be `Object`, which is the literal `Object`. It must be _some_ kind of `Object`, however, a `Record` is suitable. However, the property can be a `PropertyKey` if the exports come from CommonJS and can only be a `string` if the exports come from ESM. Use `string` for now and we can widen the type later.
```console $ echo "Node.js" && node test/bench-main.js && echo "XS" && ~/.esvu/bin/xs -m test/bench-main.js Node.js encodes 10775.74909090909 characters per millisecond JS encodes 23130.176470588234 characters per millisecond decodes 48752.36084452975 bytes per millisecond JS decodes 43007.671875 bytes per millisecond XS encodes 577272.2727272727 characters per millisecond JS encodes 1335.143596377749 characters per millisecond decodes 396777.0553505535 bytes per millisecond JS decodes 1093.7360890302066 bytes per millisecond ```
* Capture results * Make two passes per scenario * Clarify full vs. short-input scenarios and run both against the same loop body
It should eventually be an endo export, possibly in its own package (just not in `common`, which itself depends upon `ses`).
This addresses the `@ts-ignore` found in `makeFauxModuleExportsNamespace()`, which was renamed from `makeFeauxModuleExportsNamespace()`, because "féaux" translates to "loyal supporters" and not "fake" or "false" like was presumably intended. I am not so bold to rename it `makeErsatzModuleExportsNamespace()`, despite "ersatz" being a wholly superior word to either of the above alternatives.
kriskowal
force-pushed
the
kriskowal-endo-merge-master-2024-01
branch
from
January 23, 2024 02:08
3070134
to
73c7511
Compare
kriskowal
force-pushed
the
kriskowal-endo-merge-master-2024-01
branch
from
January 23, 2024 23:58
080ddda
to
6569aca
Compare
kriskowal
force-pushed
the
kriskowal-endo-merge-master-2024-01
branch
from
January 24, 2024 00:04
6569aca
to
c642187
Compare
kriskowal
force-pushed
the
kriskowal-endo-merge-master-2024-01
branch
2 times, most recently
from
January 25, 2024 06:25
3bf87e0
to
7269ac9
Compare
kriskowal
force-pushed
the
kriskowal-endo-merge-master-2024-01
branch
from
January 25, 2024 21:10
7269ac9
to
3eaba38
Compare
kumavis
approved these changes
Jan 26, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
jesus take the wheel group
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This just brings the
endo
branch back into sync withmaster
.