Eunjae Lee

Results 24 issues of Eunjae Lee

When using `toReleaseBranch` strategy, there can be a possibility that the working branch is protected. It means after release, when Ship.js tries to merge the release branch back to the...

`--retry` It prepares a PR for the latest version again. It can be used when `shipjs trigger` somehow fails on CI, you add commits to fix it, and want to...

``` // ship.js.config { commentOnGitHubAfterRelease: true, // this name is totally temporary } ``` With `commentOnGitHubAfterRelease: true`, at the end of `yarn release:trigger`, Ship.js will go to all the related...

After updating changelog, Ship.js will pause and give user to check&update the changelog. User can open another terminal or editor to update it. When everything is okay, user can hit...

[List pull requests associated with commit ](https://developer.github.com/v3/repos/commits/#list-pull-requests-associated-with-commit) For now, the condition to trigger release is ``` correctCommitMessage && correctBranch ``` (https://github.com/algolia/shipjs/blob/master/packages/shipjs-lib/src/lib/config/defaultConfig.js#L88-L107) What if it becomes ``` (correctCommitMessage || prLabeled) &&...

## 🐛 Bug description Insights middleware sometimes fails to initialize insightsClient before the first event. [Here](https://github.com/algolia/instantsearch.js/blob/master/src/middlewares/createInsightsMiddleware.ts#L41:L41) insights middleware checks if `insightsClient` is initialized (asynchronously). If not, it initializes it. However...

Type: Bug
Library: InstantSearch.js
Feature: Insights

## Summary This PR adds experimental composition APIs. For now, useConfigure, useRefinementList, useSearchBox, and useConnector are implemented. In case of `useRefinementList`, I referred to François' PoC with React InstantSearch. ###...

## Summary Hello, Vue InstantSearch users! Can you let us know if you're interested to have composition APIs as part of Vue InstantSearch? We'd like to learn what kind of...

When we look at the documentation like [this](https://www.algolia.com/doc/api-reference/widgets/instantsearch/vue/#widget-param-routing), we guide users to import things from `InstantSearch.js`. InstantSearch.js is a dependency inside Vue InstantSearch and users don't have to know that....