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

Move IndexedDB out of draft #2346

Merged
merged 4 commits into from
Dec 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 3 additions & 14 deletions features/draft/indexeddb.yml → features/indexeddb.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
# A known hard part here is that api.IDBFactory.open has a showstopper bug in
# some releases of Safari 14: https://bugs.webkit.org/show_bug.cgi?id=226547
# It's likely that api.IDBFactory.open should be marked as having an
# interruption (or partial_implementation) in support there. This would break
# consistency caniuse, however. To fix *that* would require PRs on both BCD and
# web-features. It's also probable that we would want to add a note to the
# feature about this fact, see:
# https://github.com/web-platform-dx/web-features/issues/557
#
# Unknown hard parts are that there may be other parts of IndexedDB with such
# issues. Someone who's knowledgeable about IndexedDB ought to author or review
# this feature.
draft_date: 2024-07-11
name: IndexedDB
mame: IndexedDB
description: The IndexedDB API is a local storage transactional object database.
spec: https://w3c.github.io/IndexedDB/
caniuse:
Expand All @@ -24,6 +11,8 @@ status:
- api.IDBCursor.continuePrimaryKey
- api.IDBCursor.key.binary_keys
- api.IDBIndex.getKey
# open() has a showstopper bug in some releases of Safari 14 https://bugs.webkit.org/show_bug.cgi?id=226547
- api.IDBFactory.open
compat_features:
- api.IDBCursor
- api.IDBCursor.worker_support
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@

status:
baseline: high
baseline_low_date: 2020-01-15
baseline_high_date: 2022-07-15
baseline_low_date: 2021-09-20
baseline_high_date: 2024-03-20
support:
chrome: "58"
chrome_android: "58"
edge: "79"
firefox: "51"
firefox_android: "51"
safari: "10.1"
safari_ios: "10.3"
safari: "15"
safari_ios: "15"
compat_features:
# baseline: high
# baseline_low_date: 2015-07-29
Expand Down
Loading