Skip to content

Commit 99fb869

Browse files
authored
Merge pull request #63 from nanoframework/release-v1.1.1
release-v1.1.1
2 parents 49301cf + 773d591 commit 99fb869

32 files changed

+938
-289
lines changed
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Copyright (c) .NET Foundation and Contributors
2+
# See LICENSE file in the project root for full license information.
3+
4+
# This workflow will periodically check .NET nanoFramework dependencies and updates them in the repository it's running.
5+
6+
name: Daily update dependencies
7+
8+
on:
9+
schedule:
10+
# At 00:00 UTC every day.
11+
- cron: '00 00 * * *'
12+
repository_dispatch:
13+
types: update-dependencies
14+
15+
defaults:
16+
run:
17+
shell: pwsh
18+
19+
jobs:
20+
update-dotnet-preview:
21+
name: Update .NET nanoFramework dependencies
22+
timeout-minutes: 15
23+
runs-on: windows-latest
24+
steps:
25+
- name: Checkout
26+
uses: actions/[email protected]
27+
with:
28+
path: main
29+
- name: Checkout tools repo
30+
uses: actions/[email protected]
31+
with:
32+
repository: nanoframework/nf-tools
33+
path: tools
34+
- name: Update dependencies
35+
run: ./github-actions/update-nf-dependencies.ps1
36+
working-directory: tools
37+
- name: Create Pull Request
38+
uses: peter-evans/create-pull-request@v3
39+
if: env.CREATE_PR == 'true'
40+
with:
41+
title: '${{ env.PR_TITLE }}'
42+
body: |
43+
${{ env.PR_MESSAGE }}
44+
45+
[version update]
46+
47+
### :warning: This is an automated update. :warning:
48+
committer: 'nfbot <[email protected]>'
49+
branch: ${{ env.BRANCH_NAME }}
50+
path: main
51+
labels: |
52+
Type: dependencies

.github_changelog_generator

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
user=nanoframework
2-
project=lib-nanoFramework.System.Text
2+
project=System.Text
33
issues=true
44
add_issues_wo_labels=false
55
add_pr_wo_labels=false

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,3 +255,5 @@ paket-files/
255255

256256
#SoundCloud
257257
*.sonarqube/
258+
*.slconfig
259+
*.ruleset
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<AnalysisInput xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
3+
<Settings>
4+
<Setting>
5+
<Key>sonar.cs.analyzeGeneratedCode</Key>
6+
<Value>false</Value>
7+
</Setting>
8+
<Setting>
9+
<Key>sonar.cs.file.suffixes</Key>
10+
<Value>.cs</Value>
11+
</Setting>
12+
<Setting>
13+
<Key>sonar.cs.ignoreHeaderComments</Key>
14+
<Value>true</Value>
15+
</Setting>
16+
<Setting>
17+
<Key>sonar.cs.roslyn.ignoreIssues</Key>
18+
<Value>false</Value>
19+
</Setting>
20+
</Settings>
21+
<Rules>
22+
<Rule>
23+
<Key>S107</Key>
24+
<Parameters>
25+
<Parameter>
26+
<Key>max</Key>
27+
<Value>7</Value>
28+
</Parameter>
29+
</Parameters>
30+
</Rule>
31+
<Rule>
32+
<Key>S110</Key>
33+
<Parameters>
34+
<Parameter>
35+
<Key>max</Key>
36+
<Value>5</Value>
37+
</Parameter>
38+
</Parameters>
39+
</Rule>
40+
<Rule>
41+
<Key>S1479</Key>
42+
<Parameters>
43+
<Parameter>
44+
<Key>maximum</Key>
45+
<Value>30</Value>
46+
</Parameter>
47+
</Parameters>
48+
</Rule>
49+
<Rule>
50+
<Key>S2342</Key>
51+
<Parameters>
52+
<Parameter>
53+
<Key>flagsAttributeFormat</Key>
54+
<Value>^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?s$</Value>
55+
</Parameter>
56+
<Parameter>
57+
<Key>format</Key>
58+
<Value>^([A-Z]{1,3}[a-z0-9]+)*([A-Z]{2})?$</Value>
59+
</Parameter>
60+
</Parameters>
61+
</Rule>
62+
<Rule>
63+
<Key>S2436</Key>
64+
<Parameters>
65+
<Parameter>
66+
<Key>max</Key>
67+
<Value>2</Value>
68+
</Parameter>
69+
<Parameter>
70+
<Key>maxMethod</Key>
71+
<Value>3</Value>
72+
</Parameter>
73+
</Parameters>
74+
</Rule>
75+
<Rule>
76+
<Key>S3776</Key>
77+
<Parameters>
78+
<Parameter>
79+
<Key>propertyThreshold</Key>
80+
<Value>3</Value>
81+
</Parameter>
82+
<Parameter>
83+
<Key>threshold</Key>
84+
<Value>15</Value>
85+
</Parameter>
86+
</Parameters>
87+
</Rule>
88+
</Rules>
89+
</AnalysisInput>

0 commit comments

Comments
 (0)