Skip to content

Commit

Permalink
Merge pull request #3 from boydaihungst/feat/fix-storage
Browse files Browse the repository at this point in the history
feat: update storage provider
  • Loading branch information
boydaihungst authored Mar 9, 2023
2 parents b1e75f6 + 06b487a commit 7ea223e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "altair-graphql-plugin-github-sync",
"version": "1.0.6",
"version": "1.0.7",
"display_name": "Altair Github Sync",
"description": "Save altair collections to github gist",
"author_email": "[email protected]",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "altair-graphql-plugin-github-sync",
"version": "1.0.6",
"version": "1.0.7",
"private": false,
"description": "Altair Sync Gist plugin",
"scripts": {
Expand All @@ -20,7 +20,7 @@
"@emotion/core": "^10.0.35",
"@types/uuid": "^8.3.3",
"axios": "^0.21.1",
"dexie": "^3.2.0",
"dexie": "^3.2.2",
"lodash": "^4.17.21",
"uuid": "^8.3.2",
"vue": "3.2.26"
Expand Down
3 changes: 2 additions & 1 deletion src/providers/StorageService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export class StorageService extends Dexie {
*
* @param databaseVersion https://github.com/altair-graphql/altair/blob/master/packages/altair-app/src/app/modules/altair/services/storage/storage.service.ts
*/
dexieSchemaVersion = 4;
dexieSchemaVersion = 5;

constructor() {
super('AltairDB');
Expand All @@ -40,6 +40,7 @@ export class StorageService extends Dexie {
queryCollections: '++id, title, parentPath',
appState: 'key',
selectedFiles: 'id, windowId',
localActionLogs: '++id',
});
}

Expand Down
14 changes: 7 additions & 7 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1229,9 +1229,9 @@ camelcase@^5.3.1:
integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==

caniuse-lite@^1.0.30001272, caniuse-lite@^1.0.30001280:
version "1.0.30001286"
resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001286.tgz#3e9debad420419618cfdf52dc9b6572b28a8fff6"
integrity sha512-zaEMRH6xg8ESMi2eQ3R4eZ5qw/hJiVsO/HlLwniIwErij0JDr9P+8V4dtx1l+kLq6j3yy8l8W4fst1lBnat5wQ==
version "1.0.30001464"
resolved "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001464.tgz"
integrity sha512-oww27MtUmusatpRpCGSOneQk2/l5czXANDSFvsc7VuOQ86s3ANhZetpwXNf1zY/zdfP63Xvjz325DAdAoES13g==

chalk@^2.0.0, chalk@^2.0.1, chalk@^2.4.1, chalk@^2.4.2:
version "2.4.2"
Expand Down Expand Up @@ -1717,10 +1717,10 @@ detective@^5.2.0:
defined "^1.0.0"
minimist "^1.1.1"

dexie@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.2.0.tgz#a1b0267b111f9422c4126da90d6b121b1deabeab"
integrity sha512-OpS8ss1CLHYAhxRu6hT+/Gt1uLhKCf0O18xHBdRGlemOWXXRiiOZ0ty1/bACIJzGt1DGmvarzrPwYYt9EkRZfw==
dexie@^3.2.2:
version "3.2.3"
resolved "https://registry.yarnpkg.com/dexie/-/dexie-3.2.3.tgz#f35c91ca797599df8e771b998e9ae9669c877f8c"
integrity sha512-iHayBd4UYryDCVUNa3PMsJMEnd8yjyh5p7a+RFeC8i8n476BC9wMhVvqiImq5zJZJf5Tuer+s4SSj+AA3x+ZbQ==

didyoumean@^1.2.2:
version "1.2.2"
Expand Down

0 comments on commit 7ea223e

Please sign in to comment.