-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Defer initial report #56
Conversation
If adding several metrics at once, on the same interval, only the first will be reported in the initial report due to the immediate call to `reporter._reportMetricsWithInterval(...)`. By wrapping that in a `setImmediate(...)`, any other metrics set in that tick should now also be included in the initial report.
Pull Request Test Coverage Report for Build 344
💛 - Coveralls |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lGTM
Are you going to cut the release on this one?
What do I need to do? |
Just use the GitHub release page to do a release. Copy the format from one
of the previous releases. Make sure to bump the minor version in your
release.
If this isn't making sense I can get you screen shots after lunch
Cheers,
Justin
On Tue, Dec 18, 2018 at 12:29 PM Stephen Belanger ***@***.***> wrote:
What do I need to do?
—
You are receiving this because your review was requested.
Reply to this email directly, view it on GitHub
<#56 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AArcLpI5iB0IJ93uVnBBxPO1dfvpprdMks5u6VAwgaJpZM4ZY-Lx>
.
--
Justin Field
fieldju@gmail.com
LinkedIn <https://www.linkedin.com/in/fieldju> | @fieldju
|
Ah, yep, I can do that. The package publish itself all happens automatically though, when the PR lands in master, right? |
Yeah
On Tue, Dec 18, 2018 at 12:49 PM Stephen Belanger ***@***.***> wrote:
Ah, yep, I can do that. The package publish itself all happens
automatically though, when the PR lands in master, right?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#56 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AArcLgtkf4sXGzwqiK0eNpI26lFuqQBIks5u6VTagaJpZM4ZY-Lx>
.
--
Justin Field
fieldju@gmail.com
LinkedIn <https://www.linkedin.com/in/fieldju> | @fieldju
|
Should this be minor or patch? Seems more like bug-fix territory to me. 🤔 |
I'm ok with either
On Tue, Dec 18, 2018 at 1:02 PM Stephen Belanger ***@***.***> wrote:
Should this be minor or patch? Seems more like bug-fix territory to me. 🤔
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#56 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AArcLpneTWo6TDtNZH-38AhwkErNYAiuks5u6VfbgaJpZM4ZY-Lx>
.
--
Justin Field
fieldju@gmail.com
LinkedIn <https://www.linkedin.com/in/fieldju> | @fieldju
|
Sorry, not super clear on how all the release automation stuff fits together... What actually triggers the |
Yes, tags get created from the GitHub release dashboard. 👇 Below is an example |
BTW the automation integration with Lerna is a little weird, don't be alarmed when travis runs the tag build 2x, it will just release to NPM once. |
If adding several metrics at once, on the same interval, only the first will be reported in the initial report due to the immediate call to
reporter._reportMetricsWithInterval(...)
. By wrapping that in asetImmediate(...)
, any other metrics set in that tick should now also be included in the initial report.