fmrest-core 0.19.0 → 0.20.0.rc1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b926dab37c995250c014ce4a0a21f732d4322da0fd4223f91e7810aa35e0b256
4
- data.tar.gz: f9e59bf3c0c73a8b855c6f9c83bd6c3eb2b07b347ac0414015f139972f623a83
3
+ metadata.gz: e65b80ac2c60bb8c3ba6c356c55c720dec5ed59ee8afdb94e18c025bf327a3fe
4
+ data.tar.gz: c144aaafd1b237bd67fdbd90a99423dae90638555703dd4b6b2eb05dbc7f687e
5
5
  SHA512:
6
- metadata.gz: 55658cc6acfa077411b242e3473ab763a6754ef02337fcf9871a5aa2143082180a3c62adeb798ef1baae0f76f0d3eb3af248141997922caf260494eca0841982
7
- data.tar.gz: eb32863a601a0a3ac248d9b76aef9507996513a05a7539a0d8280546bbf9f5192b109d6762d05aefaf165ad430350dc8b9ec5d7804f6ab261c72fa318ebe8891
6
+ metadata.gz: ff81e141c358ae0f4c95d1d4b82a58b717caa550239b358345d6fcc0a1c3e9af1df3dee9e5c014e2163a67a73fbf83ab4d2bd1df674a0e16261f3c57c3e6a826
7
+ data.tar.gz: 0ed42801b904cc7967dab1c5990aa8389d07727b7a5d3234db6efb40b61d5c3312fbe1e45522bb05058fefc237571456546c209b3f8f752ff0c4a9026770f181
data/CHANGELOG.md CHANGED
@@ -1,8 +1,12 @@
1
1
  ## Changelog
2
2
 
3
+ ### 0.20.0
4
+
5
+ * Forward proxy options to AWS Client when using `fmrest-cloud` gem
6
+
3
7
  ### 0.19.0
4
8
 
5
- * Add native support for FileMaker cloud through the `fmrest-cloud` gem
9
+ * Added native support for FileMaker Cloud through the `fmrest-cloud` gem
6
10
 
7
11
  ### 0.18.0
8
12
 
data/README.md CHANGED
@@ -21,7 +21,7 @@ is natively supported by the gem.
21
21
  * [Connection settings](#connection-settings)
22
22
  * [Session token store](#session-token-store)
23
23
  * [Date fields and timezones](#date-fields-and-timezones)
24
- * [ActiveRecord-like ORM (fmrest-spyke)](#activerecord-like-orm--fmrest-spyke-)
24
+ * [ActiveRecord-like ORM (fmrest-spyke)](#activerecord-like-orm-fmrest-spyke)
25
25
  * [Logging](#logging)
26
26
  * [Gotchas](#gotchas)
27
27
  * [API implementation completeness table](#api-implementation-completeness-table)
@@ -138,7 +138,7 @@ Option | Description | Format
138
138
  `:password` | Your password | String | None
139
139
  `:account_name` | Alias of `:username` | String | None
140
140
  `:ssl` | SSL options to be forwarded to Faraday | Faraday SSL options | None
141
- `:proxy` | Proxy options to be forwarded to Faraday | Faraday proxy options | None
141
+ `:proxy` | Proxy URI e.g. `http://username:password@proxy.host:5000` | String / URI | None
142
142
  `:log` | Log JSON responses to STDOUT | Boolean | `false`
143
143
  `:log_level` | Which log level to log into | Values accepted by `Logger#level=` | `:debug`
144
144
  `:coerce_dates` | See section on [date fields](#date-fields-and-timezones) | Boolean \| `:hybrid` \| `:full` | `false`
@@ -1,20 +1,11 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "singleton"
4
-
5
3
  module FmRest
6
4
  module TokenStore
7
- module Null < Base
8
- include Singleton
9
-
10
- def delete(key)
11
- end
12
-
13
- def load(key)
14
- end
15
-
16
- def store(key, value)
17
- end
5
+ class Null < Base
6
+ def delete(key); end
7
+ def load(key); end
8
+ def store(key, value); end
18
9
  end
19
10
  end
20
11
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FmRest
4
- VERSION = "0.19.0"
4
+ VERSION = "0.20.0.rc1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fmrest-core
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.0
4
+ version: 0.20.0.rc1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pedro Carbajal
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2021-10-06 00:00:00.000000000 Z
11
+ date: 2021-10-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -104,9 +104,9 @@ required_ruby_version: !ruby/object:Gem::Requirement
104
104
  version: '0'
105
105
  required_rubygems_version: !ruby/object:Gem::Requirement
106
106
  requirements:
107
- - - ">="
107
+ - - ">"
108
108
  - !ruby/object:Gem::Version
109
- version: '0'
109
+ version: 1.3.1
110
110
  requirements: []
111
111
  rubygems_version: 3.2.3
112
112
  signing_key: