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 +4 -4
- data/CHANGELOG.md +18 -0
- data/README.md +1 -1
- data/lib/e_invoice_api/internal/util.rb +2 -1
- data/lib/e_invoice_api/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 620801b39403fbfbcc12454698a6312c797dac122fdb0a6e642bab1cd4385aee
|
4
|
+
data.tar.gz: 8d0ba7159c25f52788a4d6a2ad6b9f9e2badbfac787a76d5c846568e005b8abc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
@@ -566,7 +566,8 @@ module EInvoiceAPI
|
|
566
566
|
#
|
567
567
|
# @return [Array(String, Enumerable<String>)]
|
568
568
|
private def encode_multipart_streaming(body)
|
569
|
-
|
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|
|
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.
|
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-
|
11
|
+
date: 2025-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: connection_pool
|