Skip to content

Commit 16ca4ac

Browse files
committed
Release v1.9.1
1 parent 7116992 commit 16ca4ac

2 files changed

Lines changed: 31 additions & 19 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [v1.9.1](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/compare/v1.9.0...v1.9.1) (2026-03-02)
10+
11+
### Fixed
12+
* Support whitespaces in filenames [#162](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/162) ([siredmar](https://github.com/siredmar))
13+
14+
### Added
15+
* Improve diff() logic, extend tests [#163](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/163) ([petetomasik](https://github.com/petetomasik))
16+
17+
### Changed
18+
* Update goreleaser/goreleaser-action action to v7 [#161](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/161) ([renovate[bot]](https://github.com/apps/renovate))
19+
* Update dependency go to v1.26.0 [#160](https://github.com/buildkite-plugins/monorepo-diff-buildkite-plugin/pull/160) ([renovate[bot]](https://github.com/apps/renovate))
20+
921
## [v1.9.0]
1022

1123
### Added

README.md

Lines changed: 19 additions & 19 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.9.0:
48+
- monorepo-diff#v1.9.1:
4949
diff: "git diff --name-only HEAD~1"
5050
watch:
5151
- path: "**/*"
@@ -125,7 +125,7 @@ The plugin preserves `plugins:` blocks when specified in command step configurat
125125
steps:
126126
- label: "Triggering pipelines"
127127
plugins:
128-
- monorepo-diff#v1.9.0:
128+
- monorepo-diff#v1.9.1:
129129
watch:
130130
- path: services/api/
131131
config:
@@ -150,7 +150,7 @@ When changes are detected in the watched paths, the plugin generates steps that
150150
steps:
151151
- label: "Triggering pipelines"
152152
plugins:
153-
- monorepo-diff#v1.9.0:
153+
- monorepo-diff#v1.9.1:
154154
watch:
155155
- path: app/
156156
config:
@@ -181,7 +181,7 @@ steps:
181181
steps:
182182
- label: "Triggering pipelines with plugin"
183183
plugins:
184-
- monorepo-diff#v1.9.0:
184+
- monorepo-diff#v1.9.1:
185185
watch:
186186
- path: test/.buildkite/
187187
config: # Required [trigger step configuration]
@@ -210,7 +210,7 @@ The plugin supports conditional execution of pipeline steps using the `if` key,
210210
steps:
211211
- label: "Triggering pipelines with plugin"
212212
plugins:
213-
- monorepo-diff#v1.9.0:
213+
- monorepo-diff#v1.9.1:
214214
diff: git diff --name-only HEAD~1
215215
watch:
216216
- path: services/api
@@ -278,7 +278,7 @@ git diff --name-only "$LATEST_TAG"
278278
steps:
279279
- label: "Triggering pipelines"
280280
plugins:
281-
- monorepo-diff#v1.9.0:
281+
- monorepo-diff#v1.9.1:
282282
diff: "git diff --name-only HEAD~1"
283283
watch:
284284
- path: "bar-service/"
@@ -305,7 +305,7 @@ A default `config` to run if no paths are matched, the `config` key is not requi
305305
steps:
306306
- label: "Triggering pipelines"
307307
plugins:
308-
- monorepo-diff#v1.9.0:
308+
- monorepo-diff#v1.9.1:
309309
diff: "git diff --name-only HEAD~1"
310310
watch:
311311
- path: "bar-service/"
@@ -327,7 +327,7 @@ The object values provided in this configuration will be appended to `env` prope
327327
steps:
328328
- label: "Triggering pipelines"
329329
plugins:
330-
- monorepo-diff#v1.9.0:
330+
- monorepo-diff#v1.9.1:
331331
diff: "git diff --name-only HEAD~1"
332332
watch:
333333
- path: "foo-service/"
@@ -353,7 +353,7 @@ The map format provides clean, readable syntax:
353353
steps:
354354
- label: "Triggering pipelines"
355355
plugins:
356-
- monorepo-diff#v1.9.0:
356+
- monorepo-diff#v1.9.1:
357357
env:
358358
NODE_ENV: production
359359
API_URL: https://api.example.com
@@ -388,7 +388,7 @@ The array format uses key=value syntax:
388388
steps:
389389
- label: "Triggering pipelines"
390390
plugins:
391-
- monorepo-diff#v1.9.0:
391+
- monorepo-diff#v1.9.1:
392392
env:
393393
- NODE_ENV=production
394394
- API_URL=https://api.example.com
@@ -428,7 +428,7 @@ Add `log_level` property to set the log level. Supported log levels are `debug`
428428
steps:
429429
- label: "Triggering pipelines"
430430
plugins:
431-
- monorepo-diff#v1.9.0:
431+
- monorepo-diff#v1.9.1:
432432
diff: "git diff --name-only HEAD~1"
433433
log_level: "debug" # defaults to "info"
434434
watch:
@@ -452,7 +452,7 @@ This option is useful for:
452452
steps:
453453
- label: "Triggering pipelines"
454454
plugins:
455-
- monorepo-diff#v1.9.0:
455+
- monorepo-diff#v1.9.1:
456456
download: false
457457
diff: "git diff --name-only HEAD~1"
458458
watch:
@@ -482,7 +482,7 @@ To enable checksum verification:
482482
steps:
483483
- label: "Triggering pipelines"
484484
plugins:
485-
- monorepo-diff#v1.9.0:
485+
- monorepo-diff#v1.9.1:
486486
verify_checksum: true # Recommended for enhanced security
487487
diff: "git diff --name-only HEAD~1"
488488
watch:
@@ -517,7 +517,7 @@ Add `key` to set the step or group key.
517517
steps:
518518
- label: "Setting Key"
519519
plugins:
520-
- monorepo-diff#v1.9.0:
520+
- monorepo-diff#v1.9.1:
521521
diff: "git diff --name-only HEAD~1"
522522
watch:
523523
- path: "bar-service/"
@@ -536,7 +536,7 @@ Add `secrets` to inject [Buildkite Secrets](https://buildkite.com/docs/pipelines
536536
steps:
537537
- label: "Deploy with secrets"
538538
plugins:
539-
- monorepo-diff#v1.9.0:
539+
- monorepo-diff#v1.9.1:
540540
diff: "git diff --name-only HEAD~1"
541541
watch:
542542
- path: "service/"
@@ -553,7 +553,7 @@ steps:
553553
steps:
554554
- label: "Deploy with secrets"
555555
plugins:
556-
- monorepo-diff#v1.9.0:
556+
- monorepo-diff#v1.9.1:
557557
diff: "git diff --name-only HEAD~1"
558558
watch:
559559
- path: "service/"
@@ -570,7 +570,7 @@ Secrets also work within grouped steps:
570570
steps:
571571
- label: "Deploy services"
572572
plugins:
573-
- monorepo-diff#v1.9.0:
573+
- monorepo-diff#v1.9.1:
574574
diff: "git diff --name-only HEAD~1"
575575
watch:
576576
- path: "services/"
@@ -593,7 +593,7 @@ steps:
593593
steps:
594594
- label: "Triggering pipelines"
595595
plugins:
596-
- monorepo-diff#v1.9.0:
596+
- monorepo-diff#v1.9.1:
597597
diff: "git diff --name-only $(head -n 1 last_successful_build)"
598598
interpolation: false
599599
env:
@@ -664,7 +664,7 @@ This is the filesystem folder where the Go binary will be kept.
664664
steps:
665665
- label: "Triggering pipelines"
666666
plugins:
667-
- monorepo-diff#v1.9.0:
667+
- monorepo-diff#v1.9.1:
668668
binary_folder: "/var/buildkite-agent"
669669
watch:
670670
- path: "bar-service/"

0 commit comments

Comments
 (0)