xcsize 1.1.0 → 1.2.0
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 +9 -0
- data/lib/xcsize/reader.rb +4 -1
- data/lib/xcsize/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: 1ce69483252bebcda8d879291e7e1521649894e0837e9c334123e04b71c512e0
|
|
4
|
+
data.tar.gz: 24ad243222c320c84dc4c2fe83c78c9044bbbb9274886b91c7cdf76332b909ae
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c8aedfd3e52b9708deadca84e52a183b979666f0aad92d60a8cf3ac3222ebe17ab7856fd7520a6becb6c44d8b1aa29b3a0b2bad47747a954baee073b080138d0
|
|
7
|
+
data.tar.gz: 13cf35bccb2a22a17abd770308534a0cb6b3d15d01ed8ae39379f771319e8d50195d2effd6f987b7d360b144e122e1fdef6cb1cf566ba46f6b3556f912b7e0f0
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
|
4
4
|
|
|
5
|
+
## [1.2.0](https://github.com/testableapple/xcsize/releases/tag/1.2.0)
|
|
6
|
+
|
|
7
|
+
_November 10, 2025_
|
|
8
|
+
|
|
9
|
+
### 🐛 Fixed
|
|
10
|
+
|
|
11
|
+
- Resolved an issue where the linkmap parser was not correctly handling invalid UTF-8 sequences in the linkmap file
|
|
12
|
+
|
|
13
|
+
|
|
5
14
|
## [1.1.0](https://github.com/testableapple/xcsize/releases/tag/1.1.0)
|
|
6
15
|
|
|
7
16
|
_October 09, 2025_
|
data/lib/xcsize/reader.rb
CHANGED
|
@@ -97,7 +97,10 @@ module Xcsize
|
|
|
97
97
|
in_symbols = false
|
|
98
98
|
id_to_path = {}
|
|
99
99
|
|
|
100
|
-
File.foreach(path, chomp: true) do |line|
|
|
100
|
+
File.foreach(path, chomp: true, encoding: 'ASCII-8BIT') do |line|
|
|
101
|
+
# Convert to UTF-8, replacing invalid sequences
|
|
102
|
+
line = line.encode('UTF-8', 'ASCII-8BIT', invalid: :replace, undef: :replace)
|
|
103
|
+
|
|
101
104
|
if line.start_with?('# Object files:')
|
|
102
105
|
in_objects = true
|
|
103
106
|
next
|
data/lib/xcsize/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: xcsize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Alexey Alter-Pesotskiy
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-10
|
|
11
|
+
date: 2025-11-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: commander
|