Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Change Log

## 0.32.0

-- Updated `google-protobof` from `25.7` (3.25.7) to `33.4` (4.33.4)
-- Added `STATUS_REJECTED` to the order status enum

## 0.31.0

-- Add new `STATUS_NOT_REPORTED` to `order.status` enum
Expand Down
7 changes: 5 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@ PATH
remote: .
specs:
primary_connect_proto (0.31.0)
google-protobuf (~> 3.25.7)
google-protobuf (~> 4.33.4)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
bigdecimal (4.0.1)
byebug (11.1.3)
coderay (1.1.3)
diff-lcs (1.5.1)
google-protobuf (3.25.7-arm64-darwin)
google-protobuf (4.33.4)
bigdecimal
rake (>= 13)
json (2.9.0)
language_server-protocol (3.17.0.3)
method_source (1.1.0)
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

## Compile

Install [version `25`](https://github.com/protocolbuffers/protobuf/releases/tag/v25.7) of Protobuffers .
Install [version `33`](https://github.com/protocolbuffers/protobuf/releases/tag/v33.4) of Protobuffers .

```bash
PROTOC_VERSION=25.7
PROTOC_VERSION=33.4
PROTOC_ZIP=protoc-${PROTOC_VERSION}-osx-x86_64.zip

curl -OL https://github.com/protocolbuffers/protobuf/releases/download/v$PROTOC_VERSION/$PROTOC_ZIP
Expand All @@ -22,7 +22,7 @@ rm -f $PROTOC_ZIP

- Eval the shell so it picks up changes with `. ~/.zshrc` or restart your terminal

- Check that `protoc --version` outputs **libprotoc 25.7**
- Check that `protoc --version` outputs **libprotoc 33.4**

Then, run:

Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace :build do
def compile(src_directory, path)
print "Compiling #{path}"
protoc_version = `protoc --version`.split(' ').last
raise RuntimeError, "Please use protoc 25.x" unless protoc_version =~ /25\.\d+$/
raise RuntimeError, "Please use protoc 33.x" unless protoc_version =~ /33\.\d+$/

`protoc --proto_path=#{src_directory} --ruby_out=lib/connect_proto/build #{path}`
puts ' - done' if $?.exitstatus.zero?
Expand Down
2 changes: 1 addition & 1 deletion connect_proto.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Gem::Specification.new do |s|
s.require_paths = ["lib", "lib/connect_proto/build", "lib/extensions"]
s.executables = []

s.add_runtime_dependency 'google-protobuf', '~> 3.25.7'
s.add_runtime_dependency 'google-protobuf', '~> 4.33.4'

s.add_development_dependency "bundler", "~> 2.2.10"
s.add_development_dependency "rake", "~> 12.3.3"
Expand Down
25 changes: 2 additions & 23 deletions lib/connect_proto/build/address_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 2 additions & 23 deletions lib/connect_proto/build/coded_value_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 2 additions & 27 deletions lib/connect_proto/build/demographics_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 2 additions & 27 deletions lib/connect_proto/build/device_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 2 additions & 23 deletions lib/connect_proto/build/identifier_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

25 changes: 2 additions & 23 deletions lib/connect_proto/build/location_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

28 changes: 2 additions & 26 deletions lib/connect_proto/build/measurement_pb.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading