e-invoice-api 0.5.0 → 0.5.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: 8499e5d0cae2a5f9bf6b83427b46cf763b5de0df6f17981dbe45251e2079e1ec
4
- data.tar.gz: 4a946717056ba3c1533b0448fd5a7cf3d177b8c2b7fffe665fdc18a1957972b0
3
+ metadata.gz: 620801b39403fbfbcc12454698a6312c797dac122fdb0a6e642bab1cd4385aee
4
+ data.tar.gz: 8d0ba7159c25f52788a4d6a2ad6b9f9e2badbfac787a76d5c846568e005b8abc
5
5
  SHA512:
6
- metadata.gz: 79934e3197eec9a699e19f201133a2edc38c5bbb52048143ab6c08e124366c9f80e5fad928759b4f8c5ab0efb96d117d624f968850e19a94ab9b2824c6196356
7
- data.tar.gz: c180a7b76f5b2de21fae67d8484c78d17eca2c8fde15fee43fa54cb7df29a95ca5a998d05d1b7dbed9ed54fc76bfc1dae04f16a28c3a171c83ea3ec23e15d5aa
6
+ metadata.gz: '039e19a855c6fc139d2a12b01558dabfec6f3eee986e2f61f1f895a81b2d2e9c6f0b20aeccd3361b7d2764d574cf87d01fd2dc35b6263249ab1c0b0c8d2a47e1'
7
+ data.tar.gz: 0f259847624d3b6df150332ebd536bd539cc67befaa077cc5bf13f97ac28f93a7e19c3a033fbb5657941fd21297d5ba87434d71c4a44ad47dc6fa3e6a4d9b56b
data/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.5.1 (2025-09-27)
4
+
5
+ Full Changelog: [v0.5.0...v0.5.1](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.5.0...v0.5.1)
6
+
7
+ ### Bug Fixes
8
+
9
+ * shorten multipart boundary sep to less than RFC specificed max length ([336fbe2](https://github.com/e-invoice-be/e-invoice-rb/commit/336fbe2d7932708e0ac0eb3d6f2d96bfa52cf165))
10
+
11
+
12
+ ### Performance Improvements
13
+
14
+ * faster code formatting ([1180d4a](https://github.com/e-invoice-be/e-invoice-rb/commit/1180d4a4ebcca49f99aa860ecdb88ea312d25fb6))
15
+
16
+
17
+ ### Chores
18
+
19
+ * **internal:** codegen related update ([c4a13d4](https://github.com/e-invoice-be/e-invoice-rb/commit/c4a13d47fa4210a2e0849a5b94a53d3fdc26e7d4))
20
+
3
21
  ## 0.5.0 (2025-09-23)
4
22
 
5
23
  Full Changelog: [v0.4.0...v0.5.0](https://github.com/e-invoice-be/e-invoice-rb/compare/v0.4.0...v0.5.0)
data/README.md CHANGED
@@ -17,7 +17,7 @@ To use this gem, install via Bundler by adding the following to your application
17
17
  <!-- x-release-please-start-version -->
18
18
 
19
19
  ```ruby
20
- gem "e-invoice-api", "~> 0.5.0"
20
+ gem "e-invoice-api", "~> 0.5.1"
21
21
  ```
22
22
 
23
23
  <!-- x-release-please-end -->
@@ -566,7 +566,8 @@ module EInvoiceAPI
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|
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module EInvoiceAPI
4
- VERSION = "0.5.0"
4
+ VERSION = "0.5.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: e-invoice-api
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - e-invoice
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-23 00:00:00.000000000 Z
11
+ date: 2025-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: connection_pool