Skip to content
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

Return search results for partial matches #159

Closed
eminence opened this issue Jun 1, 2015 · 7 comments
Closed

Return search results for partial matches #159

eminence opened this issue Jun 1, 2015 · 7 comments
Labels
A-search C-bug 🐞 Category: unintended, undesired behavior E-help-wanted

Comments

@eminence
Copy link

eminence commented Jun 1, 2015

When you search for ssh you get the following results:

  • ssh2 -- Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.
  • fleet -- A client library for CoreOS's fleet.

When you search for 'libssh' you get the following results:

  • libssh -- bindings for libssh

When you search for libssh2 you get the following results:

  • libssh2-sys -- Native bindings to the libssh2 library
  • ssh2 -- Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc

With the exception of 'fleet' I expected to see all 3 results when I search for just "ssh". It seems as if the search text is being matched only on the description and not the package name?

@DanielKeep
Copy link

I just wasted hours writing a crate that already existed because "tempfile" doesn't show up when you search for "temp" or "file".

@azerupi
Copy link

azerupi commented Aug 14, 2015

I could be wrong, but think that at the moment crates are only returned on exact match with keywords, crate name or full words in the description.

If partial matches were returned too, it would already solve a lot of issues.
If you search for book you get 6 results, but if you search for boo you get nothing.

Also I think an exact match with the crate name should appear as the very first result.

@AlisdairO
Copy link

Could use a little influence from number of downloads as well - arguably if you search for 'random' you'd probably want the 'rand' crate at least appearing in the top two results. It's number 4 at the moment (so clearly not too bad!), but one could imagine other situations in which this would be worse, particularly as the number of crates grows.

I might see if I can find some time to take a look at search.

@nodakai
Copy link
Contributor

nodakai commented Feb 21, 2016

@eminence It is working for you now?

$ cargo search ssh
    Updating registry `https://github.com/rust-lang/crates.io-index`
ssh (0.1.4)         Bindings to libssh, a library to write clients and servers for both version 1 and 2 of the protocol. It can also parse SSH conf…
mush (0.1.1)        Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc. 
ssh2 (0.2.11)       Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc. 
actiondb (0.6.1)    A safe and efficient unstructured text (log) parsing library.
fleet (0.2.0)       A client library for CoreOS's fleet.
$ cargo search libssh
    Updating registry `https://github.com/rust-lang/crates.io-index`
libssh (0.0.1)    bindings for libssh
ssh (0.1.4)       Bindings to libssh, a library to write clients and servers for both version 1 and 2 of the protocol. It can also parse SSH conf…
$ cargo search libssh2
    Updating registry `https://github.com/rust-lang/crates.io-index`
libssh2-sys (0.1.36)    Native bindings to the libssh2 library
ssh2 (0.2.11)           Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc. 
mush (0.1.1)            Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc. 

ssh 0.1.4
Bindings to libssh, a library to write clients and servers for both version 1 and 2 of the protocol. It can also parse SSH config files and handle ProxyCommand automatically. Only the client part is i ...

mush 0.1.1
Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.

ssh2 0.2.11
Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.

actiondb 0.6.1
A safe and efficient unstructured text (log) parsing library.

fleet 0.2.0
A client library for CoreOS's fleet.

libssh 0.0.1
bindings for libssh

ssh 0.1.4
Bindings to libssh, a library to write clients and servers for both version 1 and 2 of the protocol. It can also parse SSH config files and handle ProxyCommand automatically. Only the client part is i ...

libssh2-sys 0.1.36
Native bindings to the libssh2 library

ssh2 0.2.11
Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.

mush 0.1.1
Bindings to libssh2 for interacting with SSH servers and executing remote commands, forwarding local ports, etc.

@DanielKeep And for you?

$ cargo search temp
    Updating registry `https://github.com/rust-lang/crates.io-index`
temp_utp (0.7.2)               A µTP (Micro/uTorrent Transport Library) library implemented in Rust
mkstemp (0.2.0)                A quick mkstemp/mkdtemp implementation for rust. Provides temp files and dirs.
java-properties (0.1.1)        A library for reading and writing Java properties files in Rust.
azure_sdk_for_rust (0.1.3)     Rust wrappers around Microsoft Azure REST APIs
schemamama_postgres (0.0.8)    PostgreSQL adapter for the Schemamama migration system
$ cargo search file
    Updating registry `https://github.com/rust-lang/crates.io-index`
