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

Skip to content

Tags: brianhlee/goblet

Tags

0.8.0

Toggle 0.8.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add waiters for api gateway destroy (goblet#217)

* Add waiters for api gateway destroy functions (closes goblet#201)

0.7.6

Toggle 0.7.6's commit message
bump version

0.7.5

Toggle 0.7.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add preflight cors support (goblet#192)

Setting cors on an endpoint or the application will automatically add an OPTIONS method to support preflighting requests.

0.7.4

Toggle 0.7.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
set 0.7.4 (goblet#178)

0.7.3

Toggle 0.7.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Pubsub subscription attributes (goblet#172)

Add filters to pubsub subscription. (closes goblet#86 )
* Pass in `filter` arg
* Generate filter based on `attributes` if filter not defined

```
    @app.topic('test', use_subscription=True, filter='attributes.name = "com" AND -attributes:"iana.org/language_tag"')
    def pubsub_subscription_filter(data):
        return 
```

0.7.2.2

Toggle 0.7.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bugfix json error 2 (goblet#167)

order was causing errors (closes goblet#166 )

0.7.2.1

Toggle 0.7.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bugfix-json headers, gateway update (goblet#165)

* Addresses 400 error with http get requests happening
* Fix api gateway update

0.7.2

Toggle 0.7.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Bugfix: Add is_json check (goblet#162)

Fixes 400 error when get_json() is being called for requests with no json (closes goblet#152 )

0.7.1

Toggle 0.7.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[Docs] Test scheduler locally (goblet#158)

* Update docs for testing scheduler locally (closes goblet#155 )

0.7.0

Toggle 0.7.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
[EventArc] New resource (goblet#149)

New `eventarc` event for cloudrun backend (closes goblet#128 )

```
# Example eventarc pubsub topic
@app.eventarc(topic="test")
def pubsub(data):
    return "pubsub"


# Example eventarc direct event
@app.eventarc(
    event_filters=[
        {"attribute": "type", "value": "google.cloud.storage.object.v1.finalized"},
        {"attribute": "bucket", "value": "BUCKET"},
    ],
    region="us-east1",
)
def bucket(data):
    app.log.info("bucket_post")
    return "hello world"


# Example eventarc audit log
@app.eventarc(
    event_filters=[
        {"attribute": "type", "value": "google.cloud.audit.log.v1.written"},
        {"attribute": "methodName", "value": "storage.objects.get"},
        {"attribute": "serviceName", "value": "storage.googleapis.com"},
    ],
    region="us-central1",
)
def bucket_get(data):
    app.log.info("bucket_get")
    return "hello world"
```