ecoportal-api-graphql 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 17f9bb4aed7ac9d69f595b1f3501a1268d22183dd4a479740ae12f9a26343a25
4
- data.tar.gz: 40c3685c22e3e43aaa68ba8ba1ecb3a7ca385070d5d014c5674e1bbd3bca813b
3
+ metadata.gz: bd7ef3abb802c44e3a6b9d2f278252c605fd64003d01f6f1860c538b54c91242
4
+ data.tar.gz: ac55ed853e4c31b4b4c4e8fc6402cca4fa11c25db4426e68d3083191fbaee84a
5
5
  SHA512:
6
- metadata.gz: d1b8d8375dc608337bcbdd4b34a4bbb8da3e4f6cf50649afccb0a2558a9b4be51ef8a208870d43a1145a0ce374a031761989941bd1097d78289d6a5f02f69fa5
7
- data.tar.gz: 5e12819b2085d2f8a9a813a025892feeff4fadc7a80267f6180816746bcea29d9b7057384c406a6365604f52f574123796b97f87a44455c0f955bc29dfc124f5
6
+ metadata.gz: 3a0e972ae3de8ac79493f9a3f232eea0ce71c76b988f3364b5b24271b42e04de897416abe57d179f2ff348b9a9c24c85de717c7c0a7d695c0a1c530bfca1dd58
7
+ data.tar.gz: edf46381032eb29602deda89fe1aa41748c5c34e926f6711a08a174e3985cdad763c1c97685fe281e54fbf9850093c71e295fd244a3f56f051a01574fe9ad9ab
data/CHANGELOG.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [0.3.7] - 2023-04-xx
4
+ ## [0.3.8] - 2023-04-xx
5
5
 
6
6
  ### Added
7
7
  ### Changed
@@ -13,6 +13,11 @@ All notable changes to this project will be documented in this file.
13
13
  - Analyse how to "DSL" currentOrganization.action.activities
14
14
  - review `path` tracking
15
15
 
16
+ ## [0.3.7] - 2023-05-23
17
+
18
+ ### Fixed
19
+ - `Ecoportal::API::Common::GraphQL::Client` adjusted `read_timeout` and `write_timeout` to `90` seconds.
20
+
16
21
  ## [0.3.6] - 2023-04-17
17
22
 
18
23
  ### Changed
@@ -6,6 +6,9 @@ module Ecoportal
6
6
  class Client < ::Graphlient::Client
7
7
  attr_accessor :org_id, :host
8
8
 
9
+ READ_TIMEOUT = 90
10
+ WRITE_TIMEOUT = 90
11
+
9
12
  include Ecoportal::API::Common::GraphQL::AuthService
10
13
 
11
14
  def initialize(email: nil, pass: nil, org_id: self.org_id,
@@ -22,8 +25,8 @@ module Ecoportal
22
25
  'Authorization' => "Bearer #{session_token(host: host)}"
23
26
  },
24
27
  http_options: {
25
- read_timeout: 20,
26
- write_timeout: 30
28
+ read_timeout: READ_TIMEOUT,
29
+ write_timeout: WRITE_TIMEOUT
27
30
  }.tap do |options|
28
31
  options.merge!(schema_path: schema_path) unless @no_schema
29
32
  end
@@ -1,5 +1,5 @@
1
1
  module Ecoportal
2
2
  module API
3
- GRAPQL_VERSION = "0.3.6"
3
+ GRAPQL_VERSION = "0.3.7"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ecoportal-api-graphql
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.6
4
+ version: 0.3.7
5
5
  platform: ruby
6
6
  authors:
7
7
  - Oscar Segura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-17 00:00:00.000000000 Z
11
+ date: 2023-05-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -316,7 +316,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
316
316
  - !ruby/object:Gem::Version
317
317
  version: '0'
318
318
  requirements: []
319
- rubygems_version: 3.1.4
319
+ rubygems_version: 3.4.12
320
320
  signing_key:
321
321
  specification_version: 4
322
322
  summary: A collection of helpers for interacting with the ecoPortal GraphQL API