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

Tags: open2b/scriggo

Tags

v0.60.0

Toggle v0.60.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
scriggo: require Go 1.23 as the minimum supported version

With the release of Go 1.24, this change sets Go 1.23 as the new minimum
supported version. Additionally, the `scriggo` command is now compiled
using Go 1.24.

Co-authored-by: Gianluca Mondini <mondini@open2b.com>

v0.59.1

Toggle v0.59.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
internal/compiler: fix emitting of receiver in method calls

This commit fixes the emitting of method calls, where the receiver of
the method call was erroneously placed as first "general" argument in
the call stack, causing an incorrect stack shift and altering the
parameters received from the called method.

Also adds tests on this.

Fix #967.

Co-authored-by: Marco Gazerro <gazerro@open2b.com>

v0.59.0

Toggle v0.59.0's commit message
cmd/scriggo: add LiveReload for automatic page reloads

This change adds LiveReload functionality, enabling automatic page
reloads in the browser whenever the template code changes.

The 'scriggo serve' command now injects JavaScript into the generated
page. Using Server-Side Events (SSE), it triggers a page reload whenever
the page’s template files change.

LiveReload can be disabled with the --disable-livereload flag.

v0.58.1

Toggle v0.58.1's commit message
scriggo/test: update `github.com/rogpeppe/go-internal` to v1.13.1

v0.58.0

Toggle v0.58.0's commit message
native,internal/runtime: introduce the `Env.MarkdownConverter` method

This change introduces the 'Env.MarkdownConverter' method, which returns
the Markdown converter provided to the BuildTemplate function.

v0.57.1

Toggle v0.57.1's commit message
scriggo: update the configuration of GoReleaser (`.goreleaser.yml`)

v0.57.0

Toggle v0.57.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
all: use the syntax `//go:build` instead of `// +build`

This commit removes the line syntax:

	// +build

by using just the syntax:

	//go:build

which is supported starting from Go 1.17 and has been considered
deprecated starting from Go 1.18.

Note that, in tests, the old syntax is kept. See #956.

v0.56.1

Toggle v0.56.1's commit message
builtin: fix invalid behavior of function 'HasSuffix'

Also add tests on it and on function 'HasPrefix'.

v0.56.0

Toggle v0.56.0's commit message
 scriggo: require Go 1.18 as the minimum supported version

v0.55.0

Toggle v0.55.0's commit message
test: run 'go mod tidy'

0