Skip to content

Commit bb595f7

Browse files
Chore (release): 5.1.0 (#1662)
* Fix: Makes app consistent on all browsers (#1602) * Chore: Update MsGraph JavaScript SDK (#1568) * Fix: Update query field when a sample query is selected (#1607) * Chore: Dependabot upgrades (#1603) * Add query resulting in CORS error to list for the appropriate message to be displayed (#1580) * Enhancement: Add more info to code snippets (#1540) * Fix: Header position on try-it experience (#1636) * Task: Bulk update of dependabot upgrades (#1638) * Task: Package updates (#1641) * Fix: Display permissions on modify permissions tab (#1642) * Fix: Signing out on Try-It (#1634) * Handle CORS error thrown when GE attempts to download file from a redirect (#1629) * Fix: Send proper request body type for code snippets (#1639) * Fix: Sidebar and query response components on zoom (#1658) * Fix: autocomplete suggestions overflow (#1663)
1 parent fef5627 commit bb595f7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

46 files changed

+1897
-2152
lines changed

.github/dependabot.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ version: 2
22
updates:
33
- package-ecosystem: npm
44
directory: "/"
5+
target-branch: "dependabot-upgrades"
56
schedule:
67
interval: monthly
7-
open-pull-requests-limit: 10
8+
open-pull-requests-limit: 20

config/webpack.config.js

Lines changed: 2 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const sassRegex = /\.(scss|sass)$/;
4545
const sassModuleRegex = /\.module\.(scss|sass)$/;
4646

4747
const hasJsxRuntime = (() => {
48-
if(process.env.DISABLE_NEW_JSX_TRANSFORM === 'true') {
48+
if (process.env.DISABLE_NEW_JSX_TRANSFORM === 'true') {
4949
return false;
5050
}
5151
})
@@ -520,49 +520,7 @@ module.exports = function (webpackEnv) {
520520
}),
521521
// TypeScript type checking
522522
useTypeScript &&
523-
new ForkTsCheckerWebpackPlugin({
524-
typescript: {
525-
typescriptPath: resolve.sync('typescript', {
526-
basedir: paths.appNodeModules
527-
}),
528-
async: false,
529-
configOverwrite: {
530-
compilerOptions: {
531-
sourceMap: isEnvProduction
532-
? shouldUseSourceMap
533-
: isEnvDevelopment,
534-
skipLibCheck: true,
535-
inlineSourceMap: false,
536-
declarationMap: false,
537-
noEmit: true,
538-
incremental: true,
539-
tsBuildInfoFile: paths.appTsBuildInfoFile
540-
}
541-
},
542-
context: paths.appPath,
543-
diagnosticOptions: {
544-
syntactic: true
545-
},
546-
mode: 'write-references'
547-
},
548-
issue: {
549-
// This one is specifically to match during CI tests,
550-
// as micromatch doesn't match
551-
// '../cra-template-typescript/template/src/App.tsx'
552-
// otherwise.
553-
include: [
554-
{ file: '../**/src/**/*.{ts,tsx}' },
555-
{ file: '**/src/**/*.{ts,tsx}' }
556-
],
557-
exclude: [
558-
{ file: '**/src/**/__tests__/**' },
559-
{ file: '**/src/**/?(*.){spec|test}.*' },
560-
{ file: '**/src/setupProxy.*' },
561-
{ file: '**/src/setupTests.*' }
562-
]
563-
},
564-
logger: { infrastructure: 'silent' }
565-
})
523+
new ForkTsCheckerWebpackPlugin()
566524
].filter(Boolean),
567525
// Turn off performance processing because we utilize
568526
// our own hints via the FileSizeReporter

0 commit comments

Comments
 (0)