renovate/lib/modules/manager/swift
2023-11-07 15:50:29 +00:00
..
__fixtures__ feat(manager/swift): Support Swift 5.7 exact: syntax (#20072) 2023-02-14 08:16:42 +01:00
__snapshots__ refactor: PackageFile types (#20498) 2023-02-20 14:58:49 +00:00
extract.ts fix: regEx definitions that used regex literal and separate flags (#24626) 2023-09-24 05:21:18 +00:00
index.spec.ts refactor(prettier): Force trailing commas (#25631) 2023-11-07 15:50:29 +00:00
index.ts feat!: categories (#16534) 2023-07-04 19:21:52 +02:00
range.spec.ts feat(config)!: default to rangeStrategy=auto, prefer update-lockfile (#19942) 2023-03-10 09:25:45 +01:00
range.ts feat(config)!: default to rangeStrategy=auto, prefer update-lockfile (#19942) 2023-03-10 09:25:45 +01: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"