File tree Expand file tree Collapse file tree 2 files changed +54
-23
lines changed Expand file tree Collapse file tree 2 files changed +54
-23
lines changed Original file line number Diff line number Diff line change 1
- # The directory that stores individual changelog entries.
2
- # Each entry is stored in a dedicated yaml file.
3
- # - 'chloggen new' will copy the 'template_yaml' to this directory as a new entry file.
4
- # - 'chloggen validate' will validate that all entry files are valid.
5
- # - 'chloggen update' will read and delete all entry files in this directory, and update 'changelog_md'.
6
- # Specify as relative path from root of repo.
7
- # (Optional) Default: .chloggen
1
+ change_logs :
2
+ api : CHANGELOG-API.md
3
+ user : CHANGELOG.md
4
+ default_change_logs :
5
+ - user
8
6
entries_dir : .chloggen
9
-
10
- # This file is used as the input for individual changelog entries.
11
- # Specify as relative path from root of repo.
12
- # (Optional) Default: .chloggen/TEMPLATE.yaml
13
7
template_yaml : .chloggen/TEMPLATE.yaml
14
-
15
8
summary_template : .chloggen/summary.tmpl
16
-
17
- # The CHANGELOG file or files to which 'chloggen update' will write new entries
18
- # (Optional) Default filename: CHANGELOG.md
19
- change_logs :
20
- user : CHANGELOG.md
21
- api : CHANGELOG-API.md
22
-
23
- # The default change_log or change_logs to which an entry should be added.
24
- # If 'change_logs' is specified in this file, and no value is specified for 'default_change_logs',
25
- # then 'change_logs' MUST be specified in every entry file.
26
- default_change_logs : [user]
9
+ components :
10
+ - all
11
+ - cmd/builder
12
+ - cmd/mdatagen
13
+ - connector/forward
14
+ - connector/sample
15
+ - consumer/xconsumer
16
+ - docs/rfcs
17
+ - exporter/debug
18
+ - exporter/nop
19
+ - exporter/otlp
20
+ - exporter/otlphttp
21
+ - extension/memory_limiter
22
+ - extension/xextension
23
+ - extension/xextension
24
+ - extension/zpages
25
+ - pdata/pprofile
26
+ - pkg/confmap
27
+ - pkg/exporterhelper
28
+ - pkg/pdata
29
+ - pkg/processorhelper
30
+ - pkg/queuebatch
31
+ - pkg/receiverhelper
32
+ - pkg/scraper
33
+ - pkg/scraperhelper
34
+ - pkg/service
35
+ - pkg/xconnector
36
+ - pkg/xexporter
37
+ - pkg/xexporterhelper
38
+ - pkg/xprocessor
39
+ - pkg/xreceiver
40
+ - processor/batch
41
+ - processor/memory_limiter
42
+ - processor/sample
43
+ - provider/env
44
+ - provider/file
45
+ - provider/http
46
+ - provider/https
47
+ - provider/yaml
48
+ - receiver/nop
49
+ - receiver/otlp
50
+ - receiver/sample
51
+ - receiver/sample
52
+ - scraper/sample
53
+ - service/graph
Original file line number Diff line number Diff line change @@ -475,3 +475,7 @@ gengithub: $(GITHUBGEN) generate-codeowners generate-gh-issue-templates
475
475
.PHONY : gendistributions
476
476
gendistributions : $(GITHUBGEN )
477
477
$(GITHUBGEN ) distributions
478
+
479
+ .PHONY : generate-chloggen-components
480
+ generate-chloggen-components : $(GITHUBGEN )
481
+ $(GITHUBGEN ) chloggen-components
You can’t perform that action at this time.
0 commit comments