dependabot-npm_and_yarn 0.324.0 → 0.324.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0106be78e50f2e195501ad17287fd66e027ce487774527db6b564047bf445697
|
4
|
+
data.tar.gz: b42f48a61c4444766ccc3597c9cf5656460673331795c754406ce557f9ce7a03
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 631f6b2ab0f6181777726c1f7d0bdf57bd02ebba23fbab059d815d2ac5fd37621149615a2599b736a8ae6e0be9c123b8b4e962ff789515d427e3d43818dd1bfb
|
7
|
+
data.tar.gz: 88a4d7249101c5cca6a90af5dba359b175f05e92e8fb893adbd4df3d8d800e1d3fea3e9fe8c186c914af397ac6eb65610ee8b5654a64a4914985cca609bc0968
|
@@ -12,6 +12,11 @@ module Dependabot
|
|
12
12
|
LOCKFILE_NAME = "package-lock.json"
|
13
13
|
SHRINKWRAP_LOCKFILE_NAME = "npm-shrinkwrap.json"
|
14
14
|
|
15
|
+
# Section : Update instructions
|
16
|
+
# With every major release update
|
17
|
+
# - Add new NPM_Vx , i.e. NPM_V11 = "11"
|
18
|
+
# - Add to SUPPORTED_VERSIONS
|
19
|
+
|
15
20
|
NPM_V6 = "6"
|
16
21
|
NPM_V7 = "7"
|
17
22
|
NPM_V8 = "8"
|
@@ -11,14 +11,21 @@ module Dependabot
|
|
11
11
|
LOCKFILE_NAME = "pnpm-lock.yaml"
|
12
12
|
PNPM_WS_YML_FILENAME = "pnpm-workspace.yaml"
|
13
13
|
|
14
|
+
# Section : Update instructions
|
15
|
+
# With every major release update
|
16
|
+
# - Add new PNPM_Vx , i.e. PNPM_V11 = "11"
|
17
|
+
# - Add to SUPPORTED_VERSIONS
|
18
|
+
|
14
19
|
PNPM_V7 = "7"
|
15
20
|
PNPM_V8 = "8"
|
16
21
|
PNPM_V9 = "9"
|
22
|
+
PNPM_V10 = "10"
|
17
23
|
|
18
24
|
SUPPORTED_VERSIONS = T.let([
|
19
25
|
Version.new(PNPM_V7),
|
20
26
|
Version.new(PNPM_V8),
|
21
|
-
Version.new(PNPM_V9)
|
27
|
+
Version.new(PNPM_V9),
|
28
|
+
Version.new(PNPM_V10)
|
22
29
|
].freeze, T::Array[Dependabot::Version])
|
23
30
|
|
24
31
|
DEPRECATED_VERSIONS = T.let([].freeze, T::Array[Dependabot::Version])
|
@@ -12,14 +12,21 @@ module Dependabot
|
|
12
12
|
RC_YML_FILENAME = ".yarnrc.yml"
|
13
13
|
LOCKFILE_NAME = "yarn.lock"
|
14
14
|
|
15
|
+
# Section : Update instructions
|
16
|
+
# With every major release update
|
17
|
+
# - Add new YARN_Vx , i.e. YARN_V5 = "5"
|
18
|
+
# - Add to SUPPORTED_VERSIONS
|
19
|
+
|
15
20
|
YARN_V1 = "1"
|
16
21
|
YARN_V2 = "2"
|
17
22
|
YARN_V3 = "3"
|
23
|
+
YARN_V4 = "4"
|
18
24
|
|
19
25
|
SUPPORTED_VERSIONS = T.let([
|
20
26
|
Version.new(YARN_V1),
|
21
27
|
Version.new(YARN_V2),
|
22
|
-
Version.new(YARN_V3)
|
28
|
+
Version.new(YARN_V3),
|
29
|
+
Version.new(YARN_V4)
|
23
30
|
].freeze, T::Array[Dependabot::Version])
|
24
31
|
|
25
32
|
DEPRECATED_VERSIONS = T.let([].freeze, T::Array[Dependabot::Version])
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dependabot-npm_and_yarn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.324.
|
4
|
+
version: 0.324.1
|
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.324.
|
18
|
+
version: 0.324.1
|
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.324.
|
25
|
+
version: 0.324.1
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: debug
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -356,7 +356,7 @@ licenses:
|
|
356
356
|
- MIT
|
357
357
|
metadata:
|
358
358
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
359
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.324.
|
359
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.324.1
|
360
360
|
rdoc_options: []
|
361
361
|
require_paths:
|
362
362
|
- lib
|