Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Improve releasing during 0.6.3 #5408

Merged
merged 2 commits into from
Jul 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .changes/header.tpl.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).
Empty file added .changes/unreleased/.gitkeep
Empty file.
17 changes: 17 additions & 0 deletions .changes/v0.6.3.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## v0.6.3 - 2023-07-04

### Added
* cache: Set default Cloud Cache URL by @marcosnils in https://github.com/dagger/dagger/pull/5343
* engine: Add Cloud Cache token env var by @marcosnils in https://github.com/dagger/dagger/pull/5356
* core: Improve image publish/export format compatibility by @sipsma in https://github.com/dagger/dagger/pull/5365
* core: Send Progrock updates to Cloud by @vito in https://github.com/dagger/dagger/pull/5297

### Fixed
* core: Use include filter in host.file by @sipsma in https://github.com/dagger/dagger/pull/5345
* cli: Fix incorrect subcommand being called by @sipsma in https://github.com/dagger/dagger/pull/5344
* engine: Remove old Cache config env from autoprovision by @sipsma in https://github.com/dagger/dagger/pull/5355

### What to do next?
- Read the [documentation](https://docs.dagger.io)
- Join our [Discord server](https://discord.gg/dagger-io)
- Follow us on [Twitter](https://twitter.com/dagger_io)
32 changes: 32 additions & 0 deletions .changie.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
changesDir: .changes
unreleasedDir: unreleased
headerPath: header.tpl.md
changelogPath: CHANGELOG.md
versionExt: md
versionFormat: '## {{.Version}} - {{.Time.Format "2006-01-02"}}'
kindFormat: '### {{.Kind}}'
changeFormat: '- {{.Body}} by @{{.Custom.Author}} in https://github.com/dagger/dagger/pull/{{.Custom.PR}}'
custom:
- key: PR
label: GitHub PR
type: int
- key: Author
label: GitHub Author
type: string
kinds:
- label: Added
- label: Changed
- label: Deprecated
- label: Fixed
- label: Dependencies
footerFormat: |
### What to do next?
- Read the [documentation](https://docs.dagger.io)
- Join our [Discord server](https://discord.gg/dagger-io)
- Follow us on [Twitter](https://twitter.com/dagger_io)
newlines:
afterChangelogHeader: 3
afterVersion: 1
beforeKind: 1
beforeFooterTemplate: 1
envPrefix: CHANGIE_
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Changelog
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).



## v0.6.3 - 2023-07-04

### Added
* cache: Set default Cloud Cache URL by @marcosnils in https://github.com/dagger/dagger/pull/5343
* engine: Add Cloud Cache token env var by @marcosnils in https://github.com/dagger/dagger/pull/5356
* core: Improve image publish/export format compatibility by @sipsma in https://github.com/dagger/dagger/pull/5365
* core: Send Progrock updates to Cloud by @vito in https://github.com/dagger/dagger/pull/5297

### Fixed
* core: Use include filter in host.file by @sipsma in https://github.com/dagger/dagger/pull/5345
* cli: Fix incorrect subcommand being called by @sipsma in https://github.com/dagger/dagger/pull/5344
* engine: Remove old Cache config env from autoprovision by @sipsma in https://github.com/dagger/dagger/pull/5355

### What to do next?
- Read the [documentation](https://docs.dagger.io)
- Join our [Discord server](https://discord.gg/dagger-io)
- Follow us on [Twitter](https://twitter.com/dagger_io)
Loading