couchdb-view-tester
couchdb-view-tester copied to clipboard
chore(deps): bump pouchdb from 3.6.0 to 7.2.2
Bumps pouchdb from 3.6.0 to 7.2.2.
Release notes
Sourced from pouchdb's releases.
7.2.2
No release notes provided.
7.2.1
New indexeddb adapter
#7618 - We are excited to announce the release of a new adapter for indexeddb access which uses native indexes rather than custom tables. This is an additional adapter rather than an upgrade so you can continue using "idb" for the old version or choose to switch to "indexeddb". The new version is not backwards compatible and data migration is left as an exercise for the reader.
Other changes
For a full changelog from 7.1.1 to 7.2.1, please see the releases page or view the latest commits.
Get in touch
As always, we welcome feedback from the community and would love to hear what you think of this release as well as PouchDB's future direction. Please don't hesitate to file issues or get in touch. And of course, a big thanks to all of our new and existing contributors!
NB: There was an issue while publishing which broke the 7.2.0 release - use this release instead.
7.1.1
we have another PouchDB release. The main improvements in this release are bug fixes and dependency updates. For a full changelog from 7.0 to 7.1.0, please see the releases page or view the latest commits.
Get in touch
As always, we welcome feedback from the community and would love to hear what you think of this release as well as PouchDB's future direction. Please don't hesitate to file issues or get in touch. And of course, a big thanks to all of our new and existing contributors!
If you wondering where is 7.1.0, I had a slight publishing issue so the easiest was to bump it up to 7.1.1 to do a fresh deploy.
7.0.0
As promised back in January it is time to drop WebSQL from our default builds. This not only lets us focus our development efforts on a single engine but along with the other changes explained below reduces the default PouchDB package size from 148KB to 122KB, thats 17.5% smaller!
Removed WebSQL
#6943 - The WebSQL adapter is still available to download and use, it will no longer be available as part of a default PouchDB build and will eventually be moved to the pouchdb-community repo. If you need to migrate your users from WebSQL to IndexeDB then there is some advice available in our previous release post.
Removed Promise Polyfill
#6945 - Including our own Promise polyfill means larger bundles when most apps already include their own polyfill if they need it. So if you support browsers which do not support Promises natively you will need to include a polyfill yourself. We use promise-polyfill and have found it to work great.
Switch to fetch
#6944 - This is another API that may need polyfilled if you use PouchDB and support IE, we use whatwg-fetch. Switching to fetch has allowed us to expose the ability to intercept the requests PouchDB makes for more flexibility, such as:
var db = new PouchDB('http://example.com/dbname', { fetch: function (url, opts) { opts.headers.set('X-Some-Special-Header', 'foo'); return PouchDB.fetch(url, opts); } </tr></table>
... (truncated)
Commits
5669a5dbuild 7.2.2b766896(#8044) - Mark stale issues as stale0dee738Create stale.ymladc1800(#8134) - filter with regex for multifield indexes8442c1a(#8145) - fix: upgrade fetch-cookie from 0.10.0 to 0.10.1f3301b4(#8146) - fix: docs/Gemfile to reduce vulnerabilities3955d31(#8121) - Remove outdated section about deterministic revisionsb824062(#8141) - fix: upgrade level-codec from 9.0.1 to 9.0.28fe0388(#8136) - fix: upgrade through2 from 3.0.1 to 3.0.2b2ef231(#8131) - fix: upgrade fetch-cookie from 0.9.1 to 0.10.0- Additional commits viewable in compare view
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 commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill 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 versionwill 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 dependencywill 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 labelswill set the current labels as the default for future PRs for this repo and language@dependabot use these reviewerswill set the current reviewers as the default for future PRs for this repo and language@dependabot use these assigneeswill set the current assignees as the default for future PRs for this repo and language@dependabot use this milestonewill set the current milestone as the default for future PRs for this repo and language
You can disable automated security fix PRs for this repo from the Security Alerts page.