Skip to content

Commit

Permalink
Merge pull request #631 from pnp/dev
Browse files Browse the repository at this point in the history
3.19.0
  • Loading branch information
AJIXuMuK authored Nov 28, 2024
2 parents eb8f705 + 6766bca commit 81019ba
Show file tree
Hide file tree
Showing 16 changed files with 3,805 additions and 5,421 deletions.
33 changes: 0 additions & 33 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,39 +27,6 @@ module.exports = {
'@rushstack/security/no-unsafe-regexp': 0,
// STANDARDIZED BY: @typescript-eslint\eslint-plugin\dist\configs\recommended.json
'@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.\nIt provides no type safety when calling the function, which can be a common source of bugs.\nIt also accepts things like class declarations, which will throw at runtime as they will not be called with \'new\'.\nIf you are expecting the function to accept certain arguments, you should explicitly define the function shape.'
}
}
}
],
// 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,
Expand Down
4 changes: 2 additions & 2 deletions .yo-rc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"@microsoft/generator-sharepoint": {
"version": "1.19.0",
"version": "1.20.0",
"libraryName": "sp-dev-fx-property-controls",
"libraryId": "0253ef52-be23-4282-b00f-e5a9350eb408",
"environment": "spo",
Expand All @@ -11,7 +11,7 @@
"nodeVersion": "16.15.0",
"sdksVersions": {
"@microsoft/microsoft-graph-client": "3.0.2",
"@microsoft/teams-js": "2.12.0"
"@microsoft/teams-js": "2.24.0"
}
}
}
9 changes: 9 additions & 0 deletions CHANGELOG.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
{
"versions": [
{
"version": "3.19.0",
"changes": {
"new": [],
"enhancements": [],
"fixes": []
},
"contributions": []
},
{
"version": "3.18.0",
"changes": {
Expand Down
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Releases

## 3.19.0

## 3.18.0

### Enhancements
Expand Down
2 changes: 2 additions & 0 deletions docs/documentation/docs/about/release-notes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Releases

## 3.19.0

## 3.18.0

### Enhancements
Expand Down
Loading

0 comments on commit 81019ba

Please sign in to comment.