Skip to content

Commit 68b5fa9

Browse files
authored
Merge branch 'JuliaLang:master' into master
2 parents a1f2def + 313f933 commit 68b5fa9

File tree

431 files changed

+12606
-6168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

431 files changed

+12606
-6168
lines changed

.github/workflows/cffconvert.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: cffconvert
2+
3+
on:
4+
push:
5+
branches:
6+
- 'master'
7+
- 'release-*'
8+
paths:
9+
- CITATION.cff
10+
pull_request:
11+
branches:
12+
- 'master'
13+
- 'release-*'
14+
paths:
15+
- CITATION.cff
16+
17+
permissions:
18+
contents: read
19+
20+
jobs:
21+
validate:
22+
name: "validate"
23+
runs-on: ubuntu-latest
24+
steps:
25+
- name: Check out a copy of the repository
26+
uses: actions/checkout@v4
27+
with:
28+
persist-credentials: false
29+
30+
- name: Check whether the citation metadata from CITATION.cff is valid
31+
uses: citation-file-format/[email protected]
32+
with:
33+
args: "--validate"

CITATION.cff

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
# Official format description at https://citation-file-format.github.io
12
cff-version: 1.2.0
23
message: "Cite this paper whenever you use Julia"
34
authors:

HISTORY.md

+278
Large diffs are not rendered by default.

LICENSE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2009-2023: Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors: https://github.com/JuliaLang/julia/contributors
3+
Copyright (c) 2009-2024: Jeff Bezanson, Stefan Karpinski, Viral B. Shah, and other contributors: https://github.com/JuliaLang/julia/contributors
44

