question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Question: a new release?

See original GitHub issue

I’m so sorry to be asking this in an issue, but it seems like the best place for it. I see that since the release of 3.5.5 support for async hooks has been merged. I’m delighted, because this is really important to our setup! But it looks like that’ll be going into the next release. I’ve tried to figure out how to run from the master branch but it’s not as easy as just npm install <github_repo>#master, since there’s a pre-compilation step.

Are releases made at a regular interval, or just when it feels like it’s time for a release? Thanks!

Issue Analytics

  • State:open
  • Created 4 years ago
  • Reactions:6
  • Comments:12 (2 by maintainers)

github_iconTop GitHub Comments

3reactions
petkaantonovcommented, Jun 30, 2019

I was procrastinating on release to see if something comes up with the async hooks

2reactions
trmaphicommented, Dec 10, 2020

the Promise.allSettled() implementation in bluebird seems to be different from spec https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Promise/allSettled.

const promise1 = Promise.resolve('Resolved!');
const promise2 = Promise.reject('Rejected!');
const promise3 = Promise.resolve('Resolved!');
const promise4 = Promise.reject('Rejected!');

const promises = [promise1, promise2, promise3, promise4];
//Expect: 
//    [ { status: 'fulfilled', value: 'Resolved!' },
//      { status: 'rejected', reason: 'Rejected!' },
//      { status: 'fulfilled', value: 'Resolved!' },
//      { status: 'rejected', reason: 'Rejected!' } ]

//Result: 
//    [ PromiseInspection { _bitField: 33554432, _settledValueField: 'Resolved!' },
//      PromiseInspection { _bitField: 16777216, _settledValueField: 'Rejected!' },
//      PromiseInspection { _bitField: 33554432, _settledValueField: 'Resolved!' },
//      PromiseInspection { _bitField: 16777216, _settledValueField: 'Rejected!' } ]
const results = await Promise.allSettled(promises);
Read more comments on GitHub >

github_iconTop Results From Across the Web

What are specific questions to ask in a press release SME call?
Here are some questions to get you started ; General. What are we announcing? Why is it important? Who should care and why?...
Read more >
Reebok Question Colorways, Release Dates, Pricing | SBD
Allen Iverson's Reebok Question Mid “Nuggets” PE Releases November 25th · Mario Briguglio - Nov 10, 2022 ...
Read more >
5 Questions to Ask When Writing a Press Release
What should you include in a press release? You can answer this by asking five questions: 'who', 'what', 'why', 'when' and 'how'.
Read more >
10 Questions to Ask When Planning a Press Release
Is it newsworthy? In other words, why should readers care? · Who is your audience? · Is the news release optimized for search...
Read more >
5 Questions to Ask Before You Write Your Next Press Release
Are Press Releases Always the Answer? · Why are we doing this? · What message are we trying to convey? · Who are...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found