fmrest-core 0.25.0.rc1 → 0.26.0

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: 4ed98a838dabf4ad68554356e163b1a08f0aac6ee7432f269fcb576d07c8c134
4
- data.tar.gz: abea1cc74bab087838636cf9b23a950e1f1cde34f270da3fcd9dae4ccff5f4bb
3
+ metadata.gz: eed30260591437d4845f975bcb4abc74d6d1da8177958b2d71ddc47e7a3cbee4
4
+ data.tar.gz: 0705f1f61c964162f60e0a967ce00fc833b75bf968260392874c76df736caf85
5
5
  SHA512:
6
- metadata.gz: d3a83fa16105f768f73addd40aeeea2a6195e8d9705a902e85f2c20207867da0185329fe7a2908c8d8e4a05f9ddf59202a033226de3f34cf4bc689f56a9917f8
7
- data.tar.gz: ef5d573e1896dc4c5d0f0564c3f527a10d6222f767bd174433b5c3e6fa714da7aae427e4b54055aab8780efb5110efebd541136472f877664ab465ef6f535e1f
6
+ metadata.gz: 9667f68401137c9ffd110c5c393a236113b16a9c19bb2c58058081e5bbc042e042d7cb1db35f83f538504c64320ef19a012a567f967ba246f3ca785c768d4e0b
7
+ data.tar.gz: c62741865b4add8835925024752d1467ffe631f5b750468bfc273a86589acd91bc1176dd6d2dab775d3b9c3a68bbf340ccfffdecb1d666b91f7c831231176e0e
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  ## Changelog
2
2
 
3
- ### 0.25.0
3
+ ### 0.26.0
4
+
5
+ * Add support for ActiveSupport 7.1
6
+ * Drop support for ActiveSupport < 5.2
7
+
8
+ ### 0.25.0-rc1
4
9
 
5
10
  * Add `.and` query method
6
11
  * Fix crash when `.match` query method was given non-string values
data/README.md CHANGED
@@ -584,11 +584,11 @@ FM Data API reference: https://help.claris.com/en/data-api-guide/
584
584
 
585
585
  \* You can manually supply the URL and JSON to a `FmRest` connection.
586
586
 
587
- ## Supported Ruby versions
587
+ ## Supported Ruby and Rails versions
588
588
 
589
589
  The latest fmrest-ruby is
590
590
  [tested against](https://github.com/beezwax/fmrest-ruby/actions?query=workflow%3ACI)
591
- Ruby 2.7 through 3.2.
591
+ Ruby 3.0 through 3.3.0-rc1, and Rails (ActiveSupport) 6.1 through 7.1.
592
592
 
593
593
  ## Gem development
594
594
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module FmRest
4
- VERSION = "0.25.0.rc1"
4
+ VERSION = "0.26.0"
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.25.0.rc1
4
+ version: 0.26.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pedro Carbajal
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-04-13 00:00:00.000000000 Z
11
+ date: 2023-12-22 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -97,11 +97,11 @@ required_ruby_version: !ruby/object:Gem::Requirement
97
97
  version: '0'
98
98
  required_rubygems_version: !ruby/object:Gem::Requirement
99
99
  requirements:
100
- - - ">"
100
+ - - ">="
101
101
  - !ruby/object:Gem::Version
102
- version: 1.3.1
102
+ version: '0'
103
103
  requirements: []
104
- rubygems_version: 3.3.3
104
+ rubygems_version: 3.4.6
105
105
  signing_key:
106
106
  specification_version: 4
107
107
  summary: FileMaker Data API client using Faraday, core library