Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
8074ec8
Fix #10731 - Windows link error with std.random.uniform() in v2.111 (…
0xEAB Apr 4, 2025
35977c8
fix: Add Null check before calling wsclen (#10736)
DeterminedSage Apr 5, 2025
20c760b
Improve result of #10699's fix so that it returns consumed arguments …
rikkimax Apr 9, 2025
40ffbb3
`getrandom()` backwards compatibility shim (#10741)
0xEAB Apr 10, 2025
4ea5c35
Polish `getrandom()` backwards compatibility shim (#10757)
0xEAB Apr 21, 2025
0ce6bed
Revert "Add low-overhead `InPlaceAppender` (#8789)"
ibuclaw Apr 28, 2025
b1d3353
Add unittest for #10747
ibuclaw Apr 28, 2025
12d8613
Merge remote-tracking branch 'upstream/master' into stable
dkorpel May 2, 2025
a819bf6
Add unittest from #10769 (#10770)
0xEAB May 3, 2025
d6608c9
Revert "std.allocator: Comment out broken class instance size test (#…
ibuclaw May 11, 2025
35637c1
Fix #10785 (#10787)
schveiguy May 22, 2025
969a072
Further fix for CowArray to prevent using the refcount when being (#1…
schveiguy May 22, 2025
5125f2e
Fix #10811: compile error in RedBlackTree caused by the presence of a…
s-ludwig Jun 29, 2025
30fcf07
Fix issue 10801 - sgnGamma(-0.5) should be -1 (#10813)
tedgin Jul 8, 2025
48fb3a4
Merge remote-tracking branch 'upstream/master' into stable
dkorpel Jul 14, 2025
4fc3fac
`std.array.d`: Use template `_d_newarrayU{,Trace}` (#10819)
teodutu Jul 21, 2025
c348c30
10823 fix, fixed sign of beta(x,y) when x+y large (#10824)
tedgin Aug 11, 2025
f0bd8b7
Merge remote-tracking branch 'upstream/master' into stable
dkorpel Oct 1, 2025
a630eab
phobos#10888 logmdigammaInverse(-0) is set to NaN (#10891)
tedgin Nov 4, 2025
b0bb590
phobos#10826 address Q1 cases where near origin or near infinity (#10…
tedgin Nov 5, 2025
bcdaa07
10826 use cmp and abs to find larger NaN payload (#10895)
tedgin Nov 6, 2025
70d89eb
std.variant: Fix deprecation in VariantN.opApply() (#10910)
kinke Dec 9, 2025
51e0e0a
purge changelog
dkorpel Jan 7, 2026
f839179
fix #22388 - error compiling mixin Signal!(string, int); (#10931)
rainers Jan 13, 2026
440db1e
Fix potential null check error in Socket.select (#10939)
rikkimax Jan 24, 2026
c61f5ab
10920: Extend gammaIncomplete to cover large a≈x (#10938)
tedgin Jan 26, 2026
b9a61a8
std.container.rbtree: Refactor template constraint wrt. `less` and us…
kinke Feb 11, 2026
12eb40b
10965: extended normalDistribution domain support to +/-inf (#10966)
tedgin Feb 28, 2026
7e8d303
Merge remote-tracking branch 'upstream/stable' into merge_stable
ibuclaw Mar 20, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,10 @@ ifdef NO_AUTODECODE
override DFLAGS += -version=NoAutodecodeStrings
endif

ifdef LINUX_LEGACY_EMULATE_GETRANDOM
override DFLAGS += -version=linux_legacy_emulate_getrandom
endif

UDFLAGS=-unittest -version=StdUnittest

LINKDL:=$(if $(findstring $(OS),linux),-L-ldl,)
Expand Down Expand Up @@ -276,7 +280,7 @@ EXTRA_MODULES_INTERNAL := $(addprefix std/, \
scopebuffer test/dummyrange test/range \
test/sumtype_example_overloads \
$(addprefix unicode_, comp decomp grapheme norm tables) \
windows/advapi32 \
windows/advapi32 windows/bcrypt \
) \
typetuple \
)
Expand Down
15 changes: 0 additions & 15 deletions changelog/add_lazycache_function.dd

This file was deleted.

32 changes: 0 additions & 32 deletions changelog/entropy_system.dd

This file was deleted.

16 changes: 0 additions & 16 deletions changelog/unicode-17.dd

This file was deleted.

18 changes: 0 additions & 18 deletions changelog/uuidv7.dd

This file was deleted.

20 changes: 0 additions & 20 deletions changelog/write-text.dd

This file was deleted.

Loading
Loading