google-protobuf 3.10.0.rc.1-x86-mingw32 → 3.10.1-x86-mingw32

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of google-protobuf might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 79e248fb181692a4acaa0fa3c689cbd76bcc73404d3d33756ea14060bfa8cd1e
4
- data.tar.gz: 64f726893d1527006d1ca2dbf94bfc37cce8d01b233e70e1879b676681619310
3
+ metadata.gz: 0b4b11aea68e4f88bbcbcc88e4e544632688df5696a475e83803592ce4770ef7
4
+ data.tar.gz: ce371e2f4c4cb93e117c3eaa370295c9e137b9719547ac2691433be59e7ad352
5
5
  SHA512:
6
- metadata.gz: f340e332ead51d477ce1ba20db4ec094796d9712b604762b730803e96c0842f79854c012f5331f05d6b39b3226827f4a04c0bdbfc83565f0969dd403df49feb1
7
- data.tar.gz: 66ac9383d06df3d4bfc63f27d255f54630c815afcb59fce7adb87a27090d60c3e545ddf2a923b557ebd5d82f9924ce12b46968ae127b83eea21c7e1c49b34c48
6
+ metadata.gz: 4df251dd0a66a69bfbf2ed7aa9a2622521b0a8237075ab91f6fa694ab61a8ad46ba086316c62eda71506d13f79aafa6d46f9cd25b94d929bf5f34d9adaf98005
7
+ data.tar.gz: 7c4f30af426b42332202edd4972491a878097e0fa8575913a561b12bf224c7b73d6846bd38e8a6bd5188ed21a96fc95a5d15232dd86a1da0fa0fbbbd7e71809e
@@ -10117,46 +10117,28 @@ static void start_timestamp_zone(upb_json_parser *p, const char *ptr) {
10117
10117
  capture_begin(p, ptr);
10118
10118
  }
10119
10119
 
