Dagger
Search

changelog

No long description provided.

Installation

dagger install github.com/shykes/dagger/.changes@13db7b496fb0c5162d9932afc42159c95e79e1e8

Entrypoint

Return Type
Changelog !
Arguments
NameTypeDefault ValueDescription
sourceDirectory -No description provided
Example
dagger -m github.com/shykes/dagger/.changes@13db7b496fb0c5162d9932afc42159c95e79e1e8 call \
func (m *MyModule) Example() *dagger.Changelog  {
	return dag.
			Changelog()
}
@function
def example() -> dagger.Changelog:
	return (
		dag.changelog()
	)
@func()
example(): Changelog {
	return dag
		.changelog()
}

Types

Changelog 🔗

generate() 🔗

Generate the changelog with ‘changie merge’. Only run this manually, at release time.

Return Type
Changeset !
Example
dagger -m github.com/shykes/dagger/.changes@13db7b496fb0c5162d9932afc42159c95e79e1e8 call \
 generate
func (m *MyModule) Example() *dagger.Changeset  {
	return dag.
			Changelog().
			Generate()
}
@function
def example() -> dagger.Changeset:
	return (
		dag.changelog()
		.generate()
	)
@func()
example(): Changeset {
	return dag
		.changelog()
		.generate()
}

lookupEntry() 🔗

Lookup the change notes file for the given component and version

Return Type
File !
Arguments
NameTypeDefault ValueDescription
componentString !-The component to look up change notes for Example: "sdk/php"
versionString !-The version to look up change notes for
Example
dagger -m github.com/shykes/dagger/.changes@13db7b496fb0c5162d9932afc42159c95e79e1e8 call \
 lookup-entry --component string --version string
func (m *MyModule) Example(component string, version string) *dagger.File  {
	return dag.
			Changelog().
			LookupEntry(component, version)
}
@function
def example(component: str, version: str) -> dagger.File:
	return (
		dag.changelog()
		.lookup_entry(component, version)
	)
@func()
example(component: string, version: string): File {
	return dag
		.changelog()
		.lookupEntry(component, version)
}