renovate_endoflife
0 rows where cycle = 18 and version = "^18.0.0"
This data as json
0 records
CREATE TABLE renovate_endoflife ( -- what package is this? -- -- Foreign key: `renovate.package_name` package_name TEXT NOT NULL, -- version indicates the version of this dependency. -- -- NOTE this could be a version constraint, such as any of: -- -- <=1.3.4,>=1.3.0 -- "~> 0.9" -- latest -- ^2.0.6 -- =1.0.4 -- -- As well as a specific value, such as: -- -- 1.0.4 -- 10 -- latest -- -- This versioning will be implementation-specific for the `package_manager` -- in use. -- -- Foreign key: `renovate.version` version TEXT NOT NULL, -- current_version defines the current version that this package's `version` -- resolves to. -- -- If the `version` is an exact version number, such as `1.0.4`, then -- `current_version` will usually be the same value, `1.0.4`. -- -- If the `version` is a version constraint, then this column MAY indicate -- the exact version that was resolved at the time of dependency analysis. -- -- The `current_version` is derived from: -- - the `locked_version` or `fixed_version`, if there is a lockfile or some -- pinning set -- - the `current_version` if present, and can be recalculated each time the -- data is generated -- -- Foreign key: `renovate.current_version` current_version TEXT, -- package_manager indicates the package manager that the dependency is from, -- which corresponds to Renovate's managers -- (https://docs.renovatebot.com/modules/manager/). -- -- For example: -- -- gomod -- pip_setup -- pip_requirements -- maven-wrapper -- html -- maven -- gradle -- -- Foreign key: `renovate.package_manager` package_manager TEXT NOT NULL, -- datasource indicates the datasource that the dependency has been sourced -- from, which corresponds to Renovate's datasources -- (https://docs.renovatebot.com/modules/datasource/). -- -- For example: -- -- go -- github-tags -- gitlab-tags -- maven -- gradle-version -- -- Foreign key: `renovate.datasource` datasource TEXT NOT NULL, -- product_name describes an EndOfLife.date Product name. -- For example: -- go -- ansible -- sqlite -- -- Foreign key: `endoflifedate_products.product_name` product_name TEXT NOT NULL, -- cycle of the given product, as defined by EndOfLife.date, and the product -- itself. -- -- For example (non-exhaustively): -- sqlite has cycles: `3`, `2`, `1` -- go has cycles: `1.21`, `1.20`, `1.5` -- -- Foreign key: `endoflifedate_products.cycle` cycle TEXT NOT NULL, UNIQUE (package_name, version, current_version, package_manager, datasource) ON CONFLICT REPLACE );