From 8fb25646bdbd0a9269274a6ce33e123ae04545cb Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Wed, 9 Mar 2022 13:13:03 +1300 Subject: [PATCH 01/10] Initial pass: reset pane width on browser resize --- shared/naturalcrit/splitPane/splitPane.jsx | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 1b4cee5ae..6d4dc95c4 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -10,7 +10,6 @@ const SplitPane = createClass({ return { storageKey : 'naturalcrit-pane-split', onDragFinish : function(){} //fires when dragging - }; }, getInitialState : function() { @@ -26,6 +25,17 @@ const SplitPane = createClass({ size : paneSize }); } + window.addEventListener('resize', this.resetSize); + }, + + componentWillUnmount : function() { + window.removeEventListener('resize', this.resetSize); + }, + + resetSize : function() { + this.setState({ + size : window.innerWidth / 2 + }); }, handleUp : function(){ From 39d338e5bffeb89bf816730a713efecc9b401a0d Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Wed, 9 Mar 2022 13:19:07 +1300 Subject: [PATCH 02/10] Reset position in local storage on divider reset --- shared/naturalcrit/splitPane/splitPane.jsx | 1 + 1 file changed, 1 insertion(+) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 6d4dc95c4..12ed7c8cf 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -33,6 +33,7 @@ const SplitPane = createClass({ }, resetSize : function() { + window.localStorage.removeItem(this.props.storageKey); this.setState({ size : window.innerWidth / 2 }); From f8abca6053323ead554cfb55054019544394a43c Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Wed, 9 Mar 2022 16:45:21 +1300 Subject: [PATCH 03/10] Formatting change - space out functions correctly --- shared/naturalcrit/splitPane/splitPane.jsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 12ed7c8cf..1e539495c 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -12,12 +12,14 @@ const SplitPane = createClass({ onDragFinish : function(){} //fires when dragging }; }, + getInitialState : function() { return { size : null, isDragging : false }; }, + componentDidMount : function() { const paneSize = window.localStorage.getItem(this.props.storageKey); if(paneSize){ From e44bbae07a767af9958a2cc0766db88ea8ab47b5 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Wed, 9 Mar 2022 17:55:24 +1300 Subject: [PATCH 04/10] Use percentage based positioning, not reset --- shared/naturalcrit/splitPane/splitPane.jsx | 34 +++++++++++++++------- 1 file changed, 23 insertions(+), 11 deletions(-) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 1e539495c..37b23e57d 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -15,8 +15,9 @@ const SplitPane = createClass({ getInitialState : function() { return { - size : null, - isDragging : false + size : null, + screenWidth : 0, + isDragging : false }; }, @@ -24,23 +25,34 @@ const SplitPane = createClass({ const paneSize = window.localStorage.getItem(this.props.storageKey); if(paneSize){ this.setState({ - size : paneSize + size : paneSize, + screenWidth : window.innerWidth }); } - window.addEventListener('resize', this.resetSize); + window.addEventListener('resize', this.changeSize); }, componentWillUnmount : function() { - window.removeEventListener('resize', this.resetSize); + window.removeEventListener('resize', this.changeSize); }, - resetSize : function() { - window.localStorage.removeItem(this.props.storageKey); + changeSize : function() { + const oldWidth = this.state.screenWidth; + const oldLoc = this.state.size; + const newLoc = this.limitPosition(window.innerWidth * (oldLoc / oldWidth)); this.setState({ - size : window.innerWidth / 2 + size : newLoc, + screenWidth : window.innerWidth }); }, + limitPosition : function(x) { + const minWidth = 1; + const maxWidth = window.innerWidth - 13; + const result = Math.min(maxWidth, Math.max(minWidth, x)); + return result; + }, + handleUp : function(){ if(this.state.isDragging){ this.props.onDragFinish(this.state.size); @@ -48,16 +60,16 @@ const SplitPane = createClass({ } this.setState({ isDragging: false }); }, + handleDown : function(){ this.setState({ isDragging: true }); //this.unFocus() }, + handleMove : function(e){ if(!this.state.isDragging) return; - const minWidth = 1; - const maxWidth = window.innerWidth - 13; - const newSize = Math.min(maxWidth, Math.max(minWidth, e.pageX)); + const newSize = this.limitPosition(e.pageX); this.setState({ size : newSize }); From a6e956472fd9e086920ad31ad0133951acba9297 Mon Sep 17 00:00:00 2001 From: LUCASTUCIOUS Date: Thu, 3 Mar 2022 14:47:01 +0100 Subject: [PATCH 05/10] Fix #1749 - ToC linking in pdf --- themes/5ePhb.style.less | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/themes/5ePhb.style.less b/themes/5ePhb.style.less index 6b104eadd..0ca89693b 100644 --- a/themes/5ePhb.style.less +++ b/themes/5ePhb.style.less @@ -658,7 +658,7 @@ body { margin-bottom : 0.3cm; } a{ - display : table; + display : inline; color : inherit; text-decoration : none; &:hover{ From e85975308fd014e2406de75c0a661e707dec12eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 03:02:20 +0000 Subject: [PATCH 06/10] Bump @babel/core from 7.17.7 to 7.17.8 Bumps [@babel/core](https://github.com/babel/babel/tree/HEAD/packages/babel-core) from 7.17.7 to 7.17.8. - [Release notes](https://github.com/babel/babel/releases) - [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md) - [Commits](https://github.com/babel/babel/commits/v7.17.8/packages/babel-core) --- updated-dependencies: - dependency-name: "@babel/core" dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 46 +++++++++++++++++++++++----------------------- package.json | 2 +- 2 files changed, 24 insertions(+), 24 deletions(-) diff --git a/package-lock.json b/package-lock.json index 49bee85e6..c743c0fe8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9,7 +9,7 @@ "hasInstallScript": true, "license": "MIT", "dependencies": { - "@babel/core": "^7.17.7", + "@babel/core": "^7.17.8", "@babel/plugin-transform-runtime": "^7.17.0", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", @@ -85,17 +85,17 @@ } }, "node_modules/@babel/core": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.7.tgz", - "integrity": "sha512-djHlEfFHnSnTAcPb7dATbiM5HxGOP98+3JLBZtjRb5I7RXrw7kFRoG2dXM8cm3H+o11A8IFH/uprmJpwFynRNQ==", + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz", + "integrity": "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==", "dependencies": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.17.7", "@babel/helper-compilation-targets": "^7.17.7", "@babel/helper-module-transforms": "^7.17.7", - "@babel/helpers": "^7.17.7", - "@babel/parser": "^7.17.7", + "@babel/helpers": "^7.17.8", + "@babel/parser": "^7.17.8", "@babel/template": "^7.16.7", "@babel/traverse": "^7.17.3", "@babel/types": "^7.17.0", @@ -509,9 +509,9 @@ } }, "node_modules/@babel/helpers": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.7.tgz", - "integrity": "sha512-TKsj9NkjJfTBxM7Phfy7kv6yYc4ZcOo+AaWGqQOKTPDOmcGkIFb5xNA746eKisQkm4yavUYh4InYM9S+VnO01w==", + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz", + "integrity": "sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==", "dependencies": { "@babel/template": "^7.16.7", "@babel/traverse": "^7.17.3", @@ -564,9 +564,9 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "node_modules/@babel/parser": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.7.tgz", - "integrity": "sha512-bm3AQf45vR4gKggRfvJdYJ0gFLoCbsPxiFLSH6hTVYABptNHY6l9NrhnucVjQ/X+SPtLANT9lc0fFhikj+VBRA==", + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz", + "integrity": "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==", "bin": { "parser": "bin/babel-parser.js" }, @@ -13120,17 +13120,17 @@ "integrity": "sha512-p8pdE6j0a29TNGebNm7NzYZWB3xVZJBZ7XGs42uAKzQo8VQ3F0By/cQCtUEABwIqw5zo6WA4NbmxsfzADzMKnQ==" }, "@babel/core": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.7.tgz", - "integrity": "sha512-djHlEfFHnSnTAcPb7dATbiM5HxGOP98+3JLBZtjRb5I7RXrw7kFRoG2dXM8cm3H+o11A8IFH/uprmJpwFynRNQ==", + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.17.8.tgz", + "integrity": "sha512-OdQDV/7cRBtJHLSOBqqbYNkOcydOgnX59TZx4puf41fzcVtN3e/4yqY8lMQsK+5X2lJtAdmA+6OHqsj1hBJ4IQ==", "requires": { "@ampproject/remapping": "^2.1.0", "@babel/code-frame": "^7.16.7", "@babel/generator": "^7.17.7", "@babel/helper-compilation-targets": "^7.17.7", "@babel/helper-module-transforms": "^7.17.7", - "@babel/helpers": "^7.17.7", - "@babel/parser": "^7.17.7", + "@babel/helpers": "^7.17.8", + "@babel/parser": "^7.17.8", "@babel/template": "^7.16.7", "@babel/traverse": "^7.17.3", "@babel/types": "^7.17.0", @@ -13433,9 +13433,9 @@ } }, "@babel/helpers": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.7.tgz", - "integrity": "sha512-TKsj9NkjJfTBxM7Phfy7kv6yYc4ZcOo+AaWGqQOKTPDOmcGkIFb5xNA746eKisQkm4yavUYh4InYM9S+VnO01w==", + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.17.8.tgz", + "integrity": "sha512-QcL86FGxpfSJwGtAvv4iG93UL6bmqBdmoVY0CMCU2g+oD2ezQse3PT5Pa+jiD6LJndBQi0EDlpzOWNlLuhz5gw==", "requires": { "@babel/template": "^7.16.7", "@babel/traverse": "^7.17.3", @@ -13478,9 +13478,9 @@ } }, "@babel/parser": { - "version": "7.17.7", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.7.tgz", - "integrity": "sha512-bm3AQf45vR4gKggRfvJdYJ0gFLoCbsPxiFLSH6hTVYABptNHY6l9NrhnucVjQ/X+SPtLANT9lc0fFhikj+VBRA==" + "version": "7.17.8", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.17.8.tgz", + "integrity": "sha512-BoHhDJrJXqcg+ZL16Xv39H9n+AqJ4pcDrQBGZN+wHxIysrLZ3/ECwCBUch/1zUNhnsXULcONU3Ei5Hmkfk6kiQ==" }, "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.16.7", diff --git a/package.json b/package.json index 477cd5b65..ad4f640d5 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ ] }, "dependencies": { - "@babel/core": "^7.17.7", + "@babel/core": "^7.17.8", "@babel/plugin-transform-runtime": "^7.17.0", "@babel/preset-env": "^7.16.11", "@babel/preset-react": "^7.16.7", From 257262e3cc9545d708abcf914c052cc835a09b07 Mon Sep 17 00:00:00 2001 From: "G.Ambatte" Date: Tue, 22 Mar 2022 10:26:29 +1300 Subject: [PATCH 07/10] Allow divider to grow back to original position --- shared/naturalcrit/splitPane/splitPane.jsx | 21 ++++++++++++++------- 1 file changed, 14 insertions(+), 7 deletions(-) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index 37b23e57d..cefc0ecf0 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -26,6 +26,7 @@ const SplitPane = createClass({ if(paneSize){ this.setState({ size : paneSize, + dividerSize : paneSize, screenWidth : window.innerWidth }); } @@ -37,19 +38,24 @@ const SplitPane = createClass({ }, changeSize : function() { - const oldWidth = this.state.screenWidth; const oldLoc = this.state.size; - const newLoc = this.limitPosition(window.innerWidth * (oldLoc / oldWidth)); + const oldWidth = this.state.screenWidth; + let newLoc = oldLoc; + // Allow divider to increase in size to original position + if(window.innerWidth > oldWidth) { + newLoc = Math.min(oldLoc * (window.innerWidth / this.state.screenWidth), this.state.dividerSize); + } + // Limit current position to between 10% and 90% of visible space + newLoc = this.limitPosition(newLoc, 0.1*(window.innerWidth-13), 0.9*(window.innerWidth-13)); + this.setState({ size : newLoc, screenWidth : window.innerWidth }); }, - limitPosition : function(x) { - const minWidth = 1; - const maxWidth = window.innerWidth - 13; - const result = Math.min(maxWidth, Math.max(minWidth, x)); + limitPosition : function(x, min = 1, max = window.innerWidth - 13) { + const result = Math.round(Math.min(max, Math.max(min, x))); return result; }, @@ -71,7 +77,8 @@ const SplitPane = createClass({ const newSize = this.limitPosition(e.pageX); this.setState({ - size : newSize + size : newSize, + dividerSize : newSize }); }, /* From e4e6b5426edba98470dcd375e71f964a3eb686cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Mar 2022 03:01:23 +0000 Subject: [PATCH 08/10] Bump mongoose from 6.2.7 to 6.2.8 Bumps [mongoose](https://github.com/Automattic/mongoose) from 6.2.7 to 6.2.8. - [Release notes](https://github.com/Automattic/mongoose/releases) - [Changelog](https://github.com/Automattic/mongoose/blob/master/CHANGELOG.md) - [Commits](https://github.com/Automattic/mongoose/compare/6.2.7...6.2.8) --- updated-dependencies: - dependency-name: mongoose dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 49bee85e6..67359ec5a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -32,7 +32,7 @@ "marked-extended-tables": "^1.0.3", "markedLegacy": "npm:marked@^0.3.19", "moment": "^2.29.1", - "mongoose": "^6.2.7", + "mongoose": "^6.2.8", "nanoid": "3.3.1", "nconf": "^0.11.3", "query-string": "7.1.1", @@ -9312,9 +9312,9 @@ } }, "node_modules/mongoose": { - "version": "6.2.7", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.2.7.tgz", - "integrity": "sha512-yqTZcM3u0+aLzl6cirtXy6vr24kt+kFyTucCQ3pyncvO1jGn/M1R09qkC/v54QoPXeVJdpcuS5eQWn0NLlDvKA==", + "version": "6.2.8", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.2.8.tgz", + "integrity": "sha512-Wq6HG0sOJEQHp5YqMlxrnf93vBFwdY2zlAwqI97EPPSt69kiVV21pTv4cDanrCNWi4upG8ajQ/p9jpDjcECjkQ==", "dependencies": { "bson": "^4.2.2", "kareem": "2.3.4", @@ -20160,9 +20160,9 @@ } }, "mongoose": { - "version": "6.2.7", - "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.2.7.tgz", - "integrity": "sha512-yqTZcM3u0+aLzl6cirtXy6vr24kt+kFyTucCQ3pyncvO1jGn/M1R09qkC/v54QoPXeVJdpcuS5eQWn0NLlDvKA==", + "version": "6.2.8", + "resolved": "https://registry.npmjs.org/mongoose/-/mongoose-6.2.8.tgz", + "integrity": "sha512-Wq6HG0sOJEQHp5YqMlxrnf93vBFwdY2zlAwqI97EPPSt69kiVV21pTv4cDanrCNWi4upG8ajQ/p9jpDjcECjkQ==", "requires": { "bson": "^4.2.2", "kareem": "2.3.4", diff --git a/package.json b/package.json index 477cd5b65..847f57b13 100644 --- a/package.json +++ b/package.json @@ -70,7 +70,7 @@ "marked-extended-tables": "^1.0.3", "markedLegacy": "npm:marked@^0.3.19", "moment": "^2.29.1", - "mongoose": "^6.2.7", + "mongoose": "^6.2.8", "nanoid": "3.3.1", "nconf": "^0.11.3", "query-string": "7.1.1", From 8bab346cbb4db7f7ef725dce4ece83b9fbdbcd4f Mon Sep 17 00:00:00 2001 From: Trevor Buckner Date: Wed, 23 Mar 2022 16:21:37 -0400 Subject: [PATCH 09/10] Change var names, simplify resize logic, limit on page refresh --- shared/naturalcrit/splitPane/splitPane.jsx | 46 ++++++++++------------ 1 file changed, 20 insertions(+), 26 deletions(-) diff --git a/shared/naturalcrit/splitPane/splitPane.jsx b/shared/naturalcrit/splitPane/splitPane.jsx index cefc0ecf0..4d138e30b 100644 --- a/shared/naturalcrit/splitPane/splitPane.jsx +++ b/shared/naturalcrit/splitPane/splitPane.jsx @@ -15,42 +15,36 @@ const SplitPane = createClass({ getInitialState : function() { return { - size : null, - screenWidth : 0, - isDragging : false + currentDividerPos : null, + windowWidth : 0, + isDragging : false }; }, componentDidMount : function() { - const paneSize = window.localStorage.getItem(this.props.storageKey); - if(paneSize){ + const dividerPos = window.localStorage.getItem(this.props.storageKey); + if(dividerPos){ this.setState({ - size : paneSize, - dividerSize : paneSize, - screenWidth : window.innerWidth + currentDividerPos : this.limitPosition(dividerPos, 0.1*(window.innerWidth-13), 0.9*(window.innerWidth-13)), + userSetDividerPos : dividerPos, + windowWidth : window.innerWidth }); } - window.addEventListener('resize', this.changeSize); + window.addEventListener('resize', this.handleWindowResize); }, componentWillUnmount : function() { - window.removeEventListener('resize', this.changeSize); + window.removeEventListener('resize', this.handleWindowResize); }, - changeSize : function() { - const oldLoc = this.state.size; - const oldWidth = this.state.screenWidth; - let newLoc = oldLoc; - // Allow divider to increase in size to original position - if(window.innerWidth > oldWidth) { - newLoc = Math.min(oldLoc * (window.innerWidth / this.state.screenWidth), this.state.dividerSize); - } + handleWindowResize : function() { + // Allow divider to increase in size to last user-set position // Limit current position to between 10% and 90% of visible space - newLoc = this.limitPosition(newLoc, 0.1*(window.innerWidth-13), 0.9*(window.innerWidth-13)); + const newLoc = this.limitPosition(this.state.userSetDividerPos, 0.1*(window.innerWidth-13), 0.9*(window.innerWidth-13)); this.setState({ - size : newLoc, - screenWidth : window.innerWidth + currentDividerPos : newLoc, + windowWidth : window.innerWidth }); }, @@ -61,8 +55,8 @@ const SplitPane = createClass({ handleUp : function(){ if(this.state.isDragging){ - this.props.onDragFinish(this.state.size); - window.localStorage.setItem(this.props.storageKey, this.state.size); + this.props.onDragFinish(this.state.currentDividerPos); + window.localStorage.setItem(this.props.storageKey, this.state.currentDividerPos); } this.setState({ isDragging: false }); }, @@ -77,8 +71,8 @@ const SplitPane = createClass({ const newSize = this.limitPosition(e.pageX); this.setState({ - size : newSize, - dividerSize : newSize + currentDividerPos : newSize, + userSetDividerPos : newSize }); }, /* @@ -102,7 +96,7 @@ const SplitPane = createClass({ render : function(){ return
- {this.props.children[0]} + {this.props.children[0]} {this.renderDivider()} {this.props.children[1]}
; From a140deae543eee37c4fcb44a9b958b6ff4cefc6e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Mar 2022 03:03:48 +0000 Subject: [PATCH 10/10] Bump googleapis from 97.0.0 to 98.0.0 Bumps [googleapis](https://github.com/googleapis/google-api-nodejs-client) from 97.0.0 to 98.0.0. - [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases) - [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/main/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/googleapis-v97.0.0...googleapis-v98.0.0) --- updated-dependencies: - dependency-name: googleapis dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- package-lock.json | 14 +++++++------- package.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package-lock.json b/package-lock.json index 2b402f2e8..172e352e2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -23,7 +23,7 @@ "express-async-handler": "^1.2.0", "express-static-gzip": "2.1.5", "fs-extra": "10.0.1", - "googleapis": "97.0.0", + "googleapis": "98.0.0", "js-yaml": "^4.1.0", "jwt-simple": "^0.5.6", "less": "^3.13.1", @@ -6056,9 +6056,9 @@ } }, "node_modules/googleapis": { - "version": "97.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-97.0.0.tgz", - "integrity": "sha512-npfVjA4unKsyKvlBC7nhKq6ReH/lsSkSl+0AcW9/TrjT4Uc5QUyJCd1vhH54k5SGDpVQ0xMyyC06dVRMsNarRw==", + "version": "98.0.0", + "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-98.0.0.tgz", + "integrity": "sha512-gJS+JF03FXouOpHN7dqxg5wrNCBef3ExBtYdCJoX4wlURuy6pixg7SC8sNAjFIXphMZWQ1Bbcu9aKxNv2xCbuQ==", "dependencies": { "google-auth-library": "^7.0.2", "googleapis-common": "^5.0.2" @@ -17690,9 +17690,9 @@ } }, "googleapis": { - "version": "97.0.0", - "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-97.0.0.tgz", - "integrity": "sha512-npfVjA4unKsyKvlBC7nhKq6ReH/lsSkSl+0AcW9/TrjT4Uc5QUyJCd1vhH54k5SGDpVQ0xMyyC06dVRMsNarRw==", + "version": "98.0.0", + "resolved": "https://registry.npmjs.org/googleapis/-/googleapis-98.0.0.tgz", + "integrity": "sha512-gJS+JF03FXouOpHN7dqxg5wrNCBef3ExBtYdCJoX4wlURuy6pixg7SC8sNAjFIXphMZWQ1Bbcu9aKxNv2xCbuQ==", "requires": { "google-auth-library": "^7.0.2", "googleapis-common": "^5.0.2" diff --git a/package.json b/package.json index 84a7fe60c..88ab6b494 100644 --- a/package.json +++ b/package.json @@ -61,7 +61,7 @@ "express-async-handler": "^1.2.0", "express-static-gzip": "2.1.5", "fs-extra": "10.0.1", - "googleapis": "97.0.0", + "googleapis": "98.0.0", "js-yaml": "^4.1.0", "jwt-simple": "^0.5.6", "less": "^3.13.1",