increase 1.90.0 → 1.91.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: 5c9d5d521a0d4062d5793115d18701d7e78a947fd7ab9d0f5be3a6c8613034c2
4
- data.tar.gz: 0733f79a7161419a12d3569e9119629ec015b9f5e9dc995430910c719649ca42
3
+ metadata.gz: b7fe07f74a2dc4887da2eb1875a09e0d6901ce2fe04a35020d950330220479f3
4
+ data.tar.gz: 02602fbd732c6064030a5d08cc46d6eb7e5c50ba29bd7457f3e66856df91bb13
5
5
  SHA512:
6
- metadata.gz: a10cc1146edfd8592c9cd270f59a894fec02a02e30f48bd0d9ea9c8443074bcc9b85127b9e57e9d28b5511f8043611a7911a8c8c6f1d5bd2a8b25dc673d70ba5
7
- data.tar.gz: acadd05a61928c78a59d71db3e59f3076b46dfddb906c92720eba847e821d676f32157d63b6156a4d84abe98bfd523b741374045f89d247589b65e70e5c6a602
6
+ metadata.gz: 3b2da17e02ae6c63e017ea87bdbfb22a7a18db6da9b8b220114753408c8751bcae954ce50f52b990d06267522b0015cbd8651e323e35b48602025de4685642a3
7
+ data.tar.gz: bbb7489d2f6be0a45539d98b742a925810363203fa0e7ddf6407d8341b57d74e338f7ebb1aa8a39b5a70096db01305fc9ec020ec16ff48d4648edd86611621ec
data/CHANGELOG.md CHANGED
@@ -1,5 +1,31 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.91.1 (2025-09-26)
4
+
5
+ Full Changelog: [v1.91.0...v1.91.1](https://github.com/Increase/increase-ruby/compare/v1.91.0...v1.91.1)
6
+
7
+ ### Bug Fixes
8
+
9
+ * shorten multipart boundary sep to less than RFC specificed max length ([5cb2c65](https://github.com/Increase/increase-ruby/commit/5cb2c65146a070d5ecbe1e459858669e598449ad))
10
+
11
+ ## 1.91.0 (2025-09-26)
12
+
13
+ Full Changelog: [v1.90.0...v1.91.0](https://github.com/Increase/increase-ruby/compare/v1.90.0...v1.91.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** api update ([cef39bf](https://github.com/Increase/increase-ruby/commit/cef39bf07ee95816d467d7424fe8f2ae7e19ea6b))
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **internal:** use null byte as file separator in the fast formatting script ([43cc7df](https://github.com/Increase/increase-ruby/commit/43cc7df41e43ab4b28837fc157ee2adfc338f79d))
23
+
24
+
25
+ ### Performance Improvements
26
+
27
+ * faster code formatting ([8d246f0](https://github.com/Increase/increase-ruby/commit/8d246f096d698f933202fbec1afc1f4a5ecc4e0a))
28
+
3
29
  ## 1.90.0 (2025-09-24)
4
30
 
5
31
  Full Changelog: [v1.89.0...v1.90.0](https://github.com/Increase/increase-ruby/compare/v1.89.0...v1.90.0)
data/README.md CHANGED
@@ -15,7 +15,7 @@ To use this gem, install via Bundler by adding the following to your application
15
15
  <!-- x-release-please-start-version -->
16
16
 
17
17
  ```ruby
18
- gem "increase", "~> 1.90.0"
18
+ gem "increase", "~> 1.91.1"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -566,7 +566,8 @@ module Increase
566
566
  #
567
567
  # @return [Array(String, Enumerable<String>)]
568
568
  private def encode_multipart_streaming(body)
569
- boundary = SecureRandom.urlsafe_base64(60)
569
+ # RFC 1521 Section 7.2.1 says we should have 70 char maximum for boundary length
570
+ boundary = SecureRandom.urlsafe_base64(46)
570
571
 
571
572
  closing = []
572
573
  strio = writable_enum do |y|