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

Changelog History
Page 1

  • v1.14.0 Changes

    December 02, 2020

    Notable Changes:

    • โœ… Don't allow raw LF or CR in the middle of TextFormat string literals. #1085 โ€“ TextFormat was used as input (tests, etc.), then previously working multiline strings might no longer parse. This is to bring the library in alignment with the protocolbuffers conformance tests.

    Minor Changes:

    • ๐Ÿ›  Fix issue with oneof being named newValue #1087
    • ๐Ÿ‘Œ Support unicode escapes in TextFormat #1085
  • v1.13.0 Changes

    October 23, 2020

    Notable Changes:

    • Sort map fields for TextFormat (to match spec) #1076
      Minor Changes:
    • โฌ‡๏ธ Reduce foundation usage #1064
    • โšก๏ธ The CocoaPod spec and checked in Xcode project were updated to move the minimum iOS version to 9.0 to avoid warnings in Xcode 12 #1082
  • v1.12.0 Changes

    August 28, 2020

    Notable Changes:

    • โšก๏ธ Change code generation to reduce the stack usage in non optimized builds (Issue #1034)
      • Move required field support for oneof into a generated helper (#1041)
      • Work around stack usage for non optimize build and switch statements (#1040)
      • Work around excessive stack space in non optimized builds during oneof isInitialized (#1042)
    • Revise the way storage calculations are done to take into account the cost of singular message fields since those directly increase the size of the containing message (#1046)
    • ๐Ÿ›  Fix JSON coding/decoding of NullValue WKT (#1051)

    Minor Changes:

    • 0๏ธโƒฃ Minor oneof tweak: don't generate case nil when also generating a default (#1035)
    • Factor out the common decodeJSON from all the wrappers (#1062)
  • v1.11.0 Changes

    August 06, 2020

    Minor changes:

    • โœ‚ Remove empty Data singleton (#1028)
    • Factor SwiftProtobuf module name into the namer, add SwiftProtobufModuleName (#1017)
    • Eliminate NamingUtils's awareness of SwiftProtobufNamer (#1030)
  • v1.10.2 Changes

    July 10, 2020

    ๐Ÿš€ Minor fix for an accidental api break in the 1.10.0 Release.

    • ๐Ÿ›  Fixes and version bump to right api break (#1027)
  • v1.10.1 Changes

    July 09, 2020

    ๐Ÿš€ Minor fix for an accidental api break in the 1.10.0 Release.

    • โž• Add back the old init signatures. (#1023)
  • v1.10.0 Changes

    June 30, 2020

    Notable Changes:

    • ๐Ÿ‘Œ Support Proto2 extensions in JSON coder/decoder (#1002)

    Minor Changes:

    • โž• Add visitRepeated* methods to the BinaryEncodingSizeVisitory. (#1009)
    • ๐Ÿ›  Fix for newer Xcode/swift versions: var --> let to eliminate warning (#975)
    • Don't use StaticString.utf8Start unless there is a pointer rep. (#1015)
  • v1.9.0 Changes

    May 18, 2020
    • ๐Ÿ‘ Better handing of proto identifiers that start with underscores and numbers #947 #954
    • โž• Added CMake based build for platforms with SwiftPM #957
    • ๐Ÿ‘‰ Use withContiguousStorageIfAvailable for String encoding in BinaryEncoder #949
    • ๐Ÿ‘‰ Make setting a repeated extension field to [] clear it #966
    • Declare the MessageExtensions with the correct visibility. #969
    • ๐Ÿ‘Œ Support for new Proto3 optional (this needs a protoc from protocolbuffers/protobuf v3.12.0 (or later)) #978
    • ๐Ÿ”Œ Provide some more map helpers in the plugin library like the C++ Descriptor. #983
    • ๐Ÿ— Move the SwiftProtobuf.xcodeproj build settings into xcconfig files #986
  • v1.8.0 Changes

    January 28, 2020

    ๐Ÿ†• New features/interfaces:

    • โž• Add Message binary decoding support from ContiguousBytes (#914)
    • ๐Ÿ‘‰ Make things generic over ContiguousBytes and @inlinable (#915, #921)

    Notable changes:

    • ๐Ÿ‘‰ Use heap-based storage only when a Protobuf has a singular transitive recursion (#900)
    • ๐Ÿ‘‰ Use raw pointers instead of typed pointers (#918)
    • โž• Add missing CaseIterable support for nested enums (#923)
    • Guard against TextFormat encoding of unknowns from overflowing the stack (#927)

    ๐ŸŽ Performance related changes:

    • ๐ŸŽ JSON/TextFormat submessage encoding performance improvements (#916)
    • Avoid collecting unknown fields while scanning for message (#924)
    • Minor code cleanup for JSON additions (#935)
  • v1.7.0 Changes

    September 27, 2019

    ๐Ÿ‘ Complete support for Swift 5.1.

    โž• Additions to the library:

    • The generated code for descriptor.proto is now included in the library, this means one no longer has to generate and compile it in if there are proto files that had extension declared on those types. (#727)

    Notable changes:

    • The Swift 5.1 compiler will error on switch statements for an enum if it has a large number of cases; this could happen in the generated code. The generated code now splits things up to avoid this compile error. (#904)