Skip to content

Commit

Permalink
Merge pull request #5357 from a1mery/react-graph-app-secret-expiratio…
Browse files Browse the repository at this point in the history
…n-upgrade-to-1.20
  • Loading branch information
hugoabernier authored Jan 13, 2025
2 parents 6df2707 + e4234f0 commit ec58f9c
Show file tree
Hide file tree
Showing 15 changed files with 45,964 additions and 26,764 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
**/*.js
36 changes: 0 additions & 36 deletions samples/react-graph-app-secret-expiration/.eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,42 +22,6 @@ require('@rushstack/eslint-config/patch/modern-module-resolution');
'@typescript-eslint/adjacent-overload-signatures': 1,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
//
// CONFIGURATION: By default, these are banned: String, Boolean, Number, Object, Symbol
'@typescript-eslint/ban-types': [
1,
{
'extendDefaults': false,
'types': {
'String': {
'message': 'Use \'string\' instead',
'fixWith': 'string'
},
'Boolean': {
'message': 'Use \'boolean\' instead',
'fixWith': 'boolean'
},
'Number': {
'message': 'Use \'number\' instead',
'fixWith': 'number'
},
'Object': {
'message': 'Use \'object\' instead, or else define a proper TypeScript type:'
},
'Symbol': {
'message': 'Use \'symbol\' instead',
'fixWith': 'symbol'
},
'Function': {
'message': 'The \'Function\' type accepts any function-like value.'
}
}
}
],
// RATIONALE: Code is more readable when the type of every variable is immediately obvious.
// Even if the compiler may be able to infer a type, this inference will be unavailable
// to a person who is reviewing a GitHub diff. This rule makes writing code harder,
// but writing code is a much less important activity than reading it.
//
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@typescript-eslint/explicit-function-return-type': [
1,
Expand Down
1 change: 1 addition & 0 deletions samples/react-graph-app-secret-expiration/.nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v18.18.0
7 changes: 5 additions & 2 deletions samples/react-graph-app-secret-expiration/.yo-rc.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,14 @@
"@microsoft/generator-sharepoint": {
"isCreatingSolution": true,
"environment": "spo",
"version": "1.16.1",
"version": "1.20.0",
"libraryName": "react-graph-app-secret-expiration",
"libraryId": "b25d85a4-7310-408a-a263-25959b0a5b1b",
"packageManager": "npm",
"isDomainIsolated": false,
"componentType": "webpart"
"componentType": "webpart",
"sdkVersions": {
"@microsoft/teams-js": "2.24.0"
}
}
}
5 changes: 3 additions & 2 deletions samples/react-graph-app-secret-expiration/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ I got the idea from this great article [Use Power Automate to Notify of Upcoming
| Every SPFx version is only compatible with specific version(s) of Node.js. In order to be able to build this sample, please ensure that the version of Node on your workstation matches one of the versions listed in this section. This sample will not work on a different version of Node.|
|Refer to <https://aka.ms/spfx-matrix> for more information on SPFx compatibility. |

![SPFx 1.16.1](https://img.shields.io/badge/SPFx-1.16.1-green.svg)
![Node.js v14 | v12](https://img.shields.io/badge/Node.js-v14%20%7C%20v12-green.svg)
![SPFx 1.20.0](https://img.shields.io/badge/SPFx-1.20.0-green.svg)
![Node.js v18](https://img.shields.io/badge/Node.js-v18-green.svg)
![Compatible with SharePoint Online](https://img.shields.io/badge/SharePoint%20Online-Compatible-green.svg)
![Does not work with SharePoint 2019](https://img.shields.io/badge/SharePoint%20Server%202019-Incompatible-red.svg "SharePoint Server 2019 requires SPFx 1.4.1 or lower")
![Does not work with SharePoint 2016 (Feature Pack 2)](https://img.shields.io/badge/SharePoint%20Server%202016%20(Feature%20Pack%202)-Incompatible-red.svg "SharePoint Server 2016 Feature Pack 2 requires SPFx 1.1")
Expand Down Expand Up @@ -43,6 +43,7 @@ Version|Date|Comments
1.3|March 14, 2022|Upgrade to SPFx v1.14.0
1.4|July 07, 2022|Upgrade to SPFx v1.15.0
1.5|March 06, 2023|Upgrade to SPFx v1.16.1
1.6|December 09, 2024|Upgrade to SPFx v1.20.0


## Minimal path to awesome
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions samples/react-graph-app-secret-expiration/assets/sample.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"This sample web part shows the list of your applications registered in Azure AD along with their associated client secret/certificate expiration date."
],
"creationDateTime": "2021-09-17",
"updateDateTime": "2023-03-06",
"updateDateTime": "2025-01-10",
"products": [
"SharePoint"
],
Expand All @@ -20,7 +20,7 @@
},
{
"key": "SPFX-VERSION",
"value": "1.16.1"
"value": "1.20.0"
},
{
"key": "PNPCONTROLS",
Expand Down
18 changes: 18 additions & 0 deletions samples/react-graph-app-secret-expiration/config/eslint.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"$schema": "https://json.schemastore.org/eslintrc.json",
"root": true,
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"ignorePatterns": "*.js"
}
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"title": "react-graph-app-secret-expiration Feature",
"description": "The feature that activates elements of the react-graph-app-secret-expiration solution.",
"id": "ca58f355-9872-4025-8ad5-763ad6076034",
"version": "1.5.0.0"
"version": "1.6.0.0"
}
],
"name": "react-graph-app-secret-expiration-client-side-solution",
"id": "b25d85a4-7310-408a-a263-25959b0a5b1b",
"version": "1.5.0.0",
"version": "1.6.0.0",
"includeClientSideAssets": true,
"isDomainIsolated": false,
"skipFeatureDeployment": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"$schema": "https://developer.microsoft.com/json-schemas/spfx-build/spfx-serve.schema.json",
"port": 4321,
"https": true,
"initialPage": "https://enter-your-SharePoint-site/_layouts/workbench.aspx"
"initialPage": "https://{tenantDomain}/_layouts/workbench.aspx"
}
3 changes: 2 additions & 1 deletion samples/react-graph-app-secret-expiration/gulpfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
'use strict';

const gulp = require('gulp');
const build = require('@microsoft/sp-build-web');

build.addSuppression(`Warning - [sass] The local CSS class 'ms-Grid' is not camelCase and will not be type-safe.`);
Expand All @@ -13,4 +14,4 @@ build.rig.getTasks = function () {
return result;
};

build.initialize(require('gulp'));
build.initialize(gulp);
Loading

0 comments on commit ec58f9c

Please sign in to comment.