Require Pony 0.69.1
Pony 0.69.1 is the new minimum required version. The json standard library package renamed its types from Json* to JSON* in this release, and all public types in this library have been updated to match.
Rename Json to JSON in public type names
All public types that had Json in their name now use JSON to follow Pony's acronym casing convention. This affects every converter primitive, the two paginated converter classes, and LinkedJSONRequester.
Before:
let converter = RepositoryJsonConverterAfter:
let converter = RepositoryJSONConverterThe full list of renamed types:
AssetJsonConverter→AssetJSONConverterCommitJsonConverter→CommitJSONConverterCommitFileJsonConverter→CommitFileJSONConverterGistJsonConverter→GistJSONConverterGistChangeStatusJsonConverter→GistChangeStatusJSONConverterGistCommentJsonConverter→GistCommentJSONConverterGistCommitJsonConverter→GistCommitJSONConverterGistFileJsonConverter→GistFileJSONConverterGitCommitJsonConverter→GitCommitJSONConverterGitPersonJsonConverter→GitPersonJSONConverterIssueJsonConverter→IssueJSONConverterIssueCommentJsonConverter→IssueCommentJSONConverterIssueCommentsJsonConverter→IssueCommentsJSONConverterIssuePullRequestJsonConverter→IssuePullRequestJSONConverterLabelJsonConverter→LabelJSONConverterLicenseJsonConverter→LicenseJSONConverterPullRequestJsonConverter→PullRequestJSONConverterPullRequestBaseJsonConverter→PullRequestBaseJSONConverterPullRequestFilesJsonConverter→PullRequestFilesJSONConverterReleaseJsonConverter→ReleaseJSONConverterRepositoryJsonConverter→RepositoryJSONConverterUserJsonConverter→UserJSONConverterPaginatedListJsonConverter→PaginatedListJSONConverterPaginatedSearchJsonConverter→PaginatedSearchJSONConverterLinkedJsonRequester→LinkedJSONRequester