-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #63 from nanoframework/release-v1.1.1
release-v1.1.1
- Loading branch information
Showing
32 changed files
with
938 additions
and
289 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright (c) .NET Foundation and Contributors | ||
# See LICENSE file in the project root for full license information. | ||
|
||
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running. | ||
|
||
name: Daily update dependencies | ||
|
||
on: | ||
schedule: | ||
# At 00:00 UTC every day. | ||
- cron: '00 00 * * *' | ||
repository_dispatch: | ||
types: update-dependencies | ||
|
||
defaults: | ||
run: | ||
shell: pwsh | ||
|
||
jobs: | ||
update-dotnet-preview: | ||
name: Update .NET nanoFramework dependencies | ||
timeout-minutes: 15 | ||
runs-on: windows-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
path: main | ||
- name: Checkout tools repo | ||
uses: actions/[email protected] | ||
with: | ||
repository: nanoframework/nf-tools | ||
path: tools | ||
- name: Update dependencies | ||
run: ./github-actions/update-nf-dependencies.ps1 | ||
working-directory: tools | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@v3 | ||
if: env.CREATE_PR == 'true' | ||
with: | ||
title: '${{ env.PR_TITLE }}' | ||
body: | | ||
${{ env.PR_MESSAGE }} | ||
[version update] | ||
### :warning: This is an automated update. :warning: | ||
committer: 'nfbot <[email protected]>' | ||
branch: ${{ env.BRANCH_NAME }} | ||
path: main | ||
labels: | | ||
Type: dependencies |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -255,3 +255,5 @@ paket-files/ | |
|
||
#SoundCloud | ||
*.sonarqube/ | ||
*.slconfig | ||
*.ruleset |
89 changes: 89 additions & 0 deletions
89
.sonarlint/nanoframework_lib-nanoframework.system.text/CSharp/SonarLint.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<AnalysisInput xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> | ||
<Settings> | ||
<Setting> | ||
<Key>sonar.cs.analyzeGeneratedCode</Key> | ||
<Value>false</Value> | ||
</Setting> | ||
<Setting> | ||
<Key>sonar.cs.file.suffixes</Key> | ||
<Value>.cs</Value> | ||
</Setting> | ||
<Setting> | ||
<Key>sonar.cs.ignoreHeaderComments</Key> | ||
<Value>true</Value> | ||
</Setting> | ||
<Setting> | ||
<Key>sonar.cs.roslyn.ignoreIssues</Key> | ||
<Value>false</Value> | ||
</Setting> | ||
</Settings> | ||
<Rules> | ||
<Rule> | ||
<Key>S107</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>max</Key> | ||
<Value>7</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
<Rule> | ||
<Key>S110</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>max</Key> | ||
<Value>5</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
<Rule> | ||
<Key>S1479</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>maximum</Key> | ||
<Value>30</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
<Rule> | ||
<Key>S2342</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>flagsAttributeFormat</Key> | ||
<Value>^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?s$</Value> | ||
</Parameter> | ||
<Parameter> | ||
<Key>format</Key> | ||
<Value>^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?$</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
<Rule> | ||
<Key>S2436</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>max</Key> | ||
<Value>2</Value> | ||
</Parameter> | ||
<Parameter> | ||
<Key>maxMethod</Key> | ||
<Value>3</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
<Rule> | ||
<Key>S3776</Key> | ||
<Parameters> | ||
<Parameter> | ||
<Key>propertyThreshold</Key> | ||
<Value>3</Value> | ||
</Parameter> | ||
<Parameter> | ||
<Key>threshold</Key> | ||
<Value>15</Value> | ||
</Parameter> | ||
</Parameters> | ||
</Rule> | ||
</Rules> | ||
</AnalysisInput> |
Oops, something went wrong.