renovate/lib/modules/manager/swift
Ryosuke Ito 8a08c8916b
feat(manager/swift): Support Swift 5.7 exact: syntax (#20072)
Co-authored-by: Rhys Arkins <rhys@arkins.net>
Co-authored-by: Michael Kriese <michael.kriese@visualon.de>
2023-02-14 08:16:42 +01:00
..
__fixtures__ feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
__snapshots__ feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
extract.ts feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
index.spec.ts feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
index.ts fix(swift): pinDigests=false (#17862) 2022-09-19 15:09:33 +02:00
readme.md feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
types.ts refactor: lib/modules (#14488) 2022-03-04 09:04:02 +01:00

Anything other than .exact(<...>) or exact:<...> will be treated as range with respect to Swift specific. Because of this, some PR descriptions will look like from: <...> => <...>.

Examples:

package(name: "<...>", .exact("1.2.3"))   // => 1.2.3
package(name: "<...>", exact: "1.2.3")    // => 1.2.3
package(name: "<...>", from: "1.2.3")     // => from: "2.0.0"
package(name: "<...>", "1.2.3"...)        // => "2.0.0"...
package(name: "<...>", "1.2.3"..."1.3.0") // => "1.2.3"..."2.0.0"
package(name: "<...>", "1.2.3"..<"1.3.0") // => "1.2.3"..<"2.0.0"
package(name: "<...>", ..."1.2.3")        // => ..."2.0.0"
package(name: "<...>", ..<"1.2.3")        // => ..<"2.0.0"