rospatent 1.4.0 → 1.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 415bcf677cca43f775fb9ddca9d7c11093a7f2bce4cc0298be375ffe1f1912fc
4
- data.tar.gz: e7c9111a4230c5624137f380511e248e8b177dfd30fa583133c4788fc0e09917
3
+ metadata.gz: 02b32bdfdedb6dd788856f5335d17ed7c739449e111fc72ea96cc8768bbe47a8
4
+ data.tar.gz: 1de3f7131127a1b68e69e99c370abe67825c922ac511e26c0e99ca0440969cfb
5
5
  SHA512:
6
- metadata.gz: c74bd899f8263fee6097bb7157d6a628f922ac4a43e36264639892b5e1d9359850b4b1cba869711a764d4ec4d55dabd81efa9432b51507bbae2c0f30c0af40e8
7
- data.tar.gz: e5a9b87840af75812374e881e00184527c5c82a5d0d7589c1512c838524b958063e200366d44a70b0f1e8bf020227a3e5a72ed99abafad3bd65e0e357927422c
6
+ metadata.gz: fcc95897171c5b6f7edbd10209a806b7cac6c19254fdc9c96176479c6f2b6cb284446089b2ca39f57e20ef7bd7484500b570498884f45c0321da76eb6e299723
7
+ data.tar.gz: 392587596ad48ecbc5d65ee54f8c518c388315137a1dbbebb00dc2728ea9a5011157afceb679e2939e0350b8e48a43e50f961d07328a20e5d2d77c8325e43644
data/CHANGELOG.md CHANGED
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [1.4.1] - 2025-07-15
9
+
10
+ ## Fixed
11
+ Updated the maximum length for the q and qn query parameters from 1000 to 2000 to accommodate larger input values.
12
+
8
13
  ## [1.4.0] - 2025-06-09
9
14
 
10
15
  ### Added
@@ -97,8 +97,8 @@ module Rospatent
97
97
  validated = {}
98
98
 
99
99
  # Validate query parameters
100
- validated[:q] = validate_string(params[:q], "q", max_length: 1000) if params[:q]
101
- validated[:qn] = validate_string(params[:qn], "qn", max_length: 1000) if params[:qn]
100
+ validated[:q] = validate_string(params[:q], "q", max_length: 2000) if params[:q]
101
+ validated[:qn] = validate_string(params[:qn], "qn", max_length: 2000) if params[:qn]
102
102
 
103
103
  # Validate pagination parameters (only if provided)
104
104
  if params[:limit]
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Rospatent
4
- VERSION = "1.4.0"
4
+ VERSION = "1.4.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rospatent
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.4.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aleksandr Dryzhuk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-06-09 00:00:00.000000000 Z
11
+ date: 2025-07-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday