updox 0.9.0 → 0.10.0
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 +6 -1
- data/lib/updox/models/model.rb +1 -1
- data/lib/updox/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4abb521919676bd819a0befcc39c3838aad082ecd92df242fee2777b6cc23d07
|
|
4
|
+
data.tar.gz: cf2d5d00d9534f305a5e3a5d198cf7f1b8290c389b8634d4711cdce6f23d1e80
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 06e31ade821c10501af34cb8c83215006644d2c043d773126340f3953c9ed441bd5352ddd8e1f3556e5361d05547de9bcb0017f72e10c5aabb987d5dfd481a35
|
|
7
|
+
data.tar.gz: 7ec78a84d960acc48a3fab2110a73ec1bff0b70d0b462b0a9f44b689e9a3f290f9e82b046bbec8d0928d212a41b36e17819dfc241766f434bc39ca23528ef678
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
|
|
|
4
4
|
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
|
|
5
5
|
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
|
|
6
6
|
|
|
7
|
+
## [0.10.0] - [UNRELEASED]
|
|
8
|
+
### Fixed
|
|
9
|
+
- Bug with User#exists? always returning true
|
|
10
|
+
|
|
7
11
|
## [0.9.0] - [2020-02-19]
|
|
8
12
|
### Fixed
|
|
9
13
|
- User#create had wrong authorization
|
|
@@ -72,7 +76,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|
|
72
76
|
### Added
|
|
73
77
|
- Initial Release with ability to ping Updox api
|
|
74
78
|
|
|
75
|
-
[0.
|
|
79
|
+
[0.10.0]: https://github.com/WeInfuse/updox/compare/v0.9.0...HEAD
|
|
80
|
+
[0.9.0]: https://github.com/WeInfuse/updox/compare/v0.8.0...v0.9.0
|
|
76
81
|
[0.8.0]: https://github.com/WeInfuse/updox/compare/v0.7.0...v0.8.0
|
|
77
82
|
[0.7.0]: https://github.com/WeInfuse/updox/compare/v0.6.0...v0.7.0
|
|
78
83
|
[0.6.0]: https://github.com/WeInfuse/updox/compare/v0.5.0...v0.6.0
|
data/lib/updox/models/model.rb
CHANGED
|
@@ -40,7 +40,7 @@ module Updox
|
|
|
40
40
|
|
|
41
41
|
response = self.find(item_id, **opts)
|
|
42
42
|
|
|
43
|
-
false == response.nil? && (false ==
|
|
43
|
+
false == response.nil? && (false == self.const_defined?(:FIND_ENDPOINT) || response.successful?)
|
|
44
44
|
end
|
|
45
45
|
|
|
46
46
|
def self.sync(items, account_id: , batch_size: RECOMMENDED_BATCH_SIZE, endpoint: self.const_get(:SYNC_ENDPOINT))
|
data/lib/updox/version.rb
CHANGED