They do read this and other topics and they do fulfill requests as you can see by taking a look at the road map and the features they already have added or have plans to add them:
So, be patient.
They do read this and other topics and they do fulfill requests as you can see by taking a look at the road map and the features they already have added or have plans to add them:
So, be patient.
Thanks for pointing me to the roadmap. It helped me decide to move away from BW subscription and try other vendorsâ solutions. Hopefully when they implement this simple feature I will be back, because otherwise BW is really good.
+1 this feature to sort by modified date. Please prioritize this. Seems like it would be incredibly easy, maybe a 5-point story on your product management backlog.
This is not a substitute for having a proper sort feature in the GUI, but it still might be usefulâŚ
Hereâs a Bash one-liner that you can use to output a list your vault items in order of modification date (newest to oldest) using the Bitwarden cli + jq
$ bw list items | jq -r '
map(. + {
e: (.revisionDate | sub("\\.[0-9]+Z$"; "Z") | strptime("%Y-%m-%dT%H:%M:%SZ") | mktime),
d: (.revisionDate[0:10])
}) |
sort_by( -(.e)) | .[] |
.name + " (" + .d + ")"
'
How is this not a feature? With how many apps and redirects that donât have clearly labeled domains, etc - there have been so many times where I created a password and then canât find it.
Is there another password manager with this feature?
still waiting for this function
Hi! Is this a feature that we are still interested in? @tgreer If thatâs the case I might be able to look into a working solution.
As the OP 3 years ago, I ensure you I am still highly interested in this feature! (and it seems a lot of people are interested too)
@fredrikburmester indeed! This would be great. If you can start a topic in the contributions section with your ideas/approach, we can give feedback and help you get started
Thanks for the jq script!
I found this a little easier to digest:
$ bw list items |
jq 'sort_by(.revisionDate) | .[-10:]'
sub
/ strptime
/ mktime
stuff|
works as a line continuation without a trailing \
[-10:]
lets you slice the last 10 items, so the most recent should end up right above your next promptreverse
if you want to keep the sorting of your original, then pipe to | .[:10]
to avoid the need for head
+1. This is one of the things that keeps me from migrating from Enpass.
There isnât even an âall itemsâ view at all, let alone no sort. Makes it a lot less handy compared to Enpass, especially on mobile.
I have 1700+ entries.
+1. This would make maintaining and using the vault MUCH easier. I hesitate to complete my migration to BW without this fundamental feature.
I donât even see a way to view the last modified date on items in the browser extension. Am I missing something?
Feature name:
âNewly Addedâ or âNewly Added Itemsâ
Feature Function:
Sometimes when I add a new login, I forget to double check the auto URL link. This leads to the added item being lost in my vault.
If there was a âNewly Addedâ list, that would make it much easier for me to find and edit the credentials.
I was hoping you could add the ability to sort by the following on top of the current âsort by Nameâ:
Sort by Category
Sort by Date Created
Sort by Date Modified
Sort by Vault
The reason I am asking for this feature is that recently I created a new password for an obscure training subscription that I only needed to use once. The problem I had was that I forgot the name of the website where I had put in my card details to gain access to the training AND I didnt want to use this company after realising their product was rubbish. They gave 1 month free to test their product but as I didnt like it I forgot about it until now when the charges for the subscription was going to kick in. I then had to frantically go through all the objects in my vault searching for keywords to try and figure out what this training subscription was. I eventually found it BUT this couldâve been a lot easier if we had the ability to âsort by date createdâ or âsort by date modifiedâ. I hope you understand what I mean by this.
Iâm surprised so basic a feature doesnât already exist - the data are there so it should be simple to implement. I also found it weird when I imported my 1Password vault export that it didnât preserve the date created / updated times on import into Bitwarden that were included in that export file.
May I add another sort feature I used to like in 1Password was âSort by Password Strengthâ - so I could prioritise which account passwords to refresh with stronger ones.
Itâs a database, surely it cant be difficult to provide a sort facility?
Please, as a 1Password convert for all the cited reasons, I really do miss this, and judging by the thread, so do lots of others.
Surely it cant take major recoding as all the info is there?
Just wanted to share some progress on this since I know a lot of you want this feature.
Add me to the list of people that really want this. And make sure it includes sorting by the date last used - I want to see which logins havenât been used in a long time.
I am glad I found this request. I would like to add to this:
Sorting by NAME of the entry. Right now the searched results are mixed up by last used or most used order. I would like to be able to sort the results the same way as Lastpass. If I have several Google logins, where I call them A1 Google, A2 Google, B1 Google and B2 Google, then searching for Google should return the results in this order, and not in mixed up order which is by the last date used or most used, whichever applies in bitwarden.
I posted about it in detail also here:
https://www.reddit.com/r/Bitwarden/comments/s1gass/is_simplifying_search_something_on_the_bitwarden/hwnyu3b/?context=3
Thanks.