- 07 Jul, 2016 2 commits
-
-
Jon Skeet authored
This does not affect the generated code. If we decide we want to apply attributes to generated types, we should start by just reverting this change.
-
Dagobert Michelsen authored
-
- 06 Jul, 2016 2 commits
- 04 Jul, 2016 1 commit
-
-
Jon Skeet authored
I think this has caught everything. I've left a stub for attributes to be applied to the types themselves, but we don't currently need anything. Follow-up commit will include the changes to generated code itself. Fixes #1671.
-
- 03 Jul, 2016 2 commits
-
-
Otto Kekäläinen authored
-
Otto Kekäläinen authored
-
- 30 Jun, 2016 1 commit
-
-
Feng Xiao authored
Change-Id: Ibf7d1df850f4b497303f9f617751be98327898ef
-
- 29 Jun, 2016 1 commit
-
-
Adam Cozzette authored
This includes all internal changes from around May 20 to now.
-
- 28 Jun, 2016 1 commit
-
-
Lizan Zhou authored
- add JsonParseOptions for JsonToBinaryString allow unknown fields - rename current JsonOptions to JsonPrintOptions
-
- 17 Jun, 2016 1 commit
-
-
Thomas Van Lenten authored
- Better docs in the generator for the different options that can be passed during an invoke of protoc. - Add named_framework_to_proto_path_mappings_path to pass the path to a file containing mappings of frameworks for different proto files. - Update the generation to use the mapping to change the #import directives it creates. Note: the changes in helpers is mostly moving code within the fine, and then a small change to expose the parsing so a passed on class can consume the line. Fixes https://github.com/google/protobuf/issues/1457
-
- 16 Jun, 2016 4 commits
-
-
vjpai authored
-
Josh Haberman authored
-
Josh Haberman authored
-
Vijay Pai authored
constructor, and instead create an _internal_only getter that gets the needed information. This is a workaround for a deficiency in gcc-4.4 that does not properly support templated friend classes.
-
- 15 Jun, 2016 1 commit
-
-
Thomas Van Lenten authored
- Add a protoc objc option (generate_for_named_framework) to set the name of the framework all generated sources will be in. - Tweak some comments/naming to make it clear what is the Protobuf framework vs. the framework for generated code. - Update the objc README to document the new generation option to protoc. This is working towards https://github.com/google/protobuf/issues/1457.
-
- 07 Jun, 2016 2 commits
- 25 May, 2016 1 commit
-
-
Thomas Van Lenten authored
Working on https://github.com/google/protobuf/issues/1599, specifically: - Turn on more warnings that the Xcode UI calls out with individual controls. - Manually add: -Wundef -Wswitch-enum - Manually add and then diable in the unittests because of XCTest's headers: -Wreserved-id-macro -Wdocumentation-unknown-command - Manually add -Wdirect-ivar-access, but disable it for the unittests and in the library code (via #pragmas to suppress it). This is done so proto users can enable the warning.
-
- 24 May, 2016 1 commit
-
-
Thomas Van Lenten authored
- Add generator constant for the default framework name. - Add generator api for making the CPP symbol from the name. - Add generator api to see if it is a bundled proto file. - Output a CPP conditional and two imports for the core library headers. - Add helper for generating the #import for file headers to deal with the framework imports. - Add a reference from the unittests to a WKT to use that to inspect how imports generate. - Update the podspec to define the CPP symbol and require pods 1.0 (or later). Fixes https://github.com/google/protobuf/issues/1457
-
- 18 May, 2016 1 commit
-
-
Bo Yang authored
-
- 17 May, 2016 2 commits
-
-
Adam Michalik authored
This got broken in commit 6ef984af which integrated changes from internal branch.
-
Adam Michalik authored
The commit 3b3c8abb has replaced the <> with "" in #include statement in js_generator.cc
-
- 14 May, 2016 1 commit
-
-
Jisi Liu authored
As it may be implementation dependent.
-
- 11 May, 2016 1 commit
-
-
Jisi Liu authored
-
- 10 May, 2016 1 commit
-
-
Jisi Liu authored
This time move the macro inside namespaces; hopefully will work with the integration script.
-
- 07 May, 2016 1 commit
-
-
Walter Gray authored
-
- 28 Apr, 2016 1 commit
-
-
Jisi Liu authored
-
- 26 Apr, 2016 1 commit
-
-
Thomas Van Lenten authored
proto2 syntax allows the first enum to have a non zero value. This means any field using that default has a non zero default without having an explicit default being set. So when deciding what runtime info is needed, don't rely on an explicit default, always check that the values aren't zero. Fixes https://github.com/google/protobuf/issues/1453
-
- 21 Apr, 2016 1 commit
-
-
Petr Prokhorenkov authored
A protobuf message will be corrupted in the following scenario: 1. Use LITE_RUNTIME. 2. Have an optional enum field following some other field. 3. Update protocol by adding new values to the enum. 4. Have an old client parse and serialize a message having enum field set to a value the client does not understand. 5. Field preceeding the enum is now corrupted. The bug is due to the fact that optimized fallthrough in parser code does not update variablle 'tag' when jumping to the parser code for the next field.
-
- 20 Apr, 2016 3 commits
-
-
Ben Boeckel authored
-
Jon Skeet authored
-
Jon Skeet authored
Overview of changes: - A new C#-specific command-line option, legacy_enum_values to revert to the old behavior - When legacy_enum_values isn't specified, we strip the enum name as a prefix, and PascalCase the value name - A new attribute within the C# code so that we can always tell the original in-proto name Regenerating the C# code with legacy_enum_values leads to code which still compiles and works - but there's more still to do.
-
- 19 Apr, 2016 1 commit
-
-
Jisi Liu authored
-
- 15 Apr, 2016 1 commit
-
-
Chad Whipkey authored
proto3. Added a couple unit test proto3 files, for arena_lite and lite. Cloned the proto3_arena_unittest to test some of the basics of generated code (and to ensure that the generated proto3 test files are used by some test).
-
- 14 Apr, 2016 1 commit
-
-
Adam Michalik authored
It doesn't seem to be necessary here, and it pulls other testing headers during compilation of release protobuf.
-
- 11 Apr, 2016 1 commit
-
-
Jon Skeet authored
This will make it easier to change the enum value names, as it reduces the number of places they're used.
-
- 08 Apr, 2016 1 commit
-
-
Jon Skeet authored
-
- 07 Apr, 2016 2 commits
-
-
Josh Haberman authored
-
Gaurav Vaish authored
-