Skip to content

Commit

Permalink
Merge pull request #148 from PagerDuty/release/0.8.4-beta.0
Browse files Browse the repository at this point in the history
  • Loading branch information
gsreynolds authored Jul 7, 2023
2 parents 94dfabb + 54b2d7e commit 3b2116f
Show file tree
Hide file tree
Showing 4 changed files with 160 additions and 146 deletions.
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "pd-live-react",
"homepage": "https://pagerduty.github.io/pd-live-react",
"version": "0.8.3-beta.0",
"version": "0.8.4-beta.0",
"private": true,
"dependencies": {
"@braintree/sanitize-url": "^6.0.2",
"@chakra-ui/icons": "^2.0.19",
"@chakra-ui/react": "^2.6.1",
"@chakra-ui/react": "^2.7.1",
"@craco/craco": "^7.0.0",
"@datadog/browser-rum": "^4.43.0",
"@emotion/react": "^11.10.8",
Expand All @@ -31,7 +31,7 @@
"font-awesome": "^4.7.0",
"framer-motion": "^10.12.7",
"fuse.js": "^6.6.2",
"i18next": "^22.4.8",
"i18next": "^22.5.1",
"i18next-browser-languagedetector": "^7.0.1",
"immer": "^10.0.2",
"jsonpath-plus": "^7.2.0",
Expand All @@ -47,7 +47,7 @@
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18",
"react-i18next": "^12.1.5",
"react-i18next": "^12.3.1",
"react-icons": "^4.8.0",
"react-inject-env": "^2.0.1",
"react-intersection-observer": "^9.5.1",
Expand Down Expand Up @@ -142,8 +142,8 @@
"html-webpack-plugin": "^5",
"i18next-parser": "^8.0.0",
"identity-obj-proxy": "^3.0.0",
"jest-canvas-mock": "^2.4.0",
"jest-location-mock": "^1.0.9",
"jest-canvas-mock": "^2.5.2",
"jest-location-mock": "^1.0.10",
"prettier": "^2.8.0",
"prettier-eslint": "^15.0.1",
"prettier-eslint-cli": "^7.1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/config/version.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions src/util/pd-api-wrapper.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ export const throttledPdAxiosRequest = (
params = {},
data = {},
options = {
expiration: 10 * 1000,
expiration: 30 * 1000,
priority: 5,
},
) => limiter.schedule(
{
expiration: options?.expiration || 10 * 1000,
expiration: options?.expiration || 30 * 1000,
priority: options.priority || 5,
id: `${method}-${endpoint}-${JSON.stringify(params)}-${Date.now()}`,
},
Expand Down Expand Up @@ -133,7 +133,7 @@ export const pdParallelFetch = async (
};

const axiosRequestOptions = {
expiration: options?.expiration || 10 * 1000,
expiration: options?.expiration || 30 * 1000,
priority: options.priority,
};

Expand Down
Loading

0 comments on commit 3b2116f

Please sign in to comment.