You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Configuration for probot-stale - https://github.com/probot/stale
2
+
3
+
# Number of days of inactivity before an Issue or Pull Request becomes stale
4
+
# daysUntilStale: 30
5
+
6
+
# Number of days of inactivity before an Issue or Pull Request with the stale label is closed.
7
+
# Set to false to disable. If disabled, issues still need to be closed manually, but will remain marked as stale.
8
+
# daysUntilClose: 7
9
+
10
+
# NOTICE: Check below for the individual settings for each type of event.
11
+
12
+
# Only issues or pull requests with all of these labels are check if stale. Defaults to `[]` (disabled)
13
+
onlyLabels: []
14
+
15
+
# Issues or Pull Requests with these labels will never be considered stale. Set to `[]` to disable
16
+
exemptLabels:
17
+
- pinned
18
+
- security
19
+
- keep-open
20
+
- wip
21
+
- "[Status] Maybe Later"
22
+
23
+
# Set to true to ignore issues in a project (defaults to false)
24
+
exemptProjects: true # default: false
25
+
26
+
# Set to true to ignore issues in a milestone (defaults to false)
27
+
exemptMilestones: true # default: false
28
+
29
+
# Set to true to ignore issues with an assignee (defaults to false)
30
+
exemptAssignees: false
31
+
32
+
# Label to use when marking as stale
33
+
staleLabel: stale
34
+
35
+
# Comment to post when marking as stale. Set to `false` to disable
36
+
# markComment: >
37
+
# This issue has been automatically marked as stale because it has not had
38
+
# recent activity. It will be closed if no further activity occurs. Thank you
39
+
# for your contributions.
40
+
41
+
# Comment to post when removing the stale label.
42
+
# unmarkComment: >
43
+
# Your comment here.
44
+
45
+
# Comment to post when closing a stale Issue or Pull Request.
46
+
# closeComment: >
47
+
# Your comment here.
48
+
49
+
# Limit the number of actions per hour, from 1-30. Default is 30
50
+
limitPerRun: 30
51
+
52
+
# Limit to only `issues` or `pulls`
53
+
# only: issues
54
+
55
+
# Optionally, specify configuration settings that are specific to just 'issues' or 'pulls':
56
+
# pulls:
57
+
# daysUntilStale: 30
58
+
# markComment: >
59
+
# This pull request has been automatically marked as stale because it has not had
60
+
# recent activity. It will be closed if no further activity occurs. Thank you
61
+
# for your contributions.
62
+
63
+
# issues:
64
+
# exemptLabels:
65
+
# - confirmed
66
+
67
+
pull:
68
+
daysUntilClose: 14
69
+
daysUntilStale: 60
70
+
markComment: >
71
+
Hello 👋 Looks like there was no activity on this amazing PR for the last 60 days.
72
+
**Do you mind updating us on the status?** Is there anything we can help with? If you plan to still work on it, just comment on this PR or push a commit. Thanks! 🤗
73
+
74
+
If there will be no activity in the next 2 weeks, this issue will be closed (we can always reopen a PR if you get back to this!).
75
+
# unmarkComment: No need for unmark comment.
76
+
closeComment: >
77
+
Closing for now as promised, let us know if you need this to be reopened! 🤗
78
+
issues:
79
+
daysUntilClose: 90
80
+
daysUntilStale: 180
81
+
markComment: >
82
+
Hello 👋 Looks like there was no activity on this issue for the last 3 months.
83
+
**Do you mind updating us on the status?** Is this still reproducible or needed? If yes, just comment on this PR or push a commit. Thanks! 🤗
84
+
85
+
If there will be no activity in the next 4 weeks, this issue will be closed (we can always reopen an issue if we need!).
86
+
# unmarkComment: No need for unmark comment.
87
+
closeComment: >
88
+
Closing for now as promised, let us know if you need this to be reopened! 🤗
Copy file name to clipboardexpand all lines: CHANGELOG.md
+14
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,17 @@
1
+
## Unreleased
2
+
3
+
*[CHANGE] Minimum required Go version is now 1.16.
4
+
5
+
## 1.12.2 / 2022-05-13
6
+
7
+
*[CHANGE] Added `collectors.WithGoCollections` that allows to choose what collection of Go runtime metrics user wants: Equivalent of [`MemStats` structure](https://pkg.go.dev/runtime#MemStats) configured using `GoRuntimeMemStatsCollection`, new based on dedicated [runtime/metrics](https://pkg.go.dev/runtime/metrics) metrics represented by `GoRuntimeMetricsCollection` option, or both by specifying `GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection` flag.
8
+
*[CHANGE]:warning: Change in `collectors.NewGoCollector` metrics: Reverting addition of new ~80 runtime metrics by default. You can enable this back with `GoRuntimeMetricsCollection` option or `GoRuntimeMemStatsCollection | GoRuntimeMetricsCollection` for smooth transition.
9
+
*[BUGFIX] Fixed the bug that causes generated histogram metric names to end with `_total`. ⚠️ This changes 3 metric names in the new Go collector that was reverted from default in this release.
0 commit comments