10120
- #define EPOCH_YEAR 1970
10121
- #define TM_YEAR_BASE 1900
10122
-
10123
- static bool isleap(int year) {
10124
- return (year % 4) == 0 && (year % 100 != 0 || (year % 400) == 0);
10125
- }
10126
-
10127
- const unsigned short int __mon_yday[2][13] = {
10128
- /* Normal years. */
10129
- { 0, 31, 59, 90, 120, 151, 181, 212, 243, 273, 304, 334, 365 },
10130
- /* Leap years. */
10131
- { 0, 31, 60, 91, 121, 152, 182, 213, 244, 274, 305, 335, 366 }
10132
- };
10133
-
10134
- int64_t epoch(int year, int yday, int hour, int min, int sec) {
10135
- int64_t years = year - EPOCH_YEAR;
10136
-
10137
- int64_t leap_days = years / 4 - years / 100 + years / 400;
10138
-
10139
- int64_t days = years * 365 + yday + leap_days;
10140
- int64_t hours = days * 24 + hour;
10141
- int64_t mins = hours * 60 + min;
10142
- int64_t secs = mins * 60 + sec;
10143
- return secs;
10144
- }
10145
-
10146
-
10147
- static int64_t upb_mktime(const struct tm *tp) {
10148
- int sec = tp->tm_sec;
10149
- int min = tp->tm_min;
10150
- int hour = tp->tm_hour;
10151
- int mday = tp->tm_mday;
10152
- int mon = tp->tm_mon;
10153
- int year = tp->tm_year + TM_YEAR_BASE;
10154
-
10155
- /* Calculate day of year from year, month, and day of month. */
10156
- int mon_yday = ((__mon_yday[isleap(year)][mon]) - 1);
10157
- int yday = mon_yday + mday;
10158
-
10159
- return epoch(year, yday, hour, min, sec);
10120
+ /* epoch_days(1970, 1, 1) == 1970-01-01 == 0. */
10121
+ static int epoch_days(int year, int month, int day) {
10122
+ static const uint16_t month_yday[12] = {0, 31, 59, 90, 120, 151,
10123
+ 181, 212, 243, 273, 304, 334};
10124
+ int febs_since_0 = month > 2 ? year + 1 : year;
10125
+ int leap_days_since_0 = div_round_up(febs_since_0, 4) -
10126
+ div_round_up(febs_since_0, 100) +
10127
+ div_round_up(febs_since_0, 400);
10128
+ int days_since_0 =
10129
+ 365 * year + month_yday[month - 1] + (day - 1) + leap_days_since_0;
10130
+
10131
+ /* Convert from 0-epoch (0001-01-01 BC) to Unix Epoch (1970-01-01 AD).
10132
+ * Since the "BC" system does not have a year zero, 1 BC == year zero. */
10133
+ return days_since_0 - 719528;
10134
+ }
10135
+
10136
+ static int64_t upb_timegm(const struct tm *tp) {
10137
+ int64_t ret = epoch_days(tp->tm_year + 1900, tp->tm_mon + 1, tp->tm_mday);
10138
+ ret = (ret * 24) + tp->tm_hour;
10139
+ ret = (ret * 60) + tp->tm_min;
10140
+ ret = (ret * 60) + tp->tm_sec;
10141
+ return ret;
10160
10142
  }
10161
10143
 
10162
10144
  static bool end_timestamp_zone(upb_json_parser *p, const char *ptr) {
@@ -10186,7 +10168,7 @@ static bool end_timestamp_zone(upb_json_parser *p, const char *ptr) {
10186
10168
  }
10187
10169
 
10188
10170
  /* Normalize tm */
10189
- seconds = upb_mktime(&p->tm);
10171
+ seconds = upb_timegm(&p->tm);
10190
10172
 
10191
10173
  /* Check timestamp boundary */
10192
10174
  if (seconds < -62135596800) {
Binary file
Binary file
Binary file
Binary file
@@ -56,15 +56,19 @@ else
56
56
  module Internal
57
57
  def self.infer_package(names)
58
58
  # Package is longest common prefix ending in '.', if any.
59
- min, max = names.minmax
60
- last_common_dot = nil
61
- min.size.times { |i|
62
- if min[i] != max[i] then break end
63
- if min[i] == ?. then last_common_dot = i end
64
- }
65
- if last_common_dot
66
- return min.slice(0, last_common_dot)
59
+ if not names.empty?
60
+ min, max = names.minmax
61
+ last_common_dot = nil
62
+ min.size.times { |i|
63
+ if min[i] != max[i] then break end
64
+ if min[i] == ?. then last_common_dot = i end
65
+ }
66
+ if last_common_dot
67
+ return min.slice(0, last_common_dot)
68
+ end
67
69
  end
70
+
71
+ nil
68
72
  end
69
73
 
70
74
  class NestingBuilder
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-protobuf
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.10.0.rc.1
4
+ version: 3.10.1
5
5
  platform: x86-mingw32
6
6
  authors:
7
7
  - Protobuf Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-09-05 00:00:00.000000000 Z
11
+ date: 2019-10-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rake-compiler-dock
@@ -115,7 +115,7 @@ homepage: https://developers.google.com/protocol-buffers
115
115
  licenses:
116
116
  - BSD-3-Clause
117
117
  metadata:
118
- source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.10.0-rc1/ruby
118
+ source_code_uri: https://github.com/protocolbuffers/protobuf/tree/v3.10.1/ruby
119
119
  post_install_message:
120
120
  rdoc_options: []
121
121
  require_paths:
@@ -127,9 +127,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
127
127
  version: '2.3'
128
128
  required_rubygems_version: !ruby/object:Gem::Requirement
129
129
  requirements:
130
- - - ">"
130
+ - - ">="
131
131
  - !ruby/object:Gem::Version
132
- version: 1.3.1
132
+ version: '0'
133
133
  requirements: []
134
134
  rubyforge_project:
135
135
  rubygems_version: 2.7.9