This repository has been archived by the owner on Oct 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change the way we check the required version of the dependency (#428)
There are still some cases for false negative where the direct constrant is ok and other indirect dependency has a problem. Although the issue is not completely fixed, this logic change allows more legitimate cases which has been failing with the previous code. It will alleviate #426
- Loading branch information
Takashi Matsuo
authored
Mar 28, 2018
1 parent
f6de70a
commit a5a4dd5
Showing
5 changed files
with
38 additions
and
7 deletions.
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
2 changes: 1 addition & 1 deletion
2
builder/gen-dockerfile/tests/test_data/stackdriver_old_logging/composer.json
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"require": { | ||
"google/cloud-logging": "^1.2.0", | ||
"google/cloud-logging": "<=1.2.0", | ||
"google/cloud-error-reporting": "^0.4.1" | ||
} | ||
} |
6 changes: 6 additions & 0 deletions
6
builder/gen-dockerfile/tests/test_data/stackdriver_wildcard/app.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,6 @@ | ||
env: flex | ||
runtime: php | ||
|
||
runtime_config: | ||
enable_stackdriver_integration: true | ||
document_root: web |
5 changes: 5 additions & 0 deletions
5
builder/gen-dockerfile/tests/test_data/stackdriver_wildcard/composer.json
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,5 @@ | ||
{ | ||
"require": { | ||
"google/cloud": "*" | ||
} | ||
} |