Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates to new version of container registry library. #797

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ pip_install()

git_repository(
name = "containerregistry",
commit = "6b250f0bae8cce028df939010ee3118c8f2977ba",
commit = "da03b395ccdc4e149e34fbb540483efce962dc64",
remote = "https://github.com/google/containerregistry",
)

Expand Down
3 changes: 3 additions & 0 deletions ftl/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# FTL Release Notes

# Version 0.19.0 - 6/27/2020
* Update container registry client library (previous didn't really change client library version).

# Version 0.18.0 - 6/15/2020
* Update container registry client library.

Expand Down
8 changes: 4 additions & 4 deletions ftl/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ o/my-project/cloudcats-node-app:latest
```

## Releases
Currently FTL is released in .par format for each supported runtime. The latest release is v0.18.0, changelog [here](https://github.com/GoogleCloudPlatform/runtimes-common/blob/master/ftl/CHANGELOG.md)
Currently FTL is released in .par format for each supported runtime. The latest release is v0.19.0, changelog [here](https://github.com/GoogleCloudPlatform/runtimes-common/blob/master/ftl/CHANGELOG.md)

### node

[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/node/node-v0.18.0/ftl.par)
[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/node/node-v0.19.0/ftl.par)

[HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/node/latest/ftl.par)

Expand All @@ -41,15 +41,15 @@ Specific version (based on git $COMMIT_SHA)

### python

[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/python/python-v0.18.0/ftl.par)
[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/python/python-v0.19.0/ftl.par)

[HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/python/latest/ftl.par)

Specific version (based on git $COMMIT_SHA)
`https://storage.googleapis.com/gcp-container-tools/ftl/python/$COMMIT_SHA/ftl.par`

### php
[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/php/php-v0.18.0/ftl.par)
[v0.18.0](https://storage.googleapis.com/gcp-container-tools/ftl/php/php-v0.19.0/ftl.par)

[HEAD](https://storage.googleapis.com/gcp-container-tools/ftl/php/latest/ftl.par)

Expand Down
4 changes: 2 additions & 2 deletions ftl/common/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
THREADS = 32

# ftl version
FTL_VERSION = "v0.18.0"
FTL_VERSION = "v0.19.0"

# Google Cloud Builder env options
BUILDER_OUTPUT = 'BUILDER_OUTPUT'
Expand Down Expand Up @@ -75,7 +75,7 @@
PHASE_1_CACHE_MISS = CACHE_MISS + PHASE_1_CACHE_STR
PHASE_2_CACHE_MISS = CACHE_MISS + PHASE_2_CACHE_STR

CACHE_KEY_VERSION = 'v0.18.0'
CACHE_KEY_VERSION = 'v0.19.0'

FTL_USER_ERROR = "INVALID_ARGUMENT"
FTL_INTERNAL_ERROR = "INTERNAL"
Expand Down