Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency apple/swift-protobuf to from: "1.26.0" #41

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate-bot
Copy link
Contributor

@renovate-bot renovate-bot commented Sep 20, 2020

Mend Renovate

This PR contains the following updates:

Package Update Change
apple/swift-protobuf minor from: "1.1.1" -> from: "1.26.0"

Release Notes

apple/swift-protobuf (apple/swift-protobuf)

v1.26.0: Release

Compare Source

Note: This is the first release that includes support for a Privacy Manifest.

What's Changed

Full Changelog: apple/swift-protobuf@1.25.2...1.26.0

v1.25.2: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.25.1...1.25.2

v1.25.1: Release

Compare Source

No function changes, just fixes the checked in Xcode project file.

What's Changed

Full Changelog: apple/swift-protobuf@1.25.0...1.25.1

v1.25.0: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.24.0...1.25.0

v1.24.0: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.23.0...1.24.0

v1.23.0: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.22.1...1.23.0

v1.22.1: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.22.0...1.22.1

v1.22.0: Release

Compare Source

What's Changed

New Contributors

Full Changelog: apple/swift-protobuf@1.21.0...1.22.0

v1.21.0: Release

Compare Source

What's Changed

Full Changelog: apple/swift-protobuf@1.20.3...1.21.0

v1.20.3: Release

Compare Source

Full Changelog: apple/swift-protobuf@1.20.2...1.20.3

v1.20.2: Release

Compare Source

Full Changelog: apple/swift-protobuf@1.20.1...1.20.2

v1.20.1: Release

Compare Source

Full Changelog: apple/swift-protobuf@1.20.0...1.20.1

v1.20.0: Release

Compare Source

Full Changelog: apple/swift-protobuf@1.19.1...1.20.0

v1.19.1: Release

Compare Source

  • Minor Updates

Full Changelog: apple/swift-protobuf@1.19.0...1.19.1

v1.19.0: Release

Compare Source

  • Major Updates
  • Minor Updates
    • Swift format lint issues #​1199
    • Visit extensions improvement #​1201 (smaller codegen)
    • Tweak generation for messages with only extension ranges. #​1202 (codegen change to help compilation performance)

v1.18.0: Release

Compare Source

  • Minor Updates
    • Support JSON ignoreUnknownFields within WKTs. #​1172
    • Handle writing out json when the value is empty/zero bytes and no type. #​1167
  • Fixes from fuzz testing:
    • Handle skipping a JSON object that ends after the open brace. #​1165
    • When skipping a varint for an unknown field, ensure it is valid. #​1169
    • Rework JSON skipping so it's not recursive for nested arrays #​1178
    • Track recursion depth for nested JSON ListValue structures #​1179
    • Uses same workaround for stack sizes in non optimized builds. #​1183
    • Reject fieldmasks that have non-ASCII characters for JSON #​1185
    • Don't overrun string when parsing timestamps #​1186

v1.17.0: Release

