8000 docs: note session.clearAuthCache planned change for 7.0 by nornagon · Pull Request #18185 · electron/electron · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

docs: note session.clearAuthCache planned change for 7.0 #18185

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

Merged
merged 2 commits into from
May 9, 2019
Merged
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
8000
Diff view
15 changes: 14 additions & 1 deletion docs/api/breaking-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,19 @@ Breaking changes will be documented here, and deprecation warnings added to JS c

The `FIXME` string is used in code comments to denote things that should be fixed for future releases. See https://github.com/electron/electron/search?q=fixme

## Planned Breaking API Changes (7.0)

### `session.clearAuthCache(options)`

The `session.clearAuthCache` API no longer accepts options for what to clear, and instead unconditionally clears the whole cache.

```js
// Deprecated
session.clearAuthCache({ type: 'password' })
// Replace with
session.clearAuthCache()
```

## Planned Breaking API Changes (6.0)

### `win.setMenu(null)`
Expand Down Expand Up @@ -81,7 +94,7 @@ powerMonitor.querySystemIdleTime(callback)
const idleTime = getSystemIdleTime()
```

## `app.enableMixedSandbox`
### `app.enableMixedSandbox`

```js
// Deprecated
Expand Down
0