Changes to "depends" between 2018-07-04 13:42:02 and 2018-07-04 13:44:13

1
2
3
4
5
6
7
8
9
10
11
12
13



14
15
16
17
18
19
20
1
2
3
4
5
6
7
8
9
10
11
12

13
14
15
16
17
18
19
20
21
22












-
+
+
+







## # depends:

Lists other plugins or language/system libraries which the current plugin expects:

    # depends: corefuncs, json_io, bin:bash

Each entry is a plugin [basename](wiki/id), and indicates it must be available/active alongside.

  * The recommended field name is "depends" and not "require" - for parity with the Debian packaging spec, and because it sounds less stringent.

  * Not every application would want to enforce this *strictly*. Because dynamic languages can soft-detect dependencies usually.

  * Within a plugin management UI, the depends: list could be used for installation warnings. 
  * Within a plugin management UI, the depends: list could be used for installation warnings.

It's optional, and might be treated as documentation in some implementations.


## Versioned dependencies

Additionally the plugin names can be suffixed with a version comparison:

    # depends: core (>= 2.0.0)