All Versions
20
Latest Version
Avg Release Cycle
53 days
Latest Release
1203 days ago

Changelog History
Page 2

  • v1.6.0 Changes

    July 18, 2019

    โšก๏ธ Notable updates:

    • Raise a .illegalNull is the top level JSON is null. (#870)
    • Perf: Use new float formatting code (#882)
    • Specify swift_versions in podspec and minimum CocoaPods 1.7.0 version. (#891)
  • v1.5.0 Changes

    April 15, 2019

    ๐Ÿ‘ Complete support for Swift 5.

    • โš  Swift5: Fix warnings about loss of precision (#844)
    • โฌ‡๏ธ Drop the support for Swift <4.0. (#847)
    • Swift5.0: Change Data(bytes:) to Data(_:). (#848)
    • ๐Ÿ›  Fix build command to work also with Swift 5. (#852)
    • Swift 5.0: Switch a stray Data(bytes:) to Data(_:). (#854)
    • Swift 5: adopt new Data.withUnsafeBytes API. (#843)

    โšก๏ธ Update some internals:

    • โšก๏ธ Update some FileIo calls to FileHandle. (#845)
    • โœ‚ Remove printToFd logic from FileIo. (#846)

    โž• Add some features to the library:

    • ๐Ÿ–จ TextFormat conformance: Add option to suppress unknown field printing. (#850)
    • โž• Adding JSON encoding option: Use proto field names instead of lowerCamelCase names. (#856)
  • v1.4.0 Changes

    March 11, 2019

    โšก๏ธ Minor updates around some edge conditions in TextFormat/JSON format:

    • The empty string is a valid JSON encoding for a FieldMask. (#835)
    • Accept too-large float values in Text format (#840)
  • v1.3.1 Changes

    January 07, 2019

    ๐Ÿš€ Minor release to fix building with Swift versions <4.2 (#828).

  • v1.3.0 Changes

    January 04, 2019
    • โšก๏ธ SwiftPM Updates to be in better shape for Swift 5. (#819, #824)
    • โšก๏ธ Code updates for Swift 5 being more strict about some things (#808, #809)
    • Avoid generating code that doesn't compile when enum case aliases have naming collisions in their Swift forms (#822)
    • โฌ‡๏ธ Drop support for Swift <=3.1 since 4.2 has been the current GM for a while now. (#825)
  • v1.2.0 Changes

    October 17, 2018

    ๐Ÿ”„ Changes of interest:

    • 0๏ธโƒฃ #800 Add JSON encoding options: Not, this is a source compatible change, but not binary compatible because of a new parameter with a default, hence the 1.2.0 version numbers.
    • ๐Ÿ›  #804 Fix Json map encoding for float, sint, fixed, sfixed
  • v1.1.2 Changes

    September 13, 2018

    ๐Ÿš€ Release to provide full Swift 4.2 toolchain support. Most interesting Pull Requests:

    • Hashable conformance and Hashing changes #784

    ๐Ÿš€ The 1.1.0 Release already included #764 (SwiftPM 4.2 specific manifest), #766 (CaseIterable for enums).

  • v1.1.1 Changes

    August 14, 2018
    • #781 & #783 - avoid extra indirection on equality methods.
    • ๐Ÿ›  #785 fixes long standing (and overlooked) issue around clear* methods when the used shared heap storage with another instance.
  • v1.1.0 Changes

    July 26, 2018

    ๐Ÿ”„ Changes of interest:

    • ๐Ÿ‘Œ Support for Swift < 3.1 has been dropped. (#736, #765)
    • ๐Ÿ“œ Some fixes around text_format parsing (#738)
    • โž• Added missing support for escape sequences in JSON byte data (#744)
    • ๐Ÿ‘ Start taking advantage of the support from conditional conformances (#747, #749, #755)
    • Fail for unknown JSON fields, but provide an option to ignore them instead (#771)
    • ๐Ÿš€ Start Swift 4.2 support (#764, #766). There will be more work for this in future releases.

    Note: This release includes a correction to the handing of unknown fields when parsing JSON messages. Previous releases were not matching the Protobuf Spec which calls for unknown fields to error. The spec does allow for an option to request that unknown fields are silently dropped. So this release includes the fix to error for unknown fields, but adds an option to JSONDecodingOptions to request unknown fields be ignored instead of causing the failure. PR #771 includes these changes and more details.

  • v1.0.3 Changes

    March 02, 2018

    ๐Ÿš€ Release to provide Swift 4.1 toolchain support. Most interesting Pull Requests:

    • ๐Ÿ‘ #716 Support for Swift 4.1's SE0187 changes.
    • #718 More Swift 4.1 cleanups
    • ๐Ÿ— #719 Swift 4.1 added warnings for "near misses" with default impls of protocols that cause build warning in generated code