Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Tags: goblet/goblet

Tags

0.14.0

Toggle 0.14.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Update dependencies (#506)

* update dependencies
* set cloudfunctionsv2 (cloud run functions) as default backend (closes
#504 )

0.13.3

Toggle 0.13.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add github action job timeout (#498)

closes #497

0.13.2

Toggle 0.13.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Add make format command (#494)

`make format` (closes #492 )

0.13.1

Toggle 0.13.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Register nested handlers correctly (#484)

* Register nested handlers at the same time as the main handler to all
registration to work with the stages decorator. (closes #481)

The following will now register the scheduler and job at the same time
correctly.
```
@app.job("testjob2", schedule="* * * * *")
@app.stage(stages=["TEST"])
def test_cloudrun_job2(id):
    run_job()
```

0.13.0

Toggle 0.13.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
GOBLET_BUILD_TAGS and GOBLET_ARTIFACT_BUCKET for cloudfunctionv1 (#477)

upload the code to GOBLET_UPLOAD_BUCKET tagged with first tag in
GOBLET_BUILD_TAGS
deploy cloudfunctionv1 from GOBLET_UPLOAD_BUCKET + GOBLET_ARTIFACT_TAG
(closes #447 )

0.12.5

Toggle 0.12.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Uptime check (#465)

closes #316 

```
@app.uptime(timeout="30s")
def uptime_cloudrun():
    return "success"
```

0.12.4

Toggle 0.12.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update version 0.12.4 (#457)

0.12.3

Toggle 0.12.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update version and blogs (#451)

0.12.2

Toggle 0.12.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Enum Route Param (#446)

closes #442 
```
class StopLight(Enum):
    green = 'green'
    yellow = 'yellow'
    red = 'red'


@app.route("/{color}")
def prim_enum(color: StopLight):
    return StopLight(color)
```

returns openapi spec as follows

```
      - in: path
        name: color
        required: true
        type: string
        enum:
        - green
        - yellow
        - red
 ```

0.12.1.1

Toggle 0.12.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
bump version (#439)