Compare Source

  • Significant Change
    • TextFormatDecodingError has a new error case to got with a recursion limit for TextFormat decoding (add safety found via fuzz testing for potential bogus input trying trigger stack overflow #​1132), if you have any switch states on all the cases, this is a breaking change in that you must handle the new case.
  • Fixes from fuzz testing:
    • Fix octal TextFormat decoding failure #​1124
    • Avoid walking off the end of the buffer in two parsing cases. #​1126
    • Add TextFormatDecodingOptions and implement a recursion limit. #​1132
    • Don't walk off the end of the buffer during a unicode bytes decode. #​1136
  • Minor Updates
    • Change oneof enforcement to allow null (found via upstream conformance test requirements) #​1135
    • Allow proto3_optional for extensions. #​1138
    • Some edge case speed improvements:
      • Add modify operation to ExtensionFieldValueSet. #​1137
      • Don't do characterwise-compares if not needed. #​1145
      • Clear previous contents before decoding Any from TextFormat #​1147

v1.16.0: Release

Compare Source

Minor Changes:

  • Normalize CRLF in comments to avoid double spacing some input. #​1109
  • Fixes from fuzz testing:
    • Fix to decoding of groups/unknown fields. #​1118
    • Protect against overallocation on bad binary input. #​1119
    • Deal with malformed UTF8 while parsing a JSON field name. #​1121
    • Avoid looping forever on malformed Map TextFormat. #​1122

v1.15.0: Release

Compare Source

Minor Changes:

  • Allow parallel lookup of types in Any decode. #​1098
  • Fix extension order serialization and improve generation for extension ranges with single values. #​1100

v1.14.0: Release

Compare Source

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: Release

Compare Source

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: Release

Compare Source

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:

  • 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: Release

Compare Source

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: Release

Compare Source

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: Release

Compare Source

Minor fix for an accidental api break in the 1.10.0 Release.

  • Add back the old init signatures. (#​1023)

v1.10.0: Release

Compare Source

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: Release

Compare Source

  • 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: Release

Compare Source

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: SwiftProtobuf 1.7.0 Release

Compare Source

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)

v1.6.0: SwiftProtobuf 1.6.0 Release

Compare Source

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: SwiftProtobuf 1.5.0 Release

Compare Source

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: SwiftProtobuf 1.4.0 Release

Compare Source

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: SwiftProtobuf 1.3.1 Release

Compare Source

Minor release to fix building with Swift versions <4.2 (#​828).

v1.3.0: SwiftProtobuf 1.3.0 Release

Compare Source

  • 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: SwiftProtobuf 1.2.0 Release

Compare Source

Changes of interest:

  • #​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: SwiftProtobuf 1.1.2 Release

Compare Source

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).


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@trusted-contributions-gcf trusted-contributions-gcf bot added the kokoro:force-run Add this label to force Kokoro to re-run the tests. label Sep 20, 2020
@google-cla google-cla bot added the cla: yes This human has signed the Contributor License Agreement. label Sep 20, 2020
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 8712ccc to c4612c6 Compare October 25, 2020 18:01
@renovate-bot renovate-bot requested a review from a team as a code owner October 25, 2020 18:01
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.12.0" chore(deps): update dependency apple/swift-protobuf to from: "1.13.0" Oct 25, 2020
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from c4612c6 to 2994f36 Compare December 6, 2020 19:01
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.13.0" chore(deps): update dependency apple/swift-protobuf to from: "1.14.0" Dec 6, 2020
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 2994f36 to 2397b39 Compare January 24, 2021 10:00
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.14.0" chore(deps): update dependency apple/swift-protobuf to from: "1.15.0" Jan 24, 2021
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 2397b39 to 5a45180 Compare April 13, 2021 21:52
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.15.0" chore(deps): update dependency apple/swift-protobuf to from: "1.16.0" Apr 13, 2021
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 5a45180 to 2fafd9b Compare May 14, 2021 17:39
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.16.0" chore(deps): update dependency apple/swift-protobuf to from: "1.17.0" May 14, 2021
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 2fafd9b to ba109e4 Compare June 8, 2021 19:35
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from ba109e4 to 7d9904f Compare October 18, 2021 18:33
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.17.0" chore(deps): update dependency apple/swift-protobuf to from: "1.18.0" Oct 18, 2021
@trusted-contributions-gcf trusted-contributions-gcf bot added the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 18, 2021
@gcf-owl-bot gcf-owl-bot bot removed the owlbot:run Add this label to trigger the Owlbot post processor. label Oct 18, 2021
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 7d9904f to bd56e9e Compare March 7, 2022 08:04
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.18.0" chore(deps): update dependency apple/swift-protobuf to from: "1.19.0" Mar 7, 2022
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from bd56e9e to 794f15b Compare September 25, 2022 20:04
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.19.0" chore(deps): update dependency apple/swift-protobuf to from: "1.20.2" Sep 25, 2022
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 794f15b to 3274fea Compare November 20, 2022 14:58
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.20.2" chore(deps): update dependency apple/swift-protobuf to from: "1.20.3" Nov 20, 2022
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.20.3" chore(deps): update dependency apple/swift-protobuf to from: "1.21.0" Feb 22, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 3274fea to 6e3d5b2 Compare February 22, 2023 22:17
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 6e3d5b2 to 4d9eba7 Compare June 2, 2023 17:29
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.21.0" chore(deps): update dependency apple/swift-protobuf to from: "1.22.0" Jun 2, 2023
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.22.0" chore(deps): update dependency apple/swift-protobuf to from: "1.22.1" Jul 26, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 4d9eba7 to 5a781ee Compare July 26, 2023 13:45
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.22.1" chore(deps): update dependency apple/swift-protobuf to from: "1.23.0" Aug 31, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 5a781ee to 2e580b0 Compare August 31, 2023 18:04
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 2e580b0 to 910f3af Compare September 28, 2023 19:48
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.23.0" chore(deps): update dependency apple/swift-protobuf to from: "1.24.0" Sep 28, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 910f3af to 8fe5846 Compare October 27, 2023 20:01
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.24.0" chore(deps): update dependency apple/swift-protobuf to from: "1.25.0" Oct 27, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 8fe5846 to 51a608d Compare October 31, 2023 16:04
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.25.0" chore(deps): update dependency apple/swift-protobuf to from: "1.25.1" Oct 31, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 51a608d to 8668eee Compare November 29, 2023 22:26
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.25.1" chore(deps): update dependency apple/swift-protobuf to from: "1.25.2" Nov 29, 2023
@renovate-bot renovate-bot force-pushed the renovate/apple-swift-protobuf-1.x branch from 8668eee to 4786fdd Compare March 27, 2024 20:09
@renovate-bot renovate-bot changed the title chore(deps): update dependency apple/swift-protobuf to from: "1.25.2" chore(deps): update dependency apple/swift-protobuf to from: "1.26.0" Mar 27, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cla: yes This human has signed the Contributor License Agreement. kokoro:force-run Add this label to force Kokoro to re-run the tests.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant