lithic 0.1.0.pre.alpha.50 → 0.1.0.pre.alpha.51

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: e01472e5ef99facf24de018aa9c05dd2caeba38f79c856f9d50327cf3b7483fc
4
- data.tar.gz: a928c9a538a0e204915ef4af36dcd89c43f065d39e6b9b02741cf3281f846b8f
3
+ metadata.gz: 014f15ed804b2661bd066510dc930e3705a097073f38fdfe9582c0b10bc52395
4
+ data.tar.gz: 961199fe67944b4a8b28dfb3d4c86736c1ce4fcff695f10011cf94a12d4647e7
5
5
  SHA512:
6
- metadata.gz: a80c2b8bff1cc564a864aa3e44ac12a1b37653f75da62dd63ea8cab17335b5f415e43b57d57bc055fe61158b61d20a0a75fa398a02f1aa64f321cafaa44ad8b5
7
- data.tar.gz: 6349153695099ab4ed3534ab7d0e163777be23de01dc6f727f27565831e8c8b744f8fe3c4ae2799270953a5d2c95afeeeb7c2dee20a71fca3a519b9d639a9c2f
6
+ metadata.gz: 0d21afdb67049cb47d1be35f04f6cffad381e5d4c6b5f1e6d7654d76cbecd2a9546f6d91841fd490c4199433428a5fd08e12531ab3ce098b30dd51b5971c89ce
7
+ data.tar.gz: 6101d1b5f60d8fb7a3341ca25b3b0752debb042227d2731d551f499b37e6d1c435bb74ea56e045442315df3a216f6a65bc116f39e682a5ab2dc52c9d4fafa83a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.1.0-alpha.51 (2025-10-14)
4
+
5
+ Full Changelog: [v0.1.0-alpha.50...v0.1.0-alpha.51](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.50...v0.1.0-alpha.51)
6
+
7
+ ### Bug Fixes
8
+
9
+ * should not reuse buffers for `IO.copy_stream` interop ([f6e4858](https://github.com/lithic-com/lithic-ruby/commit/f6e485884b92ac962d4cd4c61e913aac40fbc175))
10
+
3
11
  ## 0.1.0-alpha.50 (2025-10-08)
4
12
 
5
13
  Full Changelog: [v0.1.0-alpha.49...v0.1.0-alpha.50](https://github.com/lithic-com/lithic-ruby/compare/v0.1.0-alpha.49...v0.1.0-alpha.50)
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 "lithic", "~> 0.1.0.pre.alpha.50"
18
+ gem "lithic", "~> 0.1.0.pre.alpha.51"
19
19
  ```
20
20
 
21
21
  <!-- x-release-please-end -->
@@ -473,10 +473,9 @@ module Lithic
473
473
  # @return [Enumerable<String>]
474
474
  def writable_enum(&blk)
475
475
  Enumerator.new do |y|
476
- buf = String.new
477
476
  y.define_singleton_method(:write) do
478
- self << buf.replace(_1)
479
- buf.bytesize
477
+ self << _1.dup
478
+ _1.bytesize
480
479
  end
481
480
 
482
481
  blk.call(y)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Lithic
4
- VERSION = "0.1.0.pre.alpha.50"
4
+ VERSION = "0.1.0.pre.alpha.51"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: lithic
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0.pre.alpha.50
4
+ version: 0.1.0.pre.alpha.51
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lithic
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-10-08 00:00:00.000000000 Z
11
+ date: 2025-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool