Note: This is in reverse chronological order, so newer entries are added to the top.
-
Starting from tools-version 6.2,
SwiftSettingprovides astrictMemorySafetysetting to enable the strict memory safety checking introduced in SE-0458. -
Starting from tools-version 6.2,
SwiftSettingprovides adefaultIsolationsetting to allow specifying default actor isolation for a target [SE-0466].
-
Starting from tools-version 6.0,
swiftLanguageModecan be specified at the target level, allowing for gradual per-target migration to the Swift 6 language mode. TheswiftLanguageVersionssetting has been deprecated and renamed toswiftLanguageModes. -
Starting from tools-version 6.0 makes it possible for packages to depend on each other if such dependency doesn't form any target-level cycles. For example, package
Acan depend onBandBonAunless targets inBdepend on products ofAthat depend on some of the same targets fromBand vice versa. -
Fixed an issue where repositories would be re-cloned each build rather than using the cache due to git validation errors.
-
swift experimental-sdkcommand is deprecated withswift sdkcommand replacing it.--experimental-swift-sdkand--experimental-swift-sdks-pathoptions onswift buildare deprecated with replacements that don't have theexperimentalprefix. -
An additional
--checksumoption is now required forswift sdk installsubcommand with remote URLs as arguments.--checksumallows users of a Swift SDK to specify a checksum provided by the SDK publisher. A checksum can be produced by runningswift package compute-checksumcommand (introduced in SE-0272) with the Swift SDK bundle archive as an argument. -
The
swift sdk configurationsubcommand is deprecated with a replacement namedconfigurethat has options that exactly match SE-0387 proposal text. -
Package manifests can now access information about the Git repository the given package is in via the context object's
gitInformationproperty. This allows to determine the current tag (if any), the current commit and whether or not there are uncommited changes. -
// swift-tools-version:can now be specified on subsequent lines ofPackage.swift, for example when first few lines are required to contain a licensing comment header. -
Macros cross-compiled by SwiftPM with Swift SDKs are now correctly built, loaded, and evaluated for the host triple.
Packages with modules that incorrectly imported macro modules directly instead of importing macro interface modules will no longer build with
swift build.
-
On macOS,
swift buildandswift runnow produce binaries that allow backtraces in debug builds. PassSWIFT_BACKTRACE=enable=yesenvironment variable to enable backtraces on such binaries when running them. -
Binary artifacts are now cached along side repository checkouts so they do not need to be re-downloaded across projects.
-
SwiftPM packages can now use
packageas a new access modifier, allowing accessing symbols in another target / module within the same package without making it public. -
New
swift experimental-sdkexperimental command is now available for managing Swift SDK bundles that follow the format described in SE-0387: "Swift SDKs for Cross-Compilation". -
SwiftPM can now publish to a registry following the publishing spec as defined in SE-0391. SwiftPM also gains support for signed packages. Trust-on-first-use (TOFU) check which includes only fingerprints (e.g., checksums) previously has been extended to include signing identities, and it is enforced for source archives as well as package manifests.
-
Plugin compilation can be influenced by using
-Xbuild-tools-swiftcarguments in the SwiftPM command line. This is similar to the existing mechanism for influencing the manifest compilation using-Xmanifestarguments. Manifest compilation will also be influenced by-Xbuild-tools-swiftc, but only if no other-Xmanifestarguments are provided. Using-Xmanifestwill show a deprecation message.-Xmanifestwill be removed in the future. -
Support for building plugin dependencies for the host when cross-compiling.
-
Basic support for a new
.embedInCoderesource rule which allows embedding the contents of the resource into the executable code by generating a byte array, e.g.struct PackageResources { static let best_txt: [UInt8] = [104,101,108,108,111,32,119,111,114,108,100,10] } -
Package creation using
package initnow also supports the build tool plugin and command plugin types. -
Added a new
allowNetworkConnections(scope:reason:)for giving a command plugin permissions to access the network. Permissions can be scoped to Unix domain sockets in general or specifically for Docker, as well as local or remote IP connections which can be limited by port. For non-interactive use cases, there is also a--allow-network-connectionscommandline flag to allow network connections for a particular scope. -
Remove the
system-moduleandmanifesttemplates and clean up the remainingempty,library, andexecutabletemplates so they include the minimum information needed to get started, with links to documentation in the generated library, executable, and test content. -
Add a new
CompilerPluginSupportmodule which contains the definition for macro targets. Macro targets allow authoring and distribution of custom Swift macros such as expression macros. -
Add new build setting in the package manifest that enables Swift/C++ Interoperability for a given Swift target.
.interoperabilityMode(.Cxx, version: "swift-5.9") -
When a package contains a single target, sources may be distributed anywhere within the
./Sourcesdirectory. If sources are placed in a subdirectory under./Sources/<target>, or there is more than one target, the existing expectation for sources apply. -
Build tool plugins can be used with C-family targets
-
Add
visionOSas a platform alongsideiOSand other platforms
-
SwiftPM targets can now specify the upcoming language features they require.
Package.swiftmanifest syntax has been expanded with an API to include settingenableUpcomingFeatureandenableExperimentalFeatureflags at the target level, as specified by SE-0362. -
SwiftPM now supports token authentication when interacting with a package registry. The
swift package-registrycommand has two new subcommandsloginandlogoutas defined in SE-0378 for adding/removing registry credentials. -
SwiftPM now allows exposing an executable product that consists solely of a binary target that is backed by an artifact bundle. This allow vending binary executables as their own separate package, independently of the plugins that are using them.
-
Improved handling of offline behavior when a cached version of a dependency exists on disk. SwiftPM will check for network availability status to determine if it should attempt to update a checked version of a dependency, and when offline will use the cached version without an update.
-
In packages using tools version 5.8 or later, Foundation is no longer implicitly imported into package manifests. If Foundation APIs are used, the module needs to be imported explicitly.
-
Added new
--emit-extension-block-symbolsand--omit-extension-block-symbolsviaswift package dump-symbol-graph.--emit-extension-block-symbolsdumps symbol graph files that are extension block symbol format. The default behavior does not change. The--omit-extension-block-symbolsflag will be used to explicitly disable the feature once the default behavior has been changed to--emit-extension-block-symbolsin the future. -
New
--pkg-config-pathoption onbuild,test, andruncommands has been introduced as an alternative to passingPKG_CONFIG_PATHenvironment variable. It allows specifying alternative path to search for.pcfiles used bypkg-config. Use the option multiple times to specify more than one path.
-
SwiftPM can now resolve dependencies from a server compliant with the package registry server API defined in SE-0292.
-
Module aliases can now be defined in the package manifest to disambiguate between modules with the same name originating from different packages.
-
Add a
--disable-testable-importsflag toswift testwith which tests are built without the testability feature (import @testabledisabled). -
Update to manifest API to make it impossible to create an invalid build settings condition.
-
Enable linker dead stripping for all platforms. This can be disabled with
--disable-dead-strip -
Update to manifest API to make it impossible to create an invalid target dependency condition.
-
Package plugins of the type
buildToolcan now be declared in packages that specify a tools version of 5.6 or later, and can be invoked using theswift buildcommand. -
Package plugins of the type
commandcan now be declared in packages that specify a tools version of 5.6 or later, and can be invoked using theswift packagesubcommand. -
Semantic version dependencies can now be resolved against Git tag names that contain only major and minor version identifiers. A tag with the form
X.Ywill be treated asX.Y.0. This improves compatibility with existing repositories. -
Both parsing and comparison of semantic versions now strictly follow the Semantic Versioning 2.0.0 specification.
The parsing logic now treats the first "-" in a version string as the delimiter between the version core and the pre-release identifiers, only if there is no preceding "+". Otherwise, it's treated as part of a build metadata identifier.
The comparison logic now ignores build metadata identifiers, and treats 2 semantic versions as equal if and only if they're equal in their major, minor, patch versions and pre-release identifiers.
-
Soft deprecate
.package(name:, url:)dependency syntax in favor of.package(url:), given that an explicitnameattribute is no longer needed for target dependencies lookup. -
Adding a dependency requirement can now be done with the convenience initializer
.package(url: String, exact: Version). -
Dependency requirement enum calling convention is deprecated in favour of labeled argument:
.package(url: String, .branch(String))->.package(url: String, branch: String).package(url: String, .revision(String))->.package(url: String, revision: String).package(url: String, .exact(Version))->.package(url: String, exact: Version)
-
Introduce a second version of
Package.resolvedfile format which more accurately captures package identity. -
To increase the security of packages, SwiftPM performs trust on first use (TOFU) validation. The fingerprint of a package is now being recorded when the package is first downloaded from a Git repository or package registry. Subsequent downloads must have fingerpints matching previous recorded values, otherwise it would result in build warnings or failures depending on settings.
-
Location of configuration files (including mirror file) have changed to accomodate new features that require more robust configuration directories structure, such as SE-0292:
<project>/.swiftpm/config(mirrors file) was moved to<project>/.swiftpm/configuration/mirrors.json. SwiftPM 5.6 will automatically copy the file from the old location to the new one and emit a warning to prompt the user to delete the file from the old location.~/.swiftpm/config/collections.json(collections file) was moved to~/.swiftpm/configuration/collections.json. SwiftPM 5.6 will automatically copy the file from the old location to the new one and emit a warning to prompt the user to delete the file from the old location.
-
In a package that specifies a minimum tools version of 5.5,
@maincan now be used in a single-source file executable as long as the name of the source file isn'tmain.swift. To work around special compiler semantics with single-file modules, SwiftPM now passes-parse-as-librarywhen compiling an executable module that contains a single Swift source file whose name is notmain.swift. -
Adding a dependency requirement can now be done with the convenience initializer
.package(url: String, revision: String). -
Adding a dependency requirement can now be done with the convenience initializer
.package(url: String, branch: String). -
A more intuitive
.product(name:, package:)target dependency syntax is now accepted, wherepackageis the package identifier as defined by the package URL. -
Test targets can now link against executable targets as if they were libraries, so that they can test any data structures or algorithms in them. All the code in the executable except for the main entry point itself is available to the unit test. Separate executables are still linked, and can be tested as a subprocess in the same way as before. This feature is available to tests defined in packages that have a tools version of
5.5or newer.
-
-
Improvements
Packagemanifests can now have any combination of leading whitespace characters. This allows more flexibility in formatting the manifests.SR-13566 The Swift tools version specification in each manifest file now accepts any combination of horizontal whitespace characters surrounding
swift-tools-version, if and only if the specified version ≥5.4. For example,//swift-tools-version: 5.4and// swift-tools-version: 5.4are valid.All Unicode line terminators are now recognized in
Packagemanifests. This ensures correctness in parsing manifests that are edited and/or built on many non-Unix-like platforms that use ASCII or Unicode encodings. -
API Removal
ToolsVersionLoader.Error.malformedToolsVersion(specifier: String, currentToolsVersion: ToolsVersion)is replaced byToolsVersionLoader.Error.malformedToolsVersionSpecification(_ malformation: ToolsVersionSpecificationMalformation).ToolsVersionLoader.split(_ bytes: ByteString) -> (versionSpecifier: String?, rest: [UInt8])andToolsVersionLoader.regexare together replaced byToolsVersionLoader.split(_ manifest: String) -> ManifestComponents. -
Source Breakages for Swift Packages
The package manager now throws an error if a manifest file contains invalid UTF-8 byte sequences.
-
-
The
swiftLanguageVersionsproperty no longer takes its Swift language versions via a freeform Integer array; instead it should be passed as a newSwiftVersionenum array. -
The
Packagemanifest now accepts a new type of target,systemLibrary. This deprecates "system-module packages" which are now to be included in the packages that require system-installed dependencies. -
Packages can now specify a dependency as
package(path: String)to point to a path on the local filesystem which hosts a package. This will enable interconnected projects to be edited in parallel. -
The
generate-xcodeprojhas a new--watchoption to automatically regenerate the Xcode project if changes are detected. This uses thewatchmantool to detect filesystem changes. -
Scheme generation has been improved:
- One scheme containing all regular and test targets of the root package.
- One scheme per executable target containing the test targets whose dependencies intersect with the dependencies of the exectuable target.
-
SR-6978 Packages which mix versions of the form
vX.X.XwithY.Y.Ywill now be parsed and ordered numerically. -
#1489 A simpler progress bar is now generated for "dumb" terminals.
-
#1485 Support has been added to automatically generate the
LinuxMainfiles for testing on Linux systems. On a macOS system, runswift test --generate-linuxmain. -
SR-5918
Packagemanifests that include multiple products with the same name will now throw an error.
-
The generated Xcode project creates a dummy target which provides autocompletion for the manifest files. The name of the dummy target is in format:
<PackageName>PackageDescription. -
--specifieroption forswift testis now deprecated. Use--filterinstead which supports regex.
-
The package manager now supports writing Swift 3.0 specific tags and manifests, in order to support future evolution of the formats used in both cases while still allowing the Swift 3.0 package manager to continue to function.
-
Test modules now must be named with a
Testssuffix (e.g.,Foo/Tests/BarTests/BarTests.swift). This name also defines the name of the Swift module, replacing the oldBarTestSuitemodule name. -
It is no longer necessary to run
swift buildbefore runningswift test(it will always regenerates the build manifest when necessary). In addition, it now accepts (and requires) the same-Xcc, etc. options as are used withswift build. -
The
Packageinitializer now requires thename:parameter.