Skip to content

Commit

Permalink
Bump OpenAPIKit to 3.0.1 (#365)
Browse files Browse the repository at this point in the history
Bump OpenAPIKit to 3.0.1

### Motivation

OpenAPIKit fixed an issue with parsing large integers in 3.0.1 that affected some popular OpenAPI docs. While adopters can `swift package update`, let's still bump the minimum OpenAPIKit version we require to avoid our adopters accidentally running with `3.0.0` and hitting the bug.

### Modifications

Bumped the minimum OpenAPIKit version from 3.0.0 -> 3.0.1.

### Result

When this is released, adopters will always get the fixed version.

### Test Plan

All tests still pass.


Reviewed by: simonjbeaumont

Builds:
     ✔︎ pull request validation (5.10) - Build finished. 
     ✔︎ pull request validation (5.8) - Build finished. 
     ✔︎ pull request validation (5.9) - Build finished. 
     ✔︎ pull request validation (compatibility test) - Build finished. 
     ✔︎ pull request validation (docc test) - Build finished. 
     ✔︎ pull request validation (integration test) - Build finished. 
     ✔︎ pull request validation (nightly) - Build finished. 
     ✔︎ pull request validation (soundness) - Build finished. 

#365
  • Loading branch information
czechboy0 committed Nov 7, 2023
1 parent 4f2a7cc commit d2ead56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ let package = Package(
.package(url: "https://github.com/apple/swift-algorithms", from: "1.0.0"),

// Read OpenAPI documents
.package(url: "https://github.com/mattpolzin/OpenAPIKit.git", from: "3.0.0"),
.package(url: "https://github.com/mattpolzin/OpenAPIKit.git", from: "3.0.1"),
.package(url: "https://github.com/jpsim/Yams.git", "4.0.0"..<"6.0.0"),

// CLI Tool
Expand Down

0 comments on commit d2ead56

Please sign in to comment.