file_diff (0.2.0)            An atomic utility for diffing files in testing
clap (2.1.1)                 A simple to use, efficient, and full featured  Command Line Argument Parser
librsync (0.1.2)             Bindings to librsync for calculating and applying network deltas exposed as Reader/Writer streams. 
file_logger (0.1.0)          A simple logger backend that outputs to a file.  This is alpha state.
doc_file (0.2.0)             Move your Rust crate's documentation into external files. 
xsv (0.9.11)                 A high performance CSV command line toolkit.
tar (0.4.3)                  A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract o…
vault (1.0.0)                A parser for Company of Heroes 2 replay files. Valid for replays generated since UKF release (version 19545).
yaml_file_handler (0.1.4)    A Yaml File Handler based on yaml-rust
caribon (0.7.1)              A repetition detector program and library

temp_utp 0.7.2
A µTP (Micro/uTorrent Transport Library) library implemented in Rust

mkstemp 0.2.0
A quick mkstemp/mkdtemp implementation for rust. Provides temp files and dirs.

java-properties 0.1.1
A library for reading and writing Java properties files in Rust.

azure_sdk_for_rust 0.1.3
Rust wrappers around Microsoft Azure REST APIs

schemamama_postgres 0.0.8
PostgreSQL adapter for the Schemamama migration system

Displaying 1-10 of 510 total results

file_diff 0.2.0
An atomic utility for diffing files in testing

clap 2.1.1
A simple to use, efficient, and full featured Command Line Argument Parser

librsync 0.1.2
Bindings to librsync for calculating and applying network deltas exposed as Reader/Writer streams.

file_logger 0.1.0
A simple logger backend that outputs to a file. This is alpha state.

doc_file 0.2.0
Move your Rust crate's documentation into external files.

xsv 0.9.11
A high performance CSV command line toolkit.

tar 0.4.3
A Rust implementation of a TAR file reader and writer. This library does not currently handle compression, but it is abstract over all I/O readers and writers. Additionally, great lengths are taken to ...

vault 1.0.0
A parser for Company of Heroes 2 replay files. Valid for replays generated since UKF release (version 19545).

yaml_file_handler 0.1.4
A Yaml File Handler based on yaml-rust

caribon 0.7.1
A repetition detector program and library

But the results from cargo search file is super confusing because it doesn't say it truncated the list of matches by the first 10. I had the same problem with cargo search time. I'm filing another ticket on it.

@DanielKeep
Copy link

@nodakai Well, no; temp doesn't show tempfile, and file has too many results now to be useful, even if the results might contain tempfile (I gave up checking around result number 110).

@nodakai
Copy link
Contributor

nodakai commented Feb 21, 2016

I see, so you're saying this package should have been found with the search for temp:

Yeah everyone would expect so.

I believe these SQL queries should be improved:

@carols10cents carols10cents added A-backend ⚙️ C-bug 🐞 Category: unintended, undesired behavior E-easy E-has-mentor and removed A-backend ⚙️ labels Aug 2, 2017
@carols10cents carols10cents changed the title smarter search results Return search results for partial matches Aug 2, 2017
bors added a commit that referenced this issue Apr 24, 2019
loosen search

To address #159,

It might be worth it to add a new flag for searching with the original behavior.

I have played around with adding a flag to the query params, `strict` to allow the original behavior. It is very much a viable option, I didn't want to make any UI changes w/o first checking in about what it should look like.
@sgrif
Copy link
Contributor

sgrif commented May 22, 2019

This was fixed by #1560

@sgrif sgrif closed this as completed May 22, 2019
bors added a commit that referenced this issue Dec 17, 2019
…itializers-2.1.1, r=Turbo87

Bump ember-load-initializers from 1.0.0 to 2.1.1

