forked from dependabot/dependabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes Alias parsing was not enabled issue while loading Psych Lib in …
…safe_load (dependabot#9759) * Fixes Alias parsing was not enabled issue while loading Psych Lib in safe_load
- Loading branch information
1 parent
fd4a4a2
commit 3ed63ea
Showing
4 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: dependabot_testcase | ||
environment: | ||
sdk: '>=2.12.0 <3.0.0' | ||
dependencies: | ||
collection: ^1.14.13 # Locked to 1.14.13, can update with no unlock. | ||
retry: ^2.0.0 # Can update with updated constraint, no further constraints. | ||
protobuf: 1.1.4 # Can update with updated constraint, only together with fixnum to 2.0.0 or with fixnum and collection to 2.1.0. | ||
fixnum: 0.10.11 | ||
path: 1.8.0 # Already at latest |
16 changes: 16 additions & 0 deletions
16
pub/spec/fixtures/projects/yaml_alias/pubspec_alias_true.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
default: &default | ||
var1: info | ||
var2: var5 | ||
var3: 1 | ||
|
||
var4: | ||
<<: *default | ||
dir: ls/var4.info | ||
|
||
var5: | ||
<<: *default | ||
dir: ls/var5.info | ||
|
||
var6: | ||
<<: *default | ||
dir: ls/var6.info |