Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: g-insn/mono

Tags

mono-6.12.0.114

Toggle mono-6.12.0.114's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Use explicit arithmetic checks in the amd64 watchOS simulator. (mono#…

…20647)

Fixes mono#20632.

Backport of mono#20639.

Co-authored-by: Imran Hameed <[email protected]>

mono-6.12.0.113

Toggle mono-6.12.0.113's commit message
Bump bockbuild for gtk+ patch

See mono/bockbuild#166

mono-6.12.0.112

Toggle mono-6.12.0.112's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[runtime] Avoid checking for hardened runtime on ios, its not needed,…

… and it causes alerts because of PROT_WRITE|PROT_EXEC. (mono#20623)

Co-authored-by: Zoltan Varga <[email protected]>

mono-6.12.0.111

Toggle mono-6.12.0.111's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix iOS sdks build on Xcode 12 (mono#20574)

The new Xcode introduced functions like preadv/pwritev in the SDK that get erraneously detected by autoconf even though we can't use them.
Disable these functions and also add a check for Xcode version to workaround mono#19393.

Co-authored-by: Alexander Köplinger <[email protected]>

mono-6.12.0.110

Toggle mono-6.12.0.110's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[2020-02] Build makefile to support Mac Catalyst (mono#20566)

Backport of mono#20537.

Co-authored-by: Frank A. Krueger <[email protected]>
Co-authored-by: Alexander Köplinger <[email protected]>

mono-6.12.0.109

Toggle mono-6.12.0.109's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add support for OP_FCONV_TO_I to mini-arm64.c. (mono#20548)

Partial backport of mono#20100.

Should fix mono#20533.

Also see:
dotnet/runtime#35008 (comment)

mono-6.12.0.107

Toggle mono-6.12.0.107's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix potential crash for Encoder.Convert (mono#20522)

GetByteCount will not return the right number of bytes needed, so GetBytes in Encoder.Convert will crash for some input

Backport of mono#20271.

Co-authored-by: jeffgoku <[email protected]>

mono-6.12.0.106

Toggle mono-6.12.0.106's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump to F# 5.0 (mono#20511)

Fixes mono#16763

Closes mono#17925
Closes mono#17882

mono-6.12.0.105

Toggle mono-6.12.0.105's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bump msbuild to fix a build issue

mono-6.12.0.103

Toggle mono-6.12.0.103's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[debugger] Switch to GC Unsafe in signal handler callbacks (mono#20495)

If the runtime gets a single step or breakpoint signal while it is already
running native code for a P/Invoke, it will be in GC Safe mode.  Switch back to
GC Unsafe to run the debugger engine steps.

Addresses mono#20490

Co-authored-by: Aleksey Kliger <[email protected]>