Bumps [ember-load-initializers](https://github.com/ember-cli/ember-load-initializers) from 1.0.0 to 2.1.1.
<details>
<summary>Release notes</summary>

*Sourced from [ember-load-initializers's releases](https://github.com/ember-cli/ember-load-initializers/releases).*

> ## Release 2.1.1
> #### 🐛 Bug Fix
> * [#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/205) Do not assume global variables are assigned to `self`. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### 🏠 Internal
> * [#159](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/159) Fixup eslint setup for typescript conversion. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### Committers: 1
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> ## Release 2.1.0
> #### 🚀 Enhancement
> * [#111](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/111) Add typescript support ([@&#8203;ro0gr](https://github.com/ro0gr))
>
> #### 📝 Documentation
> * [#125](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/125) Add more detailed explanation to README. ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> #### 🏠 Internal
> * [#77](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/77) TravisCI: Remove deprecated `sudo: false` option ([@&#8203;Turbo87](https://github.com/Turbo87))
> * [#73](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/73) Remove unused dependencies ([@&#8203;Turbo87](https://github.com/Turbo87))
>
> #### Committers: 4
> - Ruslan Hrabovyi ([@&#8203;ro0gr](https://github.com/ro0gr))
> - Tobias Bieniek ([@&#8203;Turbo87](https://github.com/Turbo87))
> - [[@&#8203;dependabot-preview](https://github.com/dependabot-preview)[bot]](https://github.com/apps/dependabot-preview)
> - abhilashlr ([@&#8203;abhilashlr](https://github.com/abhilashlr))
</details>
<details>
<summary>Changelog</summary>

*Sourced from [ember-load-initializers's changelog](https://github.com/ember-cli/ember-load-initializers/blob/master/CHANGELOG.md).*

> ## v2.1.1 (2019-11-02)
>
> #### 🐛 Bug Fix
> * [#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/205) Do not assume global variables are assigned to `self`. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### 🏠 Internal
> * [#159](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/159) Fixup eslint setup for typescript conversion. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### Committers: 1
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> ## v2.1.0 (2019-08-26)
>
> #### 🚀 Enhancement
> * [#111](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/111) Add typescript support ([@&#8203;ro0gr](https://github.com/ro0gr))
>
> #### 📝 Documentation
> * [#125](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/125) Add more detailed explanation to README. ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> #### 🏠 Internal
> * [#77](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/77) TravisCI: Remove deprecated `sudo: false` option ([@&#8203;Turbo87](https://github.com/Turbo87))
> * [#73](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/73) Remove unused dependencies ([@&#8203;Turbo87](https://github.com/Turbo87))
>
> #### Committers: 4
> - Ruslan Hrabovyi ([@&#8203;ro0gr](https://github.com/ro0gr))
> - Tobias Bieniek ([@&#8203;Turbo87](https://github.com/Turbo87))
> - [[@&#8203;dependabot-preview](https://github.com/dependabot-preview)[bot]](https://github.com/apps/dependabot-preview)
> - abhilashlr ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> ## v2.0.0 (2018-10-29)
>
> #### 💥 Breaking Change
> * [#57](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/57) Update ember-cli-babel to 7. ([@&#8203;rwjblue](https://github.com/rwjblue))
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Drop support for Node 4 ([@&#8203;loganrosen](https://github.com/loganrosen))
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Drop support for ember-cli prior to 2.12 ([@&#8203;loganrosen](https://github.com/loganrosen))
>
> #### 🚀 Enhancement
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Modernize to Ember CLI 3.5 blueprint ([@&#8203;loganrosen](https://github.com/loganrosen))
>
> #### 📝 Documentation
> * [#55](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/55) Fixing url typo ([@&#8203;thoov](https://github.com/thoov))
>
> #### Committers: 3
> - Logan Rosen ([@&#8203;loganrosen](https://github.com/loganrosen))
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
> - Travis Hoover ([@&#8203;thoov](https://github.com/thoov))
>
> ## [v1.1.0](https://github.com/ember-cli/ember-load-initializers/tree/v1.1.0) (2018-04-17)
> [Full Changelog](ember-cli/ember-load-initializers@v1.0.0...v1.1.0)
>
></tr></table> ... (truncated)
</details>
<details>
<summary>Commits</summary>

- [`9851a98`](ember-cli/ember-load-initializers@9851a98) Release 2.1.1
- [`3c0e3ff`](ember-cli/ember-load-initializers@3c0e3ff) Do not assume global variables are assigned to `self`. ([#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/issues/205))
- [`8a0dff8`](ember-cli/ember-load-initializers@8a0dff8) Pin engine.io subdependency to avoid local test issues on Node 6
- [`b79fb98`](ember-cli/ember-load-initializers@b79fb98) Do not assume global variables are assigned to `self`.
- [`6563435`](ember-cli/ember-load-initializers@6563435) Build(deps-dev): Bump release-it from 12.4.0 to 12.4.1
- [`6882dcc`](ember-cli/ember-load-initializers@6882dcc) Build(deps-dev): Bump eslint-plugin-ember from 7.0.0 to 7.1.0
- [`2a386ce`](ember-cli/ember-load-initializers@2a386ce) Build(deps-dev): Bump eslint-plugin-prettier from 3.1.0 to 3.1.1
- [`2a6f903`](ember-cli/ember-load-initializers@2a6f903) Build(deps-dev): Bump @typescript-eslint/eslint-plugin
- [`788b695`](ember-cli/ember-load-initializers@788b695) Build(deps-dev): Bump release-it from 12.3.6 to 12.4.0
- [`05351a6`](ember-cli/ember-load-initializers@05351a6) Build(deps-dev): Bump @typescript-eslint/parser from 2.2.0 to 2.3.0
- Additional commits viewable in [compare view](ember-cli/ember-load-initializers@v1.0.0...v2.1.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=ember-load-initializers&package-manager=npm_and_yarn&previous-version=1.0.0&new-version=2.1.1)](https://dependabot.com/compatibility-score.html?dependency-name=ember-load-initializers&package-manager=npm_and_yarn&previous-version=1.0.0&new-version=2.1.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

</details>
bors added a commit that referenced this issue Dec 17, 2019
…itializers-2.1.1, r=Turbo87

Bump ember-load-initializers from 1.0.0 to 2.1.1

Bumps [ember-load-initializers](https://github.com/ember-cli/ember-load-initializers) from 1.0.0 to 2.1.1.
<details>
<summary>Release notes</summary>

*Sourced from [ember-load-initializers's releases](https://github.com/ember-cli/ember-load-initializers/releases).*

> ## Release 2.1.1
> #### 🐛 Bug Fix
> * [#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/205) Do not assume global variables are assigned to `self`. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### 🏠 Internal
> * [#159](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/159) Fixup eslint setup for typescript conversion. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### Committers: 1
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> ## Release 2.1.0
> #### 🚀 Enhancement
> * [#111](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/111) Add typescript support ([@&#8203;ro0gr](https://github.com/ro0gr))
>
> #### 📝 Documentation
> * [#125](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/125) Add more detailed explanation to README. ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> #### 🏠 Internal
> * [#77](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/77) TravisCI: Remove deprecated `sudo: false` option ([@&#8203;Turbo87](https://github.com/Turbo87))
> * [#73](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/73) Remove unused dependencies ([@&#8203;Turbo87](https://github.com/Turbo87))
>
> #### Committers: 4
> - Ruslan Hrabovyi ([@&#8203;ro0gr](https://github.com/ro0gr))
> - Tobias Bieniek ([@&#8203;Turbo87](https://github.com/Turbo87))
> - [[@&#8203;dependabot-preview](https://github.com/dependabot-preview)[bot]](https://github.com/apps/dependabot-preview)
> - abhilashlr ([@&#8203;abhilashlr](https://github.com/abhilashlr))
</details>
<details>
<summary>Changelog</summary>

*Sourced from [ember-load-initializers's changelog](https://github.com/ember-cli/ember-load-initializers/blob/master/CHANGELOG.md).*

> ## v2.1.1 (2019-11-02)
>
> #### 🐛 Bug Fix
> * [#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/205) Do not assume global variables are assigned to `self`. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### 🏠 Internal
> * [#159](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/159) Fixup eslint setup for typescript conversion. ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> #### Committers: 1
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
>
> ## v2.1.0 (2019-08-26)
>
> #### 🚀 Enhancement
> * [#111](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/111) Add typescript support ([@&#8203;ro0gr](https://github.com/ro0gr))
>
> #### 📝 Documentation
> * [#125](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/125) Add more detailed explanation to README. ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> #### 🏠 Internal
> * [#77](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/77) TravisCI: Remove deprecated `sudo: false` option ([@&#8203;Turbo87](https://github.com/Turbo87))
> * [#73](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/73) Remove unused dependencies ([@&#8203;Turbo87](https://github.com/Turbo87))
>
> #### Committers: 4
> - Ruslan Hrabovyi ([@&#8203;ro0gr](https://github.com/ro0gr))
> - Tobias Bieniek ([@&#8203;Turbo87](https://github.com/Turbo87))
> - [[@&#8203;dependabot-preview](https://github.com/dependabot-preview)[bot]](https://github.com/apps/dependabot-preview)
> - abhilashlr ([@&#8203;abhilashlr](https://github.com/abhilashlr))
>
> ## v2.0.0 (2018-10-29)
>
> #### 💥 Breaking Change
> * [#57](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/57) Update ember-cli-babel to 7. ([@&#8203;rwjblue](https://github.com/rwjblue))
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Drop support for Node 4 ([@&#8203;loganrosen](https://github.com/loganrosen))
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Drop support for ember-cli prior to 2.12 ([@&#8203;loganrosen](https://github.com/loganrosen))
>
> #### 🚀 Enhancement
> * [#56](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/56) Modernize to Ember CLI 3.5 blueprint ([@&#8203;loganrosen](https://github.com/loganrosen))
>
> #### 📝 Documentation
> * [#55](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/pull/55) Fixing url typo ([@&#8203;thoov](https://github.com/thoov))
>
> #### Committers: 3
> - Logan Rosen ([@&#8203;loganrosen](https://github.com/loganrosen))
> - Robert Jackson ([@&#8203;rwjblue](https://github.com/rwjblue))
> - Travis Hoover ([@&#8203;thoov](https://github.com/thoov))
>
> ## [v1.1.0](https://github.com/ember-cli/ember-load-initializers/tree/v1.1.0) (2018-04-17)
> [Full Changelog](ember-cli/ember-load-initializers@v1.0.0...v1.1.0)
>
></tr></table> ... (truncated)
</details>
<details>
<summary>Commits</summary>

- [`9851a98`](ember-cli/ember-load-initializers@9851a98) Release 2.1.1
- [`3c0e3ff`](ember-cli/ember-load-initializers@3c0e3ff) Do not assume global variables are assigned to `self`. ([#205](https://github-redirect.dependabot.com/ember-cli/ember-load-initializers/issues/205))
- [`8a0dff8`](ember-cli/ember-load-initializers@8a0dff8) Pin engine.io subdependency to avoid local test issues on Node 6
- [`b79fb98`](ember-cli/ember-load-initializers@b79fb98) Do not assume global variables are assigned to `self`.
- [`6563435`](ember-cli/ember-load-initializers@6563435) Build(deps-dev): Bump release-it from 12.4.0 to 12.4.1
- [`6882dcc`](ember-cli/ember-load-initializers@6882dcc) Build(deps-dev): Bump eslint-plugin-ember from 7.0.0 to 7.1.0
- [`2a386ce`](ember-cli/ember-load-initializers@2a386ce) Build(deps-dev): Bump eslint-plugin-prettier from 3.1.0 to 3.1.1
- [`2a6f903`](ember-cli/ember-load-initializers@2a6f903) Build(deps-dev): Bump @typescript-eslint/eslint-plugin
- [`788b695`](ember-cli/ember-load-initializers@788b695) Build(deps-dev): Bump release-it from 12.3.6 to 12.4.0
- [`05351a6`](ember-cli/ember-load-initializers@05351a6) Build(deps-dev): Bump @typescript-eslint/parser from 2.2.0 to 2.3.0
- Additional commits viewable in [compare view](ember-cli/ember-load-initializers@v1.0.0...v2.1.1)
</details>
<br />

[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=ember-load-initializers&package-manager=npm_and_yarn&previous-version=1.0.0&new-version=2.1.1)](https://dependabot.com/compatibility-score.html?dependency-name=ember-load-initializers&package-manager=npm_and_yarn&previous-version=1.0.0&new-version=2.1.1)

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.

[//]: # (dependabot-automerge-start)
[//]: # (dependabot-automerge-end)

---

**Note:** This repo was added to Dependabot recently, so you'll receive a maximum of 5 PRs for your first few update runs. Once an update run creates fewer than 5 PRs we'll remove that limit.

You can always request more updates by clicking `Bump now` in your [Dependabot dashboard](https://app.dependabot.com).

<details>
<summary>Dependabot commands and options</summary>
<br />

You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
- `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme

Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Pull request limits (per update run and/or open at any time)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)

</details>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-search C-bug 🐞 Category: unintended, undesired behavior E-help-wanted
Projects
None yet
Development

No branches or pull requests

7 participants