aboutsummaryrefslogtreecommitdiff
path: root/Makefile.am
Commit message (Collapse)AuthorAgeFilesLines
* C# Proto2 feature : Field presence and default values (#4642)Sydney Acksman2018-09-241-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Compiler changes * Generated code changes * Library changes * Compiler style changes * Generated style changes * Fix Windows build errors * Implement changes from review * Reintroduce proto2 check * Compiler changes (required handling review) * Generated code changes (required handling review) * Library changes (required handling review * Field presence rewrite (compiler changes) * Field presence rewrite (generated code changes) * Compiler comment * IFieldAccessor.HasValue library implementation * Remove Clear methods and default values from proto3 code (Compiler) * Remove Clear methods and default values from proto3 code (Generated) * Remove Clear methods and default values from proto3 code (Library) * Fix distcheck error * Rewrite default string values to use base64 and convert * Library changes (IMessage2) * Compiler changes (IMessage2) * Generated changes (IMessage2) * Rebased and regenerated * Compiler changes (initialized extension) * Generated changes (initialized extension) * Library changes (initialized extension) * Refactor MessageExtensions.IsRequired * Move string default value creator and bytes default value creator back to seperate methods * Dead code cleanup * Fixed segmentation fault Removed unused header method declarations
* Add files to Makefile.am to fix dist targetsJon Skeet2018-09-221-0/+3
|
* Merge pull request #5078 from haberman/conformance-cmakeJoshua Haberman2018-09-021-0/+1
|\ | | | | Added cmake build files for the conformance test runner.
| * Added missing file to Makefile.am.Josh Haberman2018-08-241-0/+1
| |
* | Fix failing tests.Feng Xiao2018-08-091-1/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1. Fix C++ tests. * Add missing files to Makefile.am and fix distcheck in tests.sh * Remove BUILT_SOURCES from conformance/Makefile.am. * Add some missing override keyword. * Add a type cast to int64 because our StrCat() in stubs can't handle size_t. 2. Fix Java tests. * Add missing test dependency on guava in pom.xml. * Include newly referenced test data in test resources. * Manually fix map_lite_test.proto which is overwritten because it's mapped from map_test.proto in google3. * Add back "optimize_for = LITE_RUNTIME" which is still needed to keep the opensource test passing as it's still running lite tests. * Add a type cast in newBuilder() because without it the code doesn't compile with openjdk javac 1.8 (the compiler can't figure if it's the right type due to complex generic typing). 3. Fix Python tests. * Remove/replace references to <hash_map>. * Suppress more warnings in setup.py. * Replace incorrect header inclusion for google/protobuf/proto_api.h. * Add strings::EndsWith to google/protobuf/stubs/strutil.h because it's referenced in the updated python C extension code. * Replace proto2 with google::protobuf. The proto2 name is leaked to opensource because we removed the subsitition rule for proto2 namespace but only fixed C++ source code and forgot to update python C extension code.
* | Down-integrate from google3.Feng Xiao2018-08-081-0/+1
|/
* Merge pull request #4299 from hekike/feat/add-commonjs-strict-import-styleJoshua Haberman2018-07-021-0/+3
|\ | | | | Feat: add import-style=commonjs_strict option to the compiler
| * Fix strict JS generator with import in a protofilePeter Marton2018-05-081-0/+1
| |
| * Test: cover import_style=commonjs_strictPeter Marton2018-05-081-0/+2
| |
* | Add msbuild targets to C# tools for protoc compilers (#4648)Sydney Acksman2018-06-211-0/+1
| | | | | | | | | | | | * Added props to C# tools * Add targets file to makefile.am
* | Introduce Proto C API; based on cl/198113115 by amauryfaThomas Colthurst2018-05-301-0/+1
| |
* | PHP namespaces for nested messages and enums (#4536)Brent Shaffer2018-05-241-13/+15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * uses namespaces for nested messages and enums * fixes namespaces for PHP dist * fixes namespace for Descriptors, adds Cardinality and Kind * fixes nested namespaces for reserved words and adds tests * adds tests and generator fix for php class prefixes * fixes escaping of protobuf packages, enum comments, misc others * nice refactor of generated code * adds class files for backwards compatibility * simplifies code with templates * adds compatibility files to makefile * cleanup of generator and fixes nested namespace bug * regenerates proto types * remove internal BC classes * adds deprecated warning, adds methods back * simplifies if statement * fixes dist files * addresses review comments * adds back TYPE_URL_PREFIX constant * adds @deprecated to old nested class files * skips tests which require a separate process when protobuf.so is enabled * Adds tests for legacy nested classes that do not require separate processes to test * uses legacy names for GPBUtil message check * adds block for IDE @deprecated message * Namespace for nested message/enum in c extension * Remove unused code
* | Add missing ruby/tests/test_ruby_package.protoBo Yang2018-05-221-0/+1
| |
* | Include version.rc.in in distribution packageJozef Izso2018-04-281-0/+1
|/
* Remove the iOS Test App.Thomas Van Lenten2018-04-201-19/+0
| | | | | | The tests can run as what Apple calls a Logic Test (under xctest), which means it doesn't have to load an full UI App under the simulator, which speeds things up a fair amount.
* Update Makefile.am for Java lite files.Feng Xiao2018-04-181-3/+1
|
* Add __init__.py files to compiler and util subpackages (#4117)Thomas Hisch2018-04-091-0/+2
| | | | | | The compiler and util subpackages are created by the build_py class in setup.py. This has caused an issue in the protobuf package in conda-forge (https://github.com/conda-forge/protobuf-feedstock/issues/40), which is fixed by this commit.
* Add the files added in #4485.Thomas Van Lenten2018-04-061-0/+2
|
* Merge pull request #4283 from ObsidianMinor/csharp/better-test-runnersFeng Xiao2018-04-041-1/+0
|\ | | | | [C#] Update test project to be used with dotnet test and Visual Studio Test Explorer
| * Remove Google.Protobuf.Test/Program.cs from Makefile.amObsidianMinor2018-02-061-1/+0
| |
* | Add compile test sources for to test include order.Thomas Van Lenten2018-04-021-0/+25
| | | | | | | | | | | | | | | | | | | | | | To ensure all headers aren't dependent on other things being imported before/after them, make a source that just imports each header and add it to the unittesting target, that way we ensure it can be included on its own with ordering issues. Also do this testing with a few generated headers that aren't part of the library to help ensure the different generated imports needed are complete.
* | Add extra C# file to Makefile.amJon Skeet2018-03-271-0/+1
| |
* | Include googletest as a submodule (#3993)Carlos O'Ryan2018-03-261-8/+7
| | | | | | Add googletest as a submodule in third_party/googletest.
* | Remove javanano.Feng Xiao2018-03-261-40/+1
| |
* | Added map_lite_test.proto to fix LiteTestAdam Cozzette2018-03-201-0/+1
| |
* | Added pyext/thread_unsafe_shared_ptr.hAdam Cozzette2018-03-201-0/+1
| |
* | Include no_package.proto in Python testAdam Cozzette2018-03-141-0/+1
|/
* Merge remote-tracking branch 'origin/3.5.x' into masterJisi Liu2018-01-031-0/+1
|\
| * Cherrypick for csharp, including:Jie Luo2017-12-191-1/+13
| | | | | | | | | | | | Add preserve UnknownFields Compare floating point values bitwise Add auto-generated header to C# generated files
| * Add discard unknown API in ruby. (#3990)Paul Yang2017-12-071-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | * Add discard unknown API in ruby. * Add test for oneof message field. * Add TestUnknown to represent unknown field data clearly. * Only serialize the message with unknown fields itself in test. * Move discard_unknown from Message to Google.Protobuf
* | Add unknown field support for csharp (#3936)Jie Luo2017-12-131-1/+5
| | | | | | Add unknown field support for csharp
* | Compare floating point values bitwise in C#Jon Skeet2017-12-091-0/+3
| | | | | | | | | | This is the manual code part of the Google.Protobuf library, and tests. Some tests will fail until codegen is changed and rerun.
* | Updated Makefile.am to add a new file to EXTRA_DISTAdam Cozzette2017-12-011-0/+1
| |
* | Add a UTF-8 decoder that uses Unsafe to directly decode a byte buffer.Anuraag Agrawal2017-11-291-0/+1
| |
* | Fix up warnings from Xcode 9.1 (#3887)dmaclach2017-11-161-9/+14
| | | | | | | | Fix up warnings from Xcode 9.1
* | Move C#-only test protos to csharp/protosJon Skeet2017-11-121-0/+5
|/ | | | | | | | | | unittest_proto3 had been changed in a very backward-incompatible way which was never going to work with C# as it imports proto2 messages. This is now a copy of the old file, but with a package name change for compatibility with the remaining files in src/google/protobuf. The other moves are for files that are only used by C#.
* Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-251-0/+1
|\
| * Merge pull request #3578 from pherl/filedeprecationJisi Liu2017-10-181-0/+1
| |\ | | | | | | Add @Deprecated annotation support for proto file.
| | * Fix dist checkJisi Liu2017-08-311-0/+1
| | |
* | | Fix distcheckJisi Liu2017-10-111-0/+1
| | |
* | | Merge remote-tracking branch 'origin/3.4.x' into masterJisi Liu2017-10-111-0/+11
|\| |
| * | Exclude valid constant name from reserved name.Bo Yang2017-09-121-0/+2
| | |
| * | Add prefix to php reserved keywords.Bo Yang2017-09-081-0/+4
| | |
| * | change the field number of php_generic_service to fix the conflict with (#3576)Paul Yang2017-08-301-0/+1
| |/ | | | | internal descriptor.proto
| * Add mising cmake files in distJisi Liu2017-08-241-0/+2
| |
* | Add well known types to php runtime. (#3697)Paul Yang2017-10-051-42/+76
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Add well known types to php runtime. * Fix php7.0 tests * No longer generate empty.proto in test as it has been included in runtime. * Fix zts build * Clean code * Rename g_p_b_empty to empty. * Don't generate code for empty.proto in compatibility test * Fix 32-bit * Fix mac build * Fix Makefile.am to add new files
* | Fix ruby segment fault (#3708)Paul Yang2017-10-031-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Fix ruby segment fault 1) rb_ary_new cannot be called during allocate function. During allocate fucntion, the containing object hasn't been marked and rb_ary_new may invoke gc to collect containing object. 2) The global map should be marked before allocating it. Otherwise it may be garbage collected. * Add test * Remove commented code * Fix grammer error
* | Enforce all error report for php tests. (#3670)Paul Yang2017-09-221-0/+1
| | | | | | | | | | | | * Enforce all error report for php tests. * Import vendor/autoload.php in tests/bootstrap_phpunit.php
* | Integrated internal changes from GoogleAdam Cozzette2017-09-141-0/+1
| |
* | Update examples file list.Feng Xiao2017-09-111-6/+7
| |