8000 Tags · beyonddream-productions/encore · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

Tags: beyonddream-productions/encore

Tags

v0.23.0

Toggle v0.23.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Support line comments on request & response fields (encoredev#161)

This commit adds support for line based comments on struct fields and
Encore will now pick those up if there is not a doc comment on the field

```go
type FooBar struct {
    // This is a doc comment on Field
    Field string

    // This doc comment will take presendence over the line comment
    Foo string // This is a line comment will be ignored

    Bar string // This is a line comment will be used as the documentation
}
```

This example will result in the following documentation generation:

> `Field`: This is a doc comment on Field
> `Foo`: This doc comment will take presendence over the line comment
> `Bar`: This is a line comment will be used as the documentation

v0.22.0

Toggle v0.22.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Improved FAQ and Screenshots section (encoredev#156)

v0.21.0

Toggle v0.21.0's commit message
cli: fix client generation

We weren't correctly propagating the method to the client.

v0.20.0

Toggle v0.20.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
docs: Fix documentation typos on Custom Domains (encoredev#147)

This commit fixes a couple of small things on the custom domains documentation.

v0.19.0

Toggle v0.19.0's commit message
parser: catch API endpoints being referenced but not called

The refactoring in preparation for cron jobs accidentally made
the parser more permissive about referencing endpoints. Make it
more precise by allowing this in certain places but not others.

Fixes encoredev#142

v0.18.0

Toggle v0.18.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Change make release to use softlink for MacOS sdk (encoredev#133)

v0.17.2

Toggle v0.17.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
cli/daemon/dash/dashapp: fix base64 encoding of unicode (encoredev#97)

Fixes encoredev#96

v0.16.3

Toggle v0.16.3's commit message
cli/daemon/dash/dashapp: reset method on RPC change

Fixes encoredev#74

v0.16.2

Toggle v0.16.2's commit message
compiler: fix raw endpoints with path params

Add an end-to-end test for all variations to catch future regressions.

v0.15.0

Toggle v0.15.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Update README.md

Update Slack channel link.
0