Skip to content

Commit eae7d57

Browse files
committed
chore: changelog
1 parent e36d85a commit eae7d57

File tree

3 files changed

+33
-1
lines changed

3 files changed

+33
-1
lines changed

cliff.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ commit_parsers = [
5757
{ message = "^refactor", group = "Refactor" },
5858
{ message = "^style", group = "Styling" },
5959
{ message = "^test", group = "Testing" },
60-
{ message = "^chore\\(release\\): prepare for", skip = true },
60+
{ message = "^chore: release", skip = true },
6161
{ message = "^chore: changelog", skip = true },
6262
{ message = "^chore\\(deps\\)", skip = true },
6363
{ message = "^chore|ci", group = "Miscellaneous Tasks" },

crates/synd_o11y/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [unreleased]
6+
7+
### Features
8+
9+
- Add o11y crate by [@ymgyt](https://github.com/ymgyt) ([0a50517e](https://github.com/ymgyt/syndicationd/commit/0a50517e0b861973fac95ad5dba6f2c4d5b7270d))
10+
- Add opentelemetry-tracing log bridge layer by [@ymgyt](https://github.com/ymgyt) ([92f22b56](https://github.com/ymgyt/syndicationd/commit/92f22b564357a0d43f8631212cf976338eb05a04))
11+
- Add baggage propagation by [@ymgyt](https://github.com/ymgyt) ([d02e514c](https://github.com/ymgyt/syndicationd/commit/d02e514c8f6e32aa748c10dadb204153cba21ecc))
12+
- Add opentelemetry layers by [@ymgyt](https://github.com/ymgyt) ([4d3f5bf3](https://github.com/ymgyt/syndicationd/commit/4d3f5bf3f45f31cfd014dbdf37a41a31ea0472ca))
13+
14+
### Miscellaneous Tasks
15+
16+
- Configure release flow by [@ymgyt](https://github.com/ymgyt) ([855d1063](https://github.com/ymgyt/syndicationd/commit/855d1063f5b476433fe0a7ab352b72d63a749e2e))
17+
- Use hyphen as package name instead of underscore by [@ymgyt](https://github.com/ymgyt) ([0a8ed059](https://github.com/ymgyt/syndicationd/commit/0a8ed05997790f9f05c932c92fa2b2b2d74065a9))
18+
19+
### Testing
20+
21+
- Fix wrong assertion by [@ymgyt](https://github.com/ymgyt) ([392df0de](https://github.com/ymgyt/syndicationd/commit/392df0de6c4b7e8c34ae2d7c2f8ec764c23145f0))
22+
23+
<!-- generated by git-cliff -->

justfile

+9
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ loki_endpoint := env_var_or_default("LOKI_ENDPOINT","")
88
term_dir := "crates/synd_term"
99
auth_dir := "crates/synd_auth"
1010
feed_dir := "crates/synd_feed"
11+
o11y_dir := "crates/synd_o11y"
1112

1213
alias format := fmt
1314
alias integration := integration-test
@@ -102,6 +103,10 @@ changelog-auth:
102103
GIT_CLIFF__GIT__TAG_PATTERN="synd-auth-v.*" \
103104
git cliff --include-path "{{auth_dir}}/**" --include-path "crates/synd_authn/**" out> {{auth_dir}}/CHANGELOG.md
104105

106+
changelog-o11y:
107+
GIT_CLIFF__GIT__TAG_PATTERN="synd-o11y-v.*" \
108+
git cliff --include-path "{{o11y_dir}}/**" out> {{o11y_dir}}/CHANGELOG.md
109+
105110
changelog-feed:
106111
GIT_CLIFF__GIT__TAG_PATTERN="synd-feed-v.*" \
107112
git cliff --include-path "{{feed_dir}}/**" out> {{feed_dir}}/CHANGELOG.md
@@ -114,6 +119,10 @@ changelog-term:
114119
release-auth *flags: changelog-auth
115120
cargo release --package synd-auth {{flags}}
116121

122+
release-o11y *flags: changelog-o11y
123+
cargo release --package synd-o11y {{flags}}
124+
125+
# Release synd_feed
117126
release-feed *flags: changelog-feed
118127
cargo release --package synd-feed {{flags}}
119128

0 commit comments

Comments
 (0)