easy_broker 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +36 -20
- data/easy_broker.gemspec +2 -1
- data/lib/easy_broker/version.rb +1 -1
- data/lib/easy_broker.rb +1 -0
- metadata +19 -9
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 84b0a48d623386310e3d8605b09faaf4c6ee728bce074a88b19017c1fa278197
|
|
4
|
+
data.tar.gz: 80b09a00dcd38e956b9ea19a8d42798ac9e3a5432364483d828c7533318987af
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 598c7b3e76a50edaca091753cfe7b5add37f44b173f23bd7068c630afee5b18ddcab05d71ddd675629218b7b496e4422599c1d98cecf52e3cb688fb12bf869c0
|
|
7
|
+
data.tar.gz: a8b3f666357613feb84cfeecafe879ff1bdafe933c3c0886c355484686ed466d0cc25cce7c1bcb91fa5488326a9f541885525bdceece492fa2e8206af1fd0010
|
data/CHANGELOG.md
CHANGED
|
@@ -1,35 +1,51 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
##
|
|
4
|
-
* Initial release.
|
|
3
|
+
## 1.1.1
|
|
5
4
|
|
|
6
|
-
|
|
7
|
-
*
|
|
5
|
+
* Update httparty from ~> 0.21 to ~> 0.24 (security fix for CVE-2025-68696 - SSRF vulnerability)
|
|
6
|
+
* Add ostruct dependency for Ruby 3.4 compatibility
|
|
8
7
|
|
|
9
|
-
##
|
|
10
|
-
* Fixed pagination bug where the last page may not have been included.
|
|
8
|
+
## 1.1.0
|
|
11
9
|
|
|
12
|
-
|
|
13
|
-
* Added support for the listing_statuses endpoint.
|
|
10
|
+
* **Breaking change**: Changes `EasyBroker::Locations#search` to `EasyBroker::Locations#find`.
|
|
14
11
|
|
|
15
|
-
## 0.
|
|
16
|
-
|
|
12
|
+
## 1.0.4
|
|
13
|
+
|
|
14
|
+
* Added support to configure the use partner code header for integration partners endpoints.
|
|
15
|
+
|
|
16
|
+
## 1.0.3
|
|
17
|
+
|
|
18
|
+
* Update httparty dependency from 0.18 to 0.21
|
|
19
|
+
|
|
20
|
+
## 1.0.2
|
|
21
|
+
|
|
22
|
+
* Added support to configure the country code header for integration partners endpoints.
|
|
23
|
+
|
|
24
|
+
## 1.0.1
|
|
25
|
+
|
|
26
|
+
* Added support for agencies, agents, properties and property_integrations endpoints for integration partners.
|
|
17
27
|
|
|
18
28
|
## 1.0.0
|
|
29
|
+
|
|
19
30
|
* **Breaking change**: `limit`, `page`, and `search` params should be at the root level requests instead of in the `query` hash.
|
|
20
31
|
* Updated endpoints to use the `api` subdomain; `api.easybroker.com/v1` instead of `www.easybroker.com/api/v1`.
|
|
21
32
|
|
|
22
|
-
##
|
|
23
|
-
* Added support for agencies, agents, properties and property_integrations endpoints for integration partners.
|
|
33
|
+
## 0.1.5
|
|
24
34
|
|
|
25
|
-
|
|
26
|
-
* Added support to configure the country code header for integration partners endpoints.
|
|
35
|
+
* Added support for the listing_statuses endpoint for integration partners.
|
|
27
36
|
|
|
28
|
-
## 1.
|
|
29
|
-
* Update httparty dependency from 0.18 to 0.21
|
|
37
|
+
## 0.1.4
|
|
30
38
|
|
|
31
|
-
|
|
32
|
-
* Added support to configure the use partner code header for integration partners endpoints.
|
|
39
|
+
* Added support for the listing_statuses endpoint.
|
|
33
40
|
|
|
34
|
-
##
|
|
35
|
-
|
|
41
|
+
## 0.1.3
|
|
42
|
+
|
|
43
|
+
* Fixed pagination bug where the last page may not have been included.
|
|
44
|
+
|
|
45
|
+
## 0.1.2
|
|
46
|
+
|
|
47
|
+
* Added support for contact_requests, mls_properties and locations endpoints.
|
|
48
|
+
|
|
49
|
+
## 0.1.1
|
|
50
|
+
|
|
51
|
+
* Initial release.
|
data/easy_broker.gemspec
CHANGED
|
@@ -28,7 +28,8 @@ Gem::Specification.new do |spec|
|
|
|
28
28
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
|
29
29
|
spec.require_paths = ["lib"]
|
|
30
30
|
|
|
31
|
-
spec.add_dependency "httparty", "~> 0.
|
|
31
|
+
spec.add_dependency "httparty", "~> 0.24"
|
|
32
|
+
spec.add_dependency "ostruct"
|
|
32
33
|
|
|
33
34
|
spec.add_development_dependency "bundler", "~> 2.2"
|
|
34
35
|
spec.add_development_dependency "rake", "~> 13.0"
|
data/lib/easy_broker/version.rb
CHANGED
data/lib/easy_broker.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: easy_broker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Eric Northam
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: exe
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: httparty
|
|
@@ -16,14 +15,28 @@ dependencies:
|
|
|
16
15
|
requirements:
|
|
17
16
|
- - "~>"
|
|
18
17
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '0.
|
|
18
|
+
version: '0.24'
|
|
20
19
|
type: :runtime
|
|
21
20
|
prerelease: false
|
|
22
21
|
version_requirements: !ruby/object:Gem::Requirement
|
|
23
22
|
requirements:
|
|
24
23
|
- - "~>"
|
|
25
24
|
- !ruby/object:Gem::Version
|
|
26
|
-
version: '0.
|
|
25
|
+
version: '0.24'
|
|
26
|
+
- !ruby/object:Gem::Dependency
|
|
27
|
+
name: ostruct
|
|
28
|
+
requirement: !ruby/object:Gem::Requirement
|
|
29
|
+
requirements:
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: '0'
|
|
33
|
+
type: :runtime
|
|
34
|
+
prerelease: false
|
|
35
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
36
|
+
requirements:
|
|
37
|
+
- - ">="
|
|
38
|
+
- !ruby/object:Gem::Version
|
|
39
|
+
version: '0'
|
|
27
40
|
- !ruby/object:Gem::Dependency
|
|
28
41
|
name: bundler
|
|
29
42
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -108,7 +121,6 @@ dependencies:
|
|
|
108
121
|
- - ">="
|
|
109
122
|
- !ruby/object:Gem::Version
|
|
110
123
|
version: '0'
|
|
111
|
-
description:
|
|
112
124
|
email:
|
|
113
125
|
- eric@northam.us
|
|
114
126
|
executables: []
|
|
@@ -149,7 +161,6 @@ licenses:
|
|
|
149
161
|
- MIT
|
|
150
162
|
metadata:
|
|
151
163
|
homepage_uri: https://github.com/easybroker/easybroker_gem/
|
|
152
|
-
post_install_message:
|
|
153
164
|
rdoc_options: []
|
|
154
165
|
require_paths:
|
|
155
166
|
- lib
|
|
@@ -164,8 +175,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
164
175
|
- !ruby/object:Gem::Version
|
|
165
176
|
version: '0'
|
|
166
177
|
requirements: []
|
|
167
|
-
rubygems_version: 3.
|
|
168
|
-
signing_key:
|
|
178
|
+
rubygems_version: 3.6.7
|
|
169
179
|
specification_version: 4
|
|
170
180
|
summary: A gem to work with EasyBroker's API
|
|
171
181
|
test_files: []
|