-
Notifications
You must be signed in to change notification settings - Fork 0
Comparing changes
Open a pull request
base repository: NetGitHubEmploy/ClearScript
base: master
head repository: microsoft/ClearScript
compare: master
- 13 commits
- 1,459 files changed
- 4 contributors
Commits on May 13, 2024
-
Bump nokogiri from 1.15.6 to 1.16.5 in /docs (microsoft#575)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.15.6 to 1.16.5. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.15.6...v1.16.5) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 55d9590 - Browse repository at this point
Copy the full SHA 55d9590View commit details
Commits on May 17, 2024
-
Bump rexml from 3.2.6 to 3.2.8 in /docs (microsoft#577)
Bumps [rexml](https://github.com/ruby/rexml) from 3.2.6 to 3.2.8. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](ruby/rexml@v3.2.6...v3.2.8) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 349bed3 - Browse repository at this point
Copy the full SHA 349bed3View commit details
Commits on Aug 2, 2024
-
Bump rexml from 3.2.8 to 3.3.3 in /docs (microsoft#588)
Bumps [rexml](https://github.com/ruby/rexml) from 3.2.8 to 3.3.3. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](ruby/rexml@v3.2.8...v3.3.3) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 1ba2687 - Browse repository at this point
Copy the full SHA 1ba2687View commit details
Commits on Aug 22, 2024
-
Bump rexml from 3.3.3 to 3.3.6 in /docs (microsoft#595)
Bumps [rexml](https://github.com/ruby/rexml) from 3.3.3 to 3.3.6. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](ruby/rexml@v3.3.3...v3.3.6) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 619115c - Browse repository at this point
Copy the full SHA 619115cView commit details
Commits on Oct 28, 2024
-
Bump rexml from 3.3.6 to 3.3.9 in /docs (microsoft#608)
Bumps [rexml](https://github.com/ruby/rexml) from 3.3.6 to 3.3.9. - [Release notes](https://github.com/ruby/rexml/releases) - [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md) - [Commits](ruby/rexml@v3.3.6...v3.3.9) --- updated-dependencies: - dependency-name: rexml dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 4dae04f - Browse repository at this point
Copy the full SHA 4dae04fView commit details
Commits on Dec 3, 2024
-
Configuration menu - View commit details
-
Copy full SHA for bb14185 - Browse repository at this point
Copy the full SHA bb14185View commit details -
Configuration menu - View commit details
-
Copy full SHA for b594ec1 - Browse repository at this point
Copy the full SHA b594ec1View commit details
Commits on Dec 13, 2024
-
Change MethodBindResult to a readonly ref struct (microsoft#616)
* Changed MethodBindResult to a readonly ref struct * Use IsSuccess, add braces around single line blocks
Configuration menu - View commit details
-
Copy full SHA for 1d2800b - Browse repository at this point
Copy the full SHA 1d2800bView commit details
Commits on Feb 19, 2025
-
Bump nokogiri from 1.16.5 to 1.18.3 in /docs (microsoft#638)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.16.5 to 1.18.3. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/v1.18.3/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.16.5...v1.18.3) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 855b781 - Browse repository at this point
Copy the full SHA 855b781View commit details
Commits on Mar 7, 2025
-
ClearScript 7.5: [V8] added initial support for the new FastProxy API…
…; overhauled the codebase in favor of static lambdas; replaced most scope objects with ref structures; minimized boxing and structure copying on performance-critical code paths; eliminated the use of argument vectors for host calls with typical argument counts; [V8] added span support to array buffers and related types (GitHub Issue microsoft#632); [V8] enhanced task-promise interop with support for pre-settled promises and pre-completed tasks (GitHub Issue microsoft#641); [V8] added V8ScriptEngineFlags.EnableArrayConversion (GitHub Issue microsoft#634); [V8] fixed fast data transfer bounds checking for zero-length arrays and buffers (GitHub Issue microsoft#581); [V8] added import.meta.setResult to enable reliable module evaluation results; [V8] fixed MaxHeapSize and MaxRuntimeHeapSize behavior (GitHub Issue microsoft#571); incorporated Ansis Māliņš' conversion of MethodBindResult to a ref structure (GitHub PR microsoft#616); added promise state indicators to JavaScriptObjectFlags; fixed XMLDOM enumeration issue discussed in GitHub Issue microsoft#594; added sparse argument support to the reflection binder (GitHub Discussion microsoft#624); added ScriptEngine.NullImportValue (GitHub Issue microsoft#629); switched to XML for assembly table storage to eliminate security issues related to BinaryFormatter; updated API documentation. Tested with V8 13.3.415.23.
Configuration menu - View commit details
-
Copy full SHA for ebfa426 - Browse repository at this point
Copy the full SHA ebfa426View commit details -
Bump nokogiri from 1.15.7 to 1.18.3 in /docs (microsoft#644)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.15.7 to 1.18.3. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.15.7...v1.18.3) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 487e35b - Browse repository at this point
Copy the full SHA 487e35bView commit details
Commits on Mar 21, 2025
-
Bump nokogiri from 1.18.3 to 1.18.4 in /docs (microsoft#650)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.18.3 to 1.18.4. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.18.3...v1.18.4) --- updated-dependencies: - dependency-name: nokogiri dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8ae0a92 - Browse repository at this point
Copy the full SHA 8ae0a92View commit details
Commits on Apr 22, 2025
-
Bump nokogiri from 1.18.4 to 1.18.8 in /docs (microsoft#653)
Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.18.4 to 1.18.8. - [Release notes](https://github.com/sparklemotion/nokogiri/releases) - [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md) - [Commits](sparklemotion/nokogiri@v1.18.4...v1.18.8) --- updated-dependencies: - dependency-name: nokogiri dependency-version: 1.18.8 dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for d1dc2f7 - Browse repository at this point
Copy the full SHA d1dc2f7View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff master...master