55
Permission is hereby granted, free of charge, to any person obtaining
66
a copy of this software and associated documentation files (the

Make.inc

+17-4
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ JL_MAJOR_SHLIB_EXT := $(SHLIB_EXT).$(SOMAJOR)
670670
endif
671671
endif
672672

673-
ifeq ($(OS), FreeBSD)
673+
ifneq ($(findstring $(OS),FreeBSD OpenBSD),)
674674
LOCALBASE ?= /usr/local
675675
else
676676
LOCALBASE ?= /usr
@@ -726,7 +726,7 @@ SANITIZE_LDFLAGS :=
726726
ifeq ($(SANITIZE_MEMORY),1)
727727
SANITIZE_OPTS += -fsanitize=memory -fsanitize-memory-track-origins -fno-omit-frame-pointer
728728
SANITIZE_LDFLAGS += $(SANITIZE_OPTS)
729-
ifneq ($(findstring $(OS),Linux FreeBSD),)
729+
ifneq ($(findstring $(OS),Linux FreeBSD OpenBSD),)
730730
SANITIZE_LDFLAGS += -Wl,--warn-unresolved-symbols
731731
endif # OS Linux or FreeBSD
732732
endif # SANITIZE_MEMORY=1
@@ -1069,7 +1069,7 @@ JCFLAGS+=-DSYSTEM_LIBUNWIND
10691069
JCPPFLAGS+=-DSYSTEM_LIBUNWIND
10701070
endif
10711071
else
1072-
ifeq ($(OS),Darwin)
1072+
ifneq ($(findstring $(OS),Darwin OpenBSD),)
10731073
LIBUNWIND:=-lunwind
10741074
JCPPFLAGS+=-DLLVMLIBUNWIND
10751075
else
@@ -1380,6 +1380,19 @@ OSLIBS += -Wl,--export-dynamic -Wl,--version-script=$(BUILDROOT)/src/julia.expma
13801380
$(NO_WHOLE_ARCHIVE)
13811381
endif
13821382

1383+
ifeq ($(OS), OpenBSD)
1384+
JLDFLAGS += -Wl,--Bdynamic
1385+
ifneq ($(SANITIZE),1)
1386+
JLDFLAGS += -Wl,-no-undefined
1387+
endif
1388+
1389+
JLIBLDFLAGS += -Wl,-Bsymbolic-functions
1390+
1391+
OSLIBS += -Wl,--no-as-needed -lpthread -lm -lc++abi -lc
1392+
OSLIBS += -Wl,--whole-archive -lcompiler_rt -Wl,--no-whole-archive
1393+
OSLIBS += -Wl,--export-dynamic,--as-needed,--version-script=$(BUILDROOT)/src/julia.expmap
1394+
endif
1395+
13831396
ifeq ($(OS), Darwin)
13841397
SHLIB_EXT := dylib
13851398
OSLIBS += -framework CoreFoundation
@@ -1487,7 +1500,7 @@ endif
14871500
CLANGSA_FLAGS :=
14881501
CLANGSA_CXXFLAGS :=
14891502
ifeq ($(OS), Darwin) # on new XCode, the files are hidden
1490-
CLANGSA_FLAGS += -isysroot $(shell xcode-select -p)/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk
1503+
CLANGSA_FLAGS += -isysroot $(shell xcrun --show-sdk-path -sdk macosx)
14911504
endif
14921505
ifeq ($(USEGCC),1)
14931506
# try to help clang find the c++ files for CC by guessing the value for --prefix

Makefile

+3-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ julia-debug julia-release : julia-% : julia-sysimg-% julia-src-% julia-symlink j
112112
julia-libccalllazyfoo julia-libccalllazybar julia-libllvmcalltest julia-base-cache
113113

114114
stdlibs-cache-release stdlibs-cache-debug : stdlibs-cache-% : julia-%
115-
@$(MAKE) $(QUIET_MAKE) -C $(BUILDROOT) -f pkgimage.mk all-$*
115+
@$(MAKE) $(QUIET_MAKE) -C $(BUILDROOT) -f pkgimage.mk $*
116116

117117
debug release : % : julia-% stdlibs-cache-%
118118

@@ -289,6 +289,7 @@ else ifeq ($(JULIA_BUILD_MODE),debug)
289289
-$(INSTALL_M) $(build_libdir)/libjulia-internal-debug.dll.a $(DESTDIR)$(libdir)/
290290
endif
291291
-$(INSTALL_M) $(wildcard $(build_private_libdir)/*.a) $(DESTDIR)$(private_libdir)/
292+
-rm -f $(DESTDIR)$(private_libdir)/sys-o.a
292293

293294
# We have a single exception; we want 7z.dll to live in private_libexecdir,
294295
# not bindir, so that 7z.exe can find it.
@@ -587,6 +588,7 @@ clean: | $(CLEAN_TARGETS)
587588
@-$(MAKE) -C $(BUILDROOT)/cli clean
588589
@-$(MAKE) -C $(BUILDROOT)/test clean
589590
@-$(MAKE) -C $(BUILDROOT)/stdlib clean
591+
@-$(MAKE) -C $(BUILDROOT) -f pkgimage.mk clean
590592
-rm -f $(BUILDROOT)/julia
591593
-rm -f $(BUILDROOT)/*.tar.gz
592594
-rm -f $(build_depsbindir)/stringreplace \

NEWS.md

+30-129
Original file line numberDiff line numberDiff line change
@@ -1,94 +1,54 @@
1-
Julia v1.11 Release Notes
1+
Julia v1.12 Release Notes
22
========================
33

44
New language features
55
---------------------
6-
* `public` is a new keyword. Symbols marked with `public` are considered public
7-
API. Symbols marked with `export` are now also treated as public API. The
8-
difference between `public` and `export` is that `public` names do not become
9-
available when `using` a package/module ([#50105]).
10-
* `ScopedValue` implements dynamic scope with inheritance across tasks ([#50958]).
11-
* The new macro `Base.Cartesian.@ncallkw` is analogous to `Base.Cartesian.@ncall`,
12-
but allows to add keyword arguments to the function call ([#51501]).
13-
* Support for Unicode 15.1 ([#51799]).
14-
* Three new types around the idea of text with "annotations" (`Pair{Symbol, Any}`
15-
entries, e.g. `:lang => "en"` or `:face => :magenta`). These annotations
16-
are preserved across operations (e.g. string concatenation with `*`) when
17-
possible.
18-
* `AnnotatedString` is a new `AbstractString` type. It wraps an underlying
19-
string and allows for annotations to be attached to regions of the string.
20-
This type is used extensively in the new `StyledStrings` standard library to
21-
hold styling information.
22-
* `AnnotatedChar` is a new `AbstractChar` type. It wraps another char and
23-
holds a list of annotations that apply to it.
24-
* `AnnotatedIOBuffer` is a new `IO` type that mimics an `IOBuffer`, but has
25-
specialised `read`/`write` methods for annotated content. This can be
26-
thought of both as a "string builder" of sorts and also as glue between
27-
annotated and unannotated content.
28-
* `Manifest.toml` files can now be renamed in the format `Manifest-v{major}.{minor}.toml`
29-
to be preferentially picked up by the given julia version. i.e. in the same folder,
30-
a `Manifest-v1.11.toml` would be used by v1.11 and `Manifest.toml` by every other julia
31-
version. This makes managing environments for multiple julia versions at the same time
32-
easier ([#43845]).
33-
* `@time` now reports a count of any lock conflicts where a `ReentrantLock` had to wait, plus a new macro
34-
`@lock_conflicts` which returns that count ([#52883]).
356

367
Language changes
378
----------------
38-
* During precompilation, the `atexit` hooks now run before saving the output file. This
39-
allows users to safely tear down background state (such as closing Timers and sending
40-
disconnect notifications to heartbeat tasks) and cleanup other resources when the program
41-
wants to begin exiting.
42-
* Code coverage and malloc tracking is no longer generated during the package precompilation stage.
43-
Further, during these modes pkgimage caches are now used for packages that are not being tracked.
44-
This means that coverage testing (the default for `julia-actions/julia-runtest`) will by default use
45-
pkgimage caches for all other packages than the package being tested, likely meaning faster test
46-
execution. ([#52123])
47-
48-
* Specifying a path in `JULIA_DEPOT_PATH` now results in the expansion of empty strings to
49-
omit the default user depot ([#51448]).
9+
10+
- When methods are replaced with exactly equivalent ones, the old method is no
11+
longer deleted implicitly simultaneously, although the new method does take
12+
priority and become more specific than the old method. Thus if the new
13+
method is deleted later, the old method will resume operating. This can be
14+
useful to mocking frameworks (such as in SparseArrays, Pluto, and Mocking,
15+
among others), as they do not need to explicitly restore the old method.
16+
While inference and compilation still must be repeated with this, it also
17+
may pave the way for inference to be able to intelligently re-use the old
18+
results, once the new method is deleted. ([#53415])
19+
20+
- Macro expansion will no longer eargerly recurse into into `Expr(:toplevel)`
21+
expressions returned from macros. Instead, macro expansion of `:toplevel`
22+
expressions will be delayed until evaluation time. This allows a later
23+
expression within a given `:toplevel` expression to make use of macros
24+
defined earlier in the same `:toplevel` expression. ([#53515])
5025

5126
Compiler/Runtime improvements
5227
-----------------------------
53-
* Updated GC heuristics to count allocated pages instead of individual objects ([#50144]).
54-
* A new `LazyLibrary` type is exported from `Libdl` for use in building chained lazy library
55-
loads, primarily to be used within JLLs ([#50074]).
56-
* Added support for annotating `Base.@assume_effects` on code blocks ([#52400]).
57-
* The libuv library has been updated from a base of v1.44.2 to v1.48.0 ([#49937]).
28+
29+
- Generated LLVM IR now uses actual pointer types instead of passing pointers as integers.
30+
This affects `llvmcall`: Inline LLVM IR should be updated to use `i8*` or `ptr` instead of
31+
`i32` or `i64`, and remove unneeded `ptrtoint`/`inttoptr` conversions. For compatibility,
32+
IR with integer pointers is still supported, but generates a deprecation warning. ([#53687])
5833

5934
Command-line option changes
6035
---------------------------
6136

62-
* The entry point for Julia has been standardized to `Main.main(ARGS)`. This must be explicitly opted into using the `@main` macro
63-
(see the docstring for further details). When opted-in, and julia is invoked to run a script or expression
64-
(i.e. using `julia script.jl` or `julia -e expr`), julia will subsequently run the `Main.main` function automatically.
65-
This is intended to unify script and compilation workflows, where code loading may happen
66-
in the compiler and execution of `Main.main` may happen in the resulting executable. For interactive use, there is no semantic
67-
difference between defining a `main` function and executing the code directly at the end of the script ([50974]).
68-
* The `--compiled-modules` and `--pkgimages` flags can now be set to `existing`, which will
69-
cause Julia to consider loading existing cache files, but not to create new ones ([#50586]
70-
and [#52573]).
37+
* The `-m/--module` flag can be passed to run the `main` function inside a package with a set of arguments.
38+
This `main` function should be declared using `@main` to indicate that it is an entry point.
7139

7240
Multi-threading changes
7341
-----------------------
7442

75-
* `Threads.@threads` now supports the `:greedy` scheduler, intended for non-uniform workloads ([#52096]).
76-
* A new exported struct `Lockable{T, L<:AbstractLock}` makes it easy to bundle a resource and its lock together ([#52898]).
77-
7843
Build system changes
7944
--------------------
8045

8146
New library functions
8247
---------------------
8348

84-
* `in!(x, s::AbstractSet)` will return whether `x` is in `s`, and insert `x` in `s` if not.
85-
* The new `Libc.mkfifo` function wraps the `mkfifo` C function on Unix platforms ([#34587]).
86-
* `copyuntil(out, io, delim)` and `copyline(out, io)` copy data into an `out::IO` stream ([#48273]).
87-
* `eachrsplit(string, pattern)` iterates split substrings right to left.
88-
* `Sys.username()` can be used to return the current user's username ([#51897]).
89-
* `wrap(Array, m::Union{MemoryRef{T}, Memory{T}}, dims)` is the safe counterpart to `unsafe_wrap` ([#52049]).
90-
* `GC.logging_enabled()` can be used to test whether GC logging has been enabled via `GC.enable_logging` ([#51647]).
91-
* `IdSet` is now exported from Base and considered public ([#53262]).
49+
* `logrange(start, stop; length)` makes a range of constant ratio, instead of constant step ([#39071])
50+
* The new `isfull(c::Channel)` function can be used to check if `put!(c, some_value)` will block. ([#53159])
51+
* `waitany(tasks; throw=false)` and `waitall(tasks; failfast=false, throw=false)` which wait multiple tasks at once ([#53341]).
9252

9353
New library features
9454
--------------------
@@ -97,7 +57,6 @@ New library features
9757
* `invmod(n)` is an abbreviation for `invmod(n, typeof(n))` for native integer types ([#52180]).
9858
* `replace(string, pattern...)` now supports an optional `IO` argument to
9959
write the output to a stream rather than returning a string ([#48625]).
100-
* New methods `allequal(f, itr)` and `allunique(f, itr)` taking a predicate function ([#47679]).
10160
* `sizehint!(s, n)` now supports an optional `shrink` argument to disable shrinking ([#51929]).
10261
* New function `Docs.hasdoc(module, symbol)` tells whether a name has a docstring ([#52139]).
10362
* New function `Docs.undocumented_names(module)` returns a module's undocumented public names ([#52413]).
@@ -111,114 +70,56 @@ New library features
11170
automatically.
11271
* `@timed` now additionally returns the elapsed compilation and recompilation time ([#52889])
11372
* `filter` can now act on a `NamedTuple` ([#50795]).
114-
* `Iterators.cycle(iter, n)` runs over `iter` a fixed number of times, instead of forever ([#47354])
115-
* `zero(::AbstractArray)` now applies recursively, so `zero([[1,2],[3,4,5]])` now produces the additive identity `[[0,0],[0,0,0]]` rather than erroring ([#38064]).
73+
* `tempname` can now take a suffix string to allow the file name to include a suffix and include that suffix in
74+
the uniquing checking ([#53474])
75+
* `RegexMatch` objects can now be used to construct `NamedTuple`s and `Dict`s ([#50988])
11676

11777
Standard library changes
11878
------------------------
11979

12080
#### StyledStrings
12181

122-
* A new standard library for handling styling in a more comprehensive and structured way ([#49586]).
123-
* The new `Faces` struct serves as a container for text styling information
124-
(think typeface, as well as color and decoration), and comes with a framework
125-
to provide a convenient, extensible (via `addface!`), and customisable (with a
126-
user's `Faces.toml` and `loadfaces!`) approach to
127-
styled content ([#49586]).
128-
* The new `@styled_str` string macro provides a convenient way of creating a
129-
`AnnotatedString` with various faces or other attributes applied ([#49586]).
130-
13182
#### JuliaSyntaxHighlighting
13283

133-
* A new standard library for applying syntax highlighting to Julia code, this
134-
uses `JuliaSyntax` and `StyledStrings` to implement a `highlight` function
135-
that creates an `AnnotatedString` with syntax highlighting applied.
136-
13784
#### Package Manager
13885

13986
#### LinearAlgebra
140-
* `cbrt(::AbstractMatrix{<:Real})` is now defined and returns real-valued matrix cube roots of real-valued matrices ([#50661]).
141-
* `eigvals/eigen(A, bunchkaufman(B))` and `eigvals/eigen(A, lu(B))`, which utilize the Bunchkaufman (LDL) and LU decomposition of `B`,
142-
respectively, now efficiently compute the generalized eigenvalues (`eigen`: and eigenvectors) of `A` and `B`. Note: The second
143-
argument is the output of `bunchkaufman` or `lu` ([#50471]).
144-
* There is now a specialized dispatch for `eigvals/eigen(::Hermitian{<:Tridiagonal})` which performs a similarity transformation to create a real symmetrix triagonal matrix, and solve that using the LAPACK routines ([#49546]).
145-
* Structured matrices now retain either the axes of the parent (for `Symmetric`/`Hermitian`/`AbstractTriangular`/`UpperHessenberg`), or that of the principal diagonal (for banded matrices) ([#52480]).
146-
* `bunchkaufman` and `bunchkaufman!` now work for any `AbstractFloat`, `Rational` and their complex variants. `bunchkaufman` now supports `Integer` types, by making an internal conversion to `Rational{BigInt}`. Added new function `inertia` that computes the inertia of the diagonal factor given by the `BunchKaufman` factorization object of a real symmetric or Hermitian matrix. For complex symmetric matrices, `inertia` only computes the number of zero eigenvalues of the diagonal factor ([#51487]).
147-
* Packages that specialize matrix-matrix `mul!` with a method signature of the form `mul!(::AbstractMatrix, ::MyMatrix, ::AbstractMatrix, ::Number, ::Number)` no longer encounter method ambiguities when interacting with `LinearAlgebra`. Previously, ambiguities used to arise when multiplying a `MyMatrix` with a structured matrix type provided by LinearAlgebra, such as `AbstractTriangular`, which used to necessitate additional methods to resolve such ambiguities. Similar sources of ambiguities have also been removed for matrix-vector `mul!` operations ([#52837]).
148-
* `lu` and `issuccess(::LU)` now accept an `allowsingular` keyword argument. When set to `true`, a valid factorization with rank-deficient U factor will be treated as success instead of throwing an error. Such factorizations are now shown by printing the factors together with a "rank-deficient" note rather than printing a "Failed Factorization" message ([#52957]).
14987

15088
#### Logging
151-
* New `@create_log_macro` macro for creating new log macros like `@info`, `@warn` etc. For instance
152-
`@create_log_macro MyLog 1500 :magenta` will create `@mylog` to be used like `@mylog "hello"` which
153-
will show as `┌ MyLog: hello` etc. ([#52196])
15489

15590
#### Printf
15691

15792
#### Profile
15893

15994
#### Random
160-
* `rand` now supports sampling over `Tuple` types ([#35856], [#50251]).
161-
* `rand` now supports sampling over `Pair` types ([#28705]).
162-
* When seeding RNGs provided by `Random`, negative integer seeds can now be used ([#51416]).
163-
* Seedable random number generators from `Random` can now be seeded by a string, e.g.
164-
`seed!(rng, "a random seed")` ([#51527]).
16595

16696
#### REPL
16797

168-
* Tab complete hints now show in lighter text while typing in the repl. To disable
169-
set `Base.active_repl.options.hint_tab_completes = false` interactively, or in startup.jl:
170-
```
171-
if VERSION >= v"1.11.0-0"
172-
atreplinit() do repl
173-
repl.options.hint_tab_completes = false
174-
end
175-
end
176-
``` ([#51229]).
177-
* Meta-M with an empty prompt now toggles the contextual module between the previous non-Main
178-
contextual module and Main so that switching back and forth is simple. ([#51616], [#52670])
179-
18098
#### SuiteSparse
18199

182-
183100
#### SparseArrays
184101

185102
#### Test
186103

187104
#### Dates
188105

189-
The undocumented function `adjust` is no longer exported but is now documented
190-
191106
#### Statistics
192107

193-
* Statistics is now an upgradeable standard library ([#46501]).
194-
195108
#### Distributed
196109

197-
* `pmap` now defaults to using a `CachingPool` ([#33892]).
198-
199110
#### Unicode
200111

201-
202112
#### DelimitedFiles
203113

204-
205114
#### InteractiveUtils
206115

207116
Deprecated or removed
208117
---------------------
209118

210-
* `Base.map`, `Iterators.map`, and `foreach` lost their single-argument methods ([#52631]).
211-
212-
213119
External dependencies
214120
---------------------
215-
* `tput` is no longer called to check terminal capabilities, it has been replaced with a pure-Julia terminfo parser ([#50797]).
216121

217122
Tooling Improvements
218123
--------------------
219124

220-
* CI now performs limited automatic typo detection on all PRs. If you merge a PR with a
221-
failing typo CI check, then the reported typos will be automatically ignored in future CI
222-
runs on PRs that edit those same files ([#51704]).
223-
224125
<!--- generated by NEWS-update.jl: -->

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.11.0-DEV
1+
1.12.0-DEV

0 commit comments

Comments
 (0)