Skip to content

0.9.0

Latest

Choose a tag to compare

@ponylang-main ponylang-main released this 21 Aug 23:38
· 2 commits to main since this release

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 = RepositoryJsonConverter

After:

let converter = RepositoryJSONConverter

The full list of renamed types:

  • AssetJsonConverterAssetJSONConverter
  • CommitJsonConverterCommitJSONConverter
  • CommitFileJsonConverterCommitFileJSONConverter
  • GistJsonConverterGistJSONConverter
  • GistChangeStatusJsonConverterGistChangeStatusJSONConverter
  • GistCommentJsonConverterGistCommentJSONConverter
  • GistCommitJsonConverterGistCommitJSONConverter
  • GistFileJsonConverterGistFileJSONConverter
  • GitCommitJsonConverterGitCommitJSONConverter
  • GitPersonJsonConverterGitPersonJSONConverter
  • IssueJsonConverterIssueJSONConverter
  • IssueCommentJsonConverterIssueCommentJSONConverter
  • IssueCommentsJsonConverterIssueCommentsJSONConverter
  • IssuePullRequestJsonConverterIssuePullRequestJSONConverter
  • LabelJsonConverterLabelJSONConverter
  • LicenseJsonConverterLicenseJSONConverter
  • PullRequestJsonConverterPullRequestJSONConverter
  • PullRequestBaseJsonConverterPullRequestBaseJSONConverter
  • PullRequestFilesJsonConverterPullRequestFilesJSONConverter
  • ReleaseJsonConverterReleaseJSONConverter
  • RepositoryJsonConverterRepositoryJSONConverter
  • UserJsonConverterUserJSONConverter
  • PaginatedListJsonConverterPaginatedListJSONConverter
  • PaginatedSearchJsonConverterPaginatedSearchJSONConverter
  • LinkedJsonRequesterLinkedJSONRequester

[0.9.0] - 2026-08-21

Changed

  • Require Pony 0.69.1 (PR #146)
  • Rename Json to JSON in public type names (PR #147)