Skip to content

Commit 6351948

Browse files
authored
add some more CHANGELOG entries (#2706)
1 parent a5fd590 commit 6351948

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,22 @@ Pkg v1.8 Release Notes
33

44
- New `outdated::Bool` kwarg to `Pkg.status` (`--outdated` or `-o` in the REPL mode) to show
55
information about packages not at the latest version.
6+
- Pkg now only tries to download pacakges from the package server in case the
7+
server tracks a registry that contains the package.
68

79
Pkg v1.7 Release Notes
810
======================
911

12+
- The format of the `Manifest.toml` file have changed. New manifests will use
13+
the new format while old manifest will have their existing format in place.
14+
Julia 1.6.2 is compatible with the new format.
1015
- Registries downloaded from the Pkg Server (not git) are no longer uncompressed into files but instead read directly from the compressed tarball into memory. This improves performance on
1116
filesystems which do not handle a large number of files well. To turn this feature off, set the environment variable `JULIA_PKG_UNPACK_REGISTRY=true`.
1217
- It is now possible to use an external `git` executable instead of the default libgit2 library for
1318
the downloads that happen via the Git protocol by setting the environment variable `JULIA_PKG_USE_CLI_GIT=true`.
1419
- Registries downloaded from the Pkg Server (not git) is now assumed to be immutable. Manual changes to their files might not be picked up by a running Pkg session.
20+
- The number of packags precompiled in parallel are now limited to 16 unless the
21+
environment variable `JULIA_NUM_PRECOMPILE_TASKS` is set.
1522
- Adding packages by folder name in the REPL mode now requires a prepending a `./` to the folder name package folder is in the current folder, e.g. `add ./Package` is required instead of `add Pacakge`. This is to avoid confusion between the package name `Package` and the local directory `Package`.
1623
- `rm`, `pin`, and `free` now support the `--all` option, and the api variants gain the `all_pkgs::Bool` kwarg, to perform the operation on all packages within the project or manifest, depending on the mode of the operation.
1724
- The `mode` keyword for `PackageSpec` has been removed.

0 commit comments

Comments
 (0)