Skip to content

Commit 3abe712

Browse files
committed
Bring Changelog UTD and bump README versions
1 parent 8dd1f90 commit 3abe712

2 files changed

Lines changed: 59 additions & 13 deletions

File tree

CHANGELOG.md

Lines changed: 49 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,53 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [v1.6.0]
8+
9+
### Added
10+
* Add support for `key` in watch config steps by @toadzky in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/133
11+
12+
### Changed
13+
* Perform an update check instead of downloading the binary every run by @JanSF in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/127
14+
15+
## [v1.5.2]
16+
17+
### Added
18+
* Add support for `depends_on` in step definitions by @jasonwbarnett in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/123
19+
20+
### Changed
21+
* Perform an update check instead of downloading the binary every run by @JanSF in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/122
22+
* Revert the update check change by @pzeballos in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/126
23+
* Maintenance updates to Go/tooling dependencies by @renovate[bot]
24+
25+
### Fixed
26+
* Fix unicode handling in git diff output by @scadu in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/131
27+
28+
## [v1.5.1]
29+
30+
### Fixed
31+
* Fix nested envs parsing as rawenv by @mcncl in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/108
32+
33+
## [v1.5.0]
34+
35+
### Added
36+
* Add env and metadata attributes to steps by @jykingston in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/74
37+
* Add compatibility table by @mcncl in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/81
38+
* Add OSSF scanning by @mcncl in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/90
39+
* Add support for conditionals (`if`) in steps by @jasonwbarnett in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/92
40+
41+
## [v1.4.0]
42+
43+
### Added
44+
* Preserve `plugins:` blocks in watched steps by @dstrates in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/50
45+
* Support `branches` in steps by @toote in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/52
46+
* Support multiple steps by @toote in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/53
47+
* Add `except_path` functionality by @lswith in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/72
48+
49+
### Changed
50+
* Reconfigure tests and remove BATS by @petetomasik in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/48
51+
* Update dependencies by @toote in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/73
52+
* Remove pull request action by @pzeballos in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/70
53+
* Update broken link to original author by @adikari in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/49
854

955
## [v1.3.0]
1056

@@ -29,7 +75,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2975
## [v1.1.0]
3076

3177
### Fixed
32-
* Updates to CI, testing and bug fixes by @pzeballos in #7
78+
* Updates to CI, testing and bug fixes by @pzeballos in #7
3379
* Fix default env test by @sj26 in https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/33
3480

3581
### Changed
@@ -46,4 +92,4 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4692
## [v1.0.0]
4793

4894
### Changed
49-
* Update to README.md ([#1](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/1)) @stephanieatte
95+
* Update to README.md ([#1](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/1)) @stephanieatte

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ For example, in the following configuration:
4545
steps:
4646
- label: "Triggering pipelines"
4747
plugins:
48-
- monorepo-diff#v1.5.2:
48+
- monorepo-diff#v1.6.0:
4949
diff: "git diff --name-only HEAD~1"
5050
watch:
5151
- path: "**/*"
@@ -78,7 +78,7 @@ This is a sub-section that provides configuration for running commands or trigge
7878
steps:
7979
- label: "Triggering pipelines"
8080
plugins:
81-
- monorepo-diff#v1.5.2:
81+
- monorepo-diff#v1.6.0:
8282
watch:
8383
- path: app/
8484
config:
@@ -109,7 +109,7 @@ steps:
109109
steps:
110110
- label: "Triggering pipelines with plugin"
111111
plugins:
112-
- monorepo-diff#v1.5.2:
112+
- monorepo-diff#v1.6.0:
113113
watch:
114114
- path: test/.buildkite/
115115
config: # Required [trigger step configuration]
@@ -138,7 +138,7 @@ The plugin supports conditional execution of pipeline steps using the `if` key,
138138
steps:
139139
- label: "Triggering pipelines with plugin"
140140
plugins:
141-
- monorepo-diff#v1.5.2:
141+
- monorepo-diff#v1.6.0:
142142
diff: git diff --name-only HEAD~1
143143
watch:
144144
- path: services/api
@@ -201,7 +201,7 @@ git diff --name-only "$LATEST_TAG"
201201
steps:
202202
- label: "Triggering pipelines"
203203
plugins:
204-
- monorepo-diff#v1.5.2:
204+
- monorepo-diff#v1.6.0:
205205
diff: "git diff --name-only HEAD~1"
206206
watch:
207207
- path: "bar-service/"
@@ -228,7 +228,7 @@ A default `config` to run if no paths are matched, the `config` key is not requi
228228
steps:
229229
- label: "Triggering pipelines"
230230
plugins:
231-
- monorepo-diff#v1.5.2:
231+
- monorepo-diff#v1.6.0:
232232
diff: "git diff --name-only HEAD~1"
233233
watch:
234234
- path: "bar-service/"
@@ -250,7 +250,7 @@ The object values provided in this configuration will be appended to `env` prope
250250
steps:
251251
- label: "Triggering pipelines"
252252
plugins:
253-
- monorepo-diff#v1.5.2:
253+
- monorepo-diff#v1.6.0:
254254
diff: "git diff --name-only HEAD~1"
255255
watch:
256256
- path: "foo-service/"
@@ -272,7 +272,7 @@ Add `log_level` property to set the log level. Supported log levels are `debug`
272272
steps:
273273
- label: "Triggering pipelines"
274274
plugins:
275-
- monorepo-diff#v1.5.2:
275+
- monorepo-diff#v1.6.0:
276276
diff: "git diff --name-only HEAD~1"
277277
log_level: "debug" # defaults to "info"
278278
watch:
@@ -305,7 +305,7 @@ Add `key` to set the step or group key.
305305
steps:
306306
- label: "Setting Key"
307307
plugins:
308-
- monorepo-diff#v1.5.2:
308+
- monorepo-diff#v1.6.0:
309309
diff: "git diff --name-only HEAD~1"
310310
watch:
311311
- path: "bar-service/"
@@ -320,7 +320,7 @@ steps:
320320
steps:
321321
- label: "Triggering pipelines"
322322
plugins:
323-
- monorepo-diff#v1.5.2:
323+
- monorepo-diff#v1.6.0:
324324
diff: "git diff --name-only $(head -n 1 last_successful_build)"
325325
interpolation: false
326326
env:

0 commit comments

Comments
 (0)