Jon Skeet
e1f146bc4f
Merge pull request #1785 from jskeet/merge-csharp
...
Merge C# changes from master to 3.0.0-beta4
8 years ago
Jon Skeet
b5ce5251fd
Move to dotnet cli for building, and .NET Core (netstandard1.0) as target platform ( #1727 )
...
This also updates the version number to 3.0.0-beta4
8 years ago
Jon Skeet
5e0de1ebee
Remove the overload for Add(RepeatedField<T>)
...
We now just perform the optimization within AddRange itself.
This is a breaking change in terms of "drop in the DLL", but is
source compatible, which should be fine.
8 years ago
Jon Skeet
2ee1e52380
Optimize AddRange for sequences implementing ICollection
...
(Also fix a few more C# 6-isms.)
8 years ago
Jon Skeet
b053b9211b
Implement RepeatedField.AddRange.
...
This fixes issue #1730 .
8 years ago
Jon Skeet
d9334ea8d9
Improve exception throwing implementation in collections
8 years ago
Feng Xiao
4e0d05138a
Merge pull request #1781 from xfxyjwf/update_version
...
Update version number to 3.0.0-beta-4
8 years ago
Feng Xiao
c2ebdec355
Update version number in AssemblyInfo.cs.
8 years ago
Jisi Liu
8b659b226a
Merge pull request #1783 from xfxyjwf/fixlite
...
Comment out lite conformance test.
8 years ago
Feng Xiao
047a3b4852
Exclude Java lite module from parent pom.xml
8 years ago
Feng Xiao
dd37b992be
Comment out lite conformance test.
...
The 'lite' generator flag is no longer supported.
8 years ago
Feng Xiao
932f94e16e
Update version number to 3.0.0-beta-4
8 years ago
Feng Xiao
06a02488ce
Add missing LIBPROTOBUF_EXPORT
8 years ago
Feng Xiao
7a7913e442
Add missing LIBPROTOBUF_EXPORT.
8 years ago
Feng Xiao
443eb27c7c
Update generated files.
8 years ago
Feng Xiao
9086d96439
Integrate from internal code base.
8 years ago
Thomas Van Lenten
70c1ac756d
Merge pull request #1776 from thomasvl/fix_dist
...
Remove the baseline files from the make dist file list.
8 years ago
Thomas Van Lenten
0d079bca76
Remove the baseline files from the make dist file list.
...
https://github.com/google/protobuf/pull/1762 remove the files, but I forgot to
update Makefile.am to remove them.
8 years ago
Jos Hickson
790e6afb72
Fixed out-of-date documentation for CodedInputStream.ReadEnum. ( #1581 )
9 years ago
Jon Skeet
3560cc9ede
Merge pull request #1702 from lukebakken/csharp-nuget-doc-update
...
Modify csharp README since there are now two NuGet packages
9 years ago
Jon Skeet
8779cba302
Merge pull request #1764 from jskeet/remove-is-value-type
...
Remove unnecessary reflection call
9 years ago
Jon Skeet
3df146e198
Remove unnecessary reflection call
...
This is the only call to TypeExtensions.IsValueType, so we can remove
that method, making the whole type conditionally compiled out for .NET 3.5
9 years ago
Thomas Van Lenten
c404c2a2e3
Merge pull request #1762 from thomasvl/drop_perf_profiles
...
Drop the performace baselines.
9 years ago
Thomas Van Lenten
8c23655519
Drop the performace baselines.
...
We weren't really using them, and the nested path causes checkout problems
on windows.
9 years ago
Thomas Van Lenten
8b00675fc8
Merge pull request #1757 from thomasvl/avoid_importing_src
...
Don't #import the .m files.
9 years ago
Jon Skeet
03d9e096d9
Merge pull request #1735 from jskeet/attribute-placement
...
Change placement of DebuggerNonUserCodeAttribute
9 years ago
Feng Xiao
c850ebcafa
Merge pull request #1758 from dago/pathmax2
...
Make sure also Solaris x86 gets PATH_MAX
9 years ago
Jon Skeet
e9a7fc837f
Remove WriteGeneratedTypeAttributes which is a no-op
...
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.
9 years ago
Dagobert Michelsen
57638d58e1
Make sure also Solaris x86 gets PATH_MAX
9 years ago
Jisi Liu
eaf3451cbb
Merge pull request #1753 from xfxyjwf/fixup
...
Fix problems detected when integrating the code to our internal repo.
9 years ago
Thomas Van Lenten
be0d7f6664
Don't #import the .m files.
...
As bazel folks are looking at getting auto generation of module maps going and
the importing of sources files causes issues there. We were only do it to
hack around some of the apple linker behaviors around objc classes and
categories, but even that isn't complete and CocoaPods was already doing -ObjC,
and developers not using pods could have still needed it to ensure everything
was linked anyways; so drop the hack of importing sources.
9 years ago
Feng Xiao
0d5091ee88
Merge pull request #1742 from ottok/fix-spelling
...
Fix spelling
9 years ago
Feng Xiao
d84d0ca13e
Fix data member declaration order.
9 years ago
Feng Xiao
a29a9c5d49
Don't support global ::string in stringpiece.h
9 years ago
Adam Cozzette
c10938a1d9
Merge pull request #1752 from acozzette/fix-js-tests
...
Fixed failing JS tests
9 years ago
Adam Cozzette
c64d86ed4f
Fixed failing JS tests
...
A couple of small tweaks were needed to fix test failures that were
inadvertently introduced in the last down integration. I also had to add
the map.js file which was missing.
9 years ago
Thomas Van Lenten
ec4589736e
Merge pull request #1712 from dkharrat/swift-error-handling
...
add nullable qualifier to return types that can be nil, to support Swift 2 try-catch syntax
9 years ago
Dia Kharrat
523bfd4f23
add nullable qualifier to nil return types
...
Add the `nullable` qualifier to return types of Objective-C methods that
can return a nil due to errors. This change makes these methods
compatible with the Swift 2 try-catch syntax.
9 years ago
Jon Skeet
c53484539c
Changes to generated code from previous commit
9 years ago
Jon Skeet
ada0a81a74
Move DebuggerNonUserCodeAttribute to function members
...
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 .
9 years ago
Otto Kekäläinen
d2ae496623
Fix spelling error in function ParseTime parameter
9 years ago
Otto Kekäläinen
3808d091f8
Fix spelling in strings and comments
9 years ago
Feng Xiao
cae3b0cbb6
Merge pull request #1704 from lizan/json_parse_options
...
Add JsonParseOptions to ignore unknown fields
9 years ago
Feng Xiao
02b55d248f
Merge pull request #1738 from xfxyjwf/fixbuild
...
Fix some failing travis tests.
9 years ago
Feng Xiao
e102db1f05
Fix some failing travis tests.
...
1. Add missing header file to Makefile.am.
2. Re-generate objectivec generated code for well-known types.
Change-Id: If28217c701cf8bd739ea0db240e9eee600f23ee7
9 years ago
Feng Xiao
aeff638a4c
Merge pull request #1710 from chezRong/master
...
Add minified Json printing functionality
9 years ago
Thomas Van Lenten
7e8c893003
Merge pull request #1723 from thomasvl/objc_test_coverage
...
Xcode project cleanup/setup.
9 years ago
chezRong
454dbf16fc
added minified JSON formatting functionality with test
9 years ago
Feng Xiao
2fe0556c7a
Fix windows build.
...
Change-Id: Ibf7d1df850f4b497303f9f617751be98327898ef
9 years ago
Adam Cozzette
69cc213c76
Updated failure_list_java.txt to remove tests that now pass
9 years ago