-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Sjoerd Simons <[email protected]>
- Loading branch information
1 parent
310347c
commit f4f0c1d
Showing
4 changed files
with
49 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# 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/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.9](https://github/collabora/gitlab-runner-rs/compare/gitlab-runner-mock-v0.0.8...gitlab-runner-mock-v0.0.9) - 2024-04-13 | ||
|
||
### Other | ||
- Add test for metadata | ||
- Add metadata | ||
- Move from multipart to multer | ||
- Update to wiremock 0.0.6 | ||
- Add automatic generation of system_id for the runner |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gitlab-runner-mock" | ||
version = "0.0.8" | ||
version = "0.0.9" | ||
authors = ["Sjoerd Simons <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# 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/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [Unreleased] | ||
|
||
## [0.0.9](https://github/collabora/gitlab-runner-rs/compare/gitlab-runner-v0.0.8...gitlab-runner-v0.0.9) - 2024-04-13 | ||
|
||
### Added | ||
- Move runner creation to builder pattern | ||
- Seperate logging layer creation from runner creation | ||
- Add automatic generation of system_id for the runner | ||
- Allow setting runner metadata | ||
|
||
### Other | ||
- Add test for metadata | ||
- Add metadata | ||
- Allow setting runner metadata | ||
- Update reqwest requirement from 0.11.3 to 0.12.0 | ||
- Improve logging on demo runner | ||
- Add a specific span target adding the gitlab job id | ||
- Add a per-layer filter on top of the GitlabLayer | ||
- re-add root README.md | ||
- Deduplicate README and crate documentation | ||
- Update to wiremock 0.0.6 | ||
- update README.md for the new registration workflow | ||
- Add automatic generation of system_id for the runner | ||
- Bump dependencis as need to build with minimal-versions |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "gitlab-runner" | ||
version = "0.0.8" | ||
version = "0.0.9" | ||
authors = ["Sjoerd Simons <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -38,7 +38,7 @@ tokio-util = { version = "0.7.10", features = [ "io" ] } | |
[dev-dependencies] | ||
tokio = { version = "1.35.0", features = [ "full", "test-util" ] } | ||
tracing-subscriber = { version = "0.3.10", features = ["env-filter", "json"] } | ||
gitlab-runner-mock = { path = "../gitlab-runner-mock", version = "0.0.8" } | ||
gitlab-runner-mock = { path = "../gitlab-runner-mock", version = "0.0.9" } | ||
structopt = "0.3.21" | ||
futures = "0.3.15" | ||
anyhow = "1.0.79" | ||
|