bootsnap 1.24.2 → 1.24.3

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: 24c756fe8c17824d00469a5e8e444e6ed9f2710566e623ea8dbd569deb425c83
4
- data.tar.gz: aefe758480d38080ff1b0ffd45954dbe7aa992cab3b6f3e6cea7966c2af97696
3
+ metadata.gz: 31d64e50bd32368c8dffe927b63fa6e62243b697a2606ca3e2330c4694ec816b
4
+ data.tar.gz: 5dfc374040409d1d20e893abc6a8c6052de02cf560c15e7678a5db2084bd722c
5
5
  SHA512:
6
- metadata.gz: 614ff9e0eaac288fb4a890e3ca0926e720c06fdc68de3ce33d015d1ad477b4172126614c321fb1da1bb6e4c8539ba80c774b8f9a619c7475b0469c9001a0eca2
7
- data.tar.gz: e85e9357079e541270b659f0b11c71b3e286099d590aaba4fc90ac1462a2bf916e5e7752fa87d5f6d760598e9a0ea3e66c6e99f55f3085345516e28a17fa4caa
6
+ metadata.gz: ff9e6b5b2c47d0337fa8d46c487fd6881bc567f5ae01a17f85aa3821df9b7f8416283764f8309de6207d94eb00e6cd6ee845a1307dd601659e4d26cd6abbc7ea
7
+ data.tar.gz: e34adc7c5162da87d94358a99a5990d0dfbc6497fb141e7407614e181328e1091bd708fac0aa96e6bce8731283a367db6a5aa6e8a2afe3b848b2d0f6b73e3ba4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Unreleased
2
2
 
3
+ # 1.24.3
4
+
5
+ * Fix the `1.24.2` workaround to parse Ruby files with UTF-8 even when the `LANG` environment variable
6
+ is unset or set to `C`.
7
+
3
8
  # 1.24.2
4
9
 
5
10
  * Workaround two Ruby bugs in `RubyVM::InstructionSequence.compile_file`, that were causing
@@ -58,7 +58,7 @@ module Bootsnap
58
58
 
59
59
  if has_ruby_bug_22023_bis
60
60
  def compile_file_prism(path, options = nil)
61
- compile_prism(::File.read(path), path, path, nil, options)
61
+ compile_prism(::File.read(path, encoding: Encoding::UTF_8), path, path, nil, options)
62
62
  end
63
63
  end
64
64
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Bootsnap
4
- VERSION = "1.24.2"
4
+ VERSION = "1.24.3"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootsnap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.24.2
4
+ version: 1.24.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Burke Libbey