renovatebot/renovate

Julia support

Offen

#6.508 geöffnet am 13.06.2020

 (25 Kommentare) (3 Reaktionen) (1 zugewiesene Person)TypeScript (1.916 Forks)batch import
help wantednew package managerpriority-4-lowstatus:requirements

Repository-Metriken

Stars
 (14.066 Sterne)
PR-Merge-Metriken
 (PR-Metriken ausstehend)

Beschreibung

Hi,

It will be awesome if renovatebot, could parse Project.toml in Julia Project.

Dependencies in julia could be specified in various ways :

  • ^1.2.3 => [1.2.3, 2.0.0)
  • ^1.2 => [1.2.0, 2.0.0)
  • ^1 => [1.0.0, 2.0.0)
  • ^0.2.3 => [0.2.3, 0.3.0)
  • ^0.0.3 => [0.0.3, 0.0.4)
  • ^0.0 => [0.0.0, 0.1.0)
  • ^0 => [0.0.0, 1.0.0)
  • ~1.2.3 => [1.2.3, 1.3.0)
  • ~1.2 => [1.2.0, 1.3.0)
  • ~1 => [1.0.0, 2.0.0)
  • ~0.2.3 => [0.2.3, 0.3.0)
  • ~0.0.3 => [0.0.3, 0.0.4)
  • ~0.0 => [0.0.0, 0.1.0)
  • ~0 => [0.0.0, 1.0.0)
  • >= 1.2.3 => [1.2.3, ∞)
  • ≥ 1.2.3 => [1.2.3, ∞)
  • = 1.2.3 => [1.2.3, 1.2.3]
  • < 1.2.3 => [0.0.0, 1.2.2]

@codeneomatrix Do I forget anything according julia and deps management

@rarkins You can find a example in https://github.com/the-benchmarker/web-frameworks/blob/e2c82e935f9038fe7a54a10d04654b31eacf8ee8/julia/merly/Project.toml#L4

Regards,

Contributor Guide