parlour 9.1.1 → 9.1.2
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 +5 -0
- data/lib/parlour/type_loader.rb +7 -4
- data/lib/parlour/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: db6d992a5fa3d12b575edd2393eef39ae0379ee67a1df958a874cbe8e5c07746
|
4
|
+
data.tar.gz: 3e29393a7abb71b6c41c96f1e3cea3e0bc797d12d26fe9e5122d9545c200fdf2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 30aef748223579ee52119408af76172c4a4bb5d724bc0938d4dad080a3034beedb4b28e2a1233ff99a318b56550faa2e6c31bb6adcf146028ebbe4abf115a6e8
|
7
|
+
data.tar.gz: 521b4d67ba15edc643256d8f8b11b20921f9cbf197cf49ea946ca4fe4c513d2bd59005c222f3a79cb89fbc004271570efc5b8404ff0a564808170be2921b36a4
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
|
5
5
|
|
6
|
+
## [9.1.2] - 2025-07-07
|
7
|
+
### Fixed
|
8
|
+
- Fixed a possible hang when getting a file list from Sorbet during type loading. (Thanks @apiology
|
9
|
+
and @ojgarcia)
|
10
|
+
|
6
11
|
## [9.1.1] - 2025-05-28
|
7
12
|
### Fixed
|
8
13
|
- Replaced YARD `@abstract` directives, as they now conflict with Sorbet's `abstract!` directives
|
data/lib/parlour/type_loader.rb
CHANGED
@@ -55,14 +55,17 @@ module Parlour
|
|
55
55
|
expanded_inclusions = inclusions.map { |i| File.expand_path(i, root) }
|
56
56
|
expanded_exclusions = exclusions.map { |e| File.expand_path(e, root) }
|
57
57
|
|
58
|
-
|
59
|
-
|
58
|
+
cmd = 'bundle exec srb tc -p file-table-json'
|
59
|
+
stdout, _stderr, io_status = T.unsafe(Open3).capture3(
|
60
|
+
cmd,
|
60
61
|
chdir: root
|
61
62
|
)
|
62
63
|
|
63
|
-
|
64
|
+
# ignore output code, which may indicate type checking issues
|
65
|
+
# that aren't blocking us
|
64
66
|
if stdout == ''
|
65
|
-
raise
|
67
|
+
raise "unable to get Sorbet file table with #{cmd.inspect}; " \
|
68
|
+
'the project may be empty or not have Sorbet initialised'
|
66
69
|
end
|
67
70
|
|
68
71
|
file_table_hash = JSON.parse(stdout)
|
data/lib/parlour/version.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: parlour
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.1.
|
4
|
+
version: 9.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Aaron Christiansen
|
8
8
|
bindir: exe
|
9
9
|
cert_chain: []
|
10
|
-
date: 2025-
|
10
|
+
date: 2025-07-07 00:00:00.000000000 Z
|
11
11
|
dependencies:
|
12
12
|
- !ruby/object:Gem::Dependency
|
13
13
|
name: sorbet-runtime
|