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

Roll forward Ruby upb changes now that protobuf Ruby build is fixed #5866

Merged
merged 24 commits into from Aug 14, 2019
Merged
Show file tree
Hide file tree
Changes from 21 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
908a256
Rolled forward again with "Updated upb from defcleanup branch..."
haberman Mar 11, 2019
df44c29
A few more merge fixes.
haberman Mar 11, 2019
f290dfa
Merge branch 'master' into defcleanup2
haberman May 5, 2019
ce949b8
Updated for defcleanup2 branch.
haberman May 18, 2019
4a25bea
Merge branch 'master' into defcleanup2
haberman May 18, 2019
a8b6064
Fixed upb to define upb_decode().
haberman May 18, 2019
c652081
Fixed names of nested messages.
haberman May 18, 2019
1f704b2
Revert submodule.
haberman May 18, 2019
46f64a4
Set -std=gnu90 and fixed warnings/errors.
haberman May 18, 2019
0057c2c
Fixed remaining warnings with gnu90 mode.
haberman May 18, 2019
dbd0ff5
Initialize values registered by rb_gc_register_address().
haberman May 18, 2019
827c551
Fixed subtle GC bug.
haberman May 18, 2019
ad0e85e
Truly fix the GC bug.
haberman May 18, 2019
5be2acf
Updated upb for mktime() fix.
haberman May 21, 2019
00648ad
Removed XOPEN_SOURCE as we are not using strptime().
haberman May 21, 2019
681d378
Removed fixed tests from the conformance failure list for Ruby.
haberman May 21, 2019
62d76dd
Fixed memory error related to oneof def names.
haberman May 21, 2019
1c6c897
Merge branch 'master' into defcleanup2
haberman Jul 6, 2019
1f60675
Picked up new upb changes re: JSON printing.
haberman Jul 6, 2019
7d3a2e5
Merge branch 'defcleanup2' of github.com:haberman/protobuf into defcl…
haberman Jul 6, 2019
ffcc024
Uncomment concurrent decoding test.
haberman Jul 6, 2019
b8ef5b2
Merge branch 'master' into defcleanup2
haberman Aug 14, 2019
be0cf2c
Merge branch 'defcleanup2' of github.com:haberman/protobuf into defcl…
haberman Aug 14, 2019
cf45a00
Merge branch 'master' into defcleanup2
haberman Aug 14, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions ruby/compatibility_tests/v3.0.0/tests/basic.rb
Expand Up @@ -67,7 +67,6 @@ module BasicTest
add_message "BadFieldNames" do
optional :dup, :int32, 1
optional :class, :int32, 2
optional :"a.b", :int32, 3
end

add_message "MapMessage" do
Expand Down Expand Up @@ -1067,8 +1066,6 @@ def test_bad_field_names
assert m['class'] == 2
m['dup'] = 3
assert m['dup'] == 3
m['a.b'] = 4
assert m['a.b'] == 4
end

def test_int_ranges
Expand Down