dependabot-julia 0.390.0 → 0.391.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b249b119931434359bc23cb3c6e422531c6d77b050a82eacb888546a166738c8
4
- data.tar.gz: 34546cecf9663484a9b3b0d01644587933eda20e6d04f5c6d19e24e37671ecd0
3
+ metadata.gz: 7b2ad7f162158d8c20aea1fc902d019f51fb1e72f3c3344367bd4756f5949c31
4
+ data.tar.gz: 837244cbae72da067a71c5a6178b4c7c5778e81c0f1153c8543537a646f8f1ee
5
5
  SHA512:
6
- metadata.gz: 3ac4ee2a919eb0c3355f4a59d8675c433dd77aa83826fe1aa611749561a67f18ae99a5b2b41590ce50408bb967144fea2eaf2e53399f5fe3afa264e9503be8b8
7
- data.tar.gz: 402220f3b7ef021f4b8d34df16814853e2194211fdeec4bf6e0d1cf54c399d2f15a86ec9f50f985fc6745936f7c2cd107661b24d4dcdef4fff0cfdb0ecbd62ab
6
+ metadata.gz: '02619e34aa529061e7fc75eada8a936a981c63058a1b654a6110b47d17a54354d53f7b1ff0b9dbd088f02e21b5afadfa55379afb7a7229546338c2af9a42b378'
7
+ data.tar.gz: f24ec9156e1c838ff1d56956a73322f6cf66964e6930dde199218c9c4f0199d34f96cc9e375549d53cedd319e8362b46a47d8f54461ec9f027bfa2095f867004
@@ -17,7 +17,7 @@ module Dependabot
17
17
 
18
18
  # Matches a [compat] table header, tolerating indentation and a trailing
19
19
  # comment ("[compat] # pins")
20
- COMPAT_HEADER_PATTERN = T.let(/^\s*\[compat\]\s*(?:#.*)?$/, Regexp)
20
+ COMPAT_HEADER_PATTERN = /^\s*\[compat\]\s*(?:#.*)?$/
21
21
 
22
22
  sig { returns(T::Array[Regexp]) }
23
23
  def self.updated_files_regex
@@ -11,14 +11,14 @@ module Dependabot
11
11
  class PackageManager < Ecosystem::VersionManager
12
12
  extend T::Sig
13
13
 
14
- ECOSYSTEM = T.let("julia", String)
15
- PACKAGE_MANAGER = T.let("julia", String)
14
+ ECOSYSTEM = "julia"
15
+ PACKAGE_MANAGER = "julia"
16
16
  # Julia versions as of June 2025:
17
17
  # - 1.10 is the LTS (Long Term Support) version
18
18
  # - 1.12 is the current stable version
19
19
  # Update these constants when new LTS or major versions are released
20
- MINIMUM_VERSION = T.let("1.10", String) # LTS version
21
- CURRENT_VERSION = T.let("1.12", String) # Current stable version
20
+ MINIMUM_VERSION = "1.10" # LTS version
21
+ CURRENT_VERSION = "1.12" # Current stable version
22
22
 
23
23
  sig { returns(T.nilable(String)) }
24
24
  def self.detected_version
@@ -74,7 +74,7 @@ module Dependabot
74
74
 
75
75
  # Julia hyphen ranges require whitespace around the hyphen ("1.2 - 3.4");
76
76
  # without spaces the hyphen introduces a prerelease tag instead.
77
- HYPHEN_RANGE_PATTERN = T.let(/^(\d+(?:\.\d+)*)\s+-\s+(\d+(?:\.\d+)*)$/, Regexp)
77
+ HYPHEN_RANGE_PATTERN = /^(\d+(?:\.\d+)*)\s+-\s+(\d+(?:\.\d+)*)$/
78
78
 
79
79
  sig { params(constraint: String).returns(T::Array[String]) }
80
80
  def self.normalize_julia_constraint(constraint)
@@ -11,10 +11,8 @@ module Dependabot
11
11
  # versions like "1.6.10+0", "1.6.10+1" where the build number orders new
12
12
  # builds of the same upstream version.
13
13
  # See: https://docs.julialang.org/en/v1/stdlib/Pkg/#Version-specifier-format
14
- VERSION_PATTERN = T.let(
15
- /^v?\d+(?:\.\d+)*(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?$/,
16
- Regexp
17
- )
14
+ VERSION_PATTERN =
15
+ /^v?\d+(?:\.\d+)*(?:-[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?(?:\+[0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*)?$/
18
16
 
19
17
  sig { override.params(version: T.nilable(T.any(String, Integer, Gem::Version))).returns(T::Boolean) }
20
18
  def self.correct?(version)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-julia
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.390.0
4
+ version: 0.391.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
@@ -15,14 +15,14 @@ dependencies:
15
15
  requirements:
16
16
  - - '='
17
17
  - !ruby/object:Gem::Version
18
- version: 0.390.0
18
+ version: 0.391.0
19
19
  type: :runtime
20
20
  prerelease: false
21
21
  version_requirements: !ruby/object:Gem::Requirement
22
22
  requirements:
23
23
  - - '='
24
24
  - !ruby/object:Gem::Version
25
- version: 0.390.0
25
+ version: 0.391.0
26
26
  - !ruby/object:Gem::Dependency
27
27
  name: debug
28
28
  requirement: !ruby/object:Gem::Requirement
@@ -261,7 +261,7 @@ licenses:
261
261
  - MIT
262
262
  metadata:
263
263
  bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
264
- changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.390.0
264
+ changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.391.0
265
265
  rdoc_options: []
266
266
  require_paths:
267
267
  - lib