From 681dbd05d997c1730df1576dd587a70c1eea1b9d Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 17 May 2021 11:37:41 +0000 Subject: [PATCH 01/28] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index b209bc90c0a..5c1798920e2 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -4,7 +4,7 @@ updates: directory: "/" schedule: interval: daily - open-pull-requests-limit: 10 + open-pull-requests-limit: 0 ignore: - dependency-name: Microsoft.AspNetCore versions: From d2f6fedcf18b31e4c0eaf1076fe537e7f9c39144 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 7 Jun 2021 10:48:29 +0000 Subject: [PATCH 02/28] Create ci.yaml --- .github/workflows/ci.yaml | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000000..054d63341a0 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,59 @@ +name: .NET Core + +on: [push, pull_request] + +jobs: + db: + strategy: + fail-fast: false + matrix: + include: + - DB: SqlServer2008 + CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;" + - DB: PostgreSQL + CONNECTION_STRING: "Host=localhost;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;" + - DB: Firebird + CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;" + - DB: MySQL + CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;" + ALLOW_FAILURE: true + - DB: SQLite + runs-on: ubuntu-latest + continue-on-error: ${{matrix.ALLOW_FAILURE == true}} + env: + LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons + name: ${{matrix.DB}} + + steps: + - name: Set up SqlServer + if: matrix.DB == 'SqlServer2008' + run: | + docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssw0rd" -e "MSSQL_PID=Express" -p 1433:1433 -d --name sqlexpress microsoft/mssql-server-linux:latest; + + - name: Set up MySQL + if: matrix.DB == 'MySQL' + run: | + sudo service mysql stop + docker run --name mysql -e MYSQL_ROOT_PASSWORD=nhibernate -e MYSQL_USER=nhibernate -e MYSQL_PASSWORD=nhibernate -e MYSQL_DATABASE=nhibernate -p 3306:3306 --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -d mysql:5.7 mysqld --lower_case_table_names=1 + + - name: Set up PostgreSQL + if: matrix.DB == 'PostgreSQL' + run: | + sudo systemctl start postgresql.service + pg_isready + sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate'" --command="\du" + + - name: Set up Firebird + if: matrix.DB == 'Firebird' + run: | + docker run --name firebird -e EnableWireCrypt=true -e FIREBIRD_USER=nhibernate -e FIREBIRD_PASSWORD=nhibernate -e ISC_PASSWORD=nhibernate -e FIREBIRD_DATABASE=nhibernate -p 3050:3050 -d jacobalberty/firebird + + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1.8.0 + with: + dotnet-version: 2.1.x + + - name: Build and Test + run: | + pwsh -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{'Database' = '${{matrix.DB}}';'ConnectionString'='${{matrix.CONNECTION_STRING}}'}" From 7879508e89fa956370e71b50921305c01000cd40 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 7 Jun 2021 10:56:10 +0000 Subject: [PATCH 03/28] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 054d63341a0..2650a3cfeb3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,7 +41,7 @@ jobs: run: | sudo systemctl start postgresql.service pg_isready - sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate'" --command="\du" + sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate' CREATEDB" - name: Set up Firebird if: matrix.DB == 'Firebird' From e569ccba0c862502fe275bb016c32bc428f83a4b Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Sun, 20 Feb 2022 20:47:24 +0000 Subject: [PATCH 04/28] Create .deepsource.toml --- .deepsource.toml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .deepsource.toml diff --git a/.deepsource.toml b/.deepsource.toml new file mode 100644 index 00000000000..d9914dfa617 --- /dev/null +++ b/.deepsource.toml @@ -0,0 +1 @@ +version = 1 From cc1a143cd1c6184ab7a0f6cae5b2d44dd827be6f Mon Sep 17 00:00:00 2001 From: DeepSource Bot Date: Sun, 20 Feb 2022 20:49:07 +0000 Subject: [PATCH 05/28] Update .deepsource.toml --- .deepsource.toml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.deepsource.toml b/.deepsource.toml index d9914dfa617..62b2bf1393b 100644 --- a/.deepsource.toml +++ b/.deepsource.toml @@ -1 +1,7 @@ version = 1 + +test_patterns = ["src/NHibernate.Test/**"] + +[[analyzers]] +name = "csharp" +enabled = true \ No newline at end of file From 12f376060390da03d03164e5655e7a3ec41fa696 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 6 May 2022 06:21:29 +0000 Subject: [PATCH 06/28] Add renovate.json --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 renovate.json diff --git a/renovate.json b/renovate.json new file mode 100644 index 00000000000..f45d8f110c3 --- /dev/null +++ b/renovate.json @@ -0,0 +1,5 @@ +{ + "extends": [ + "config:base" + ] +} From 4f5d0c2916776dc494f49d483706c6df42505847 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Fri, 6 May 2022 13:50:13 +0000 Subject: [PATCH 07/28] Update renovate.json --- renovate.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index f45d8f110c3..a5af71137a9 100644 --- a/renovate.json +++ b/renovate.json @@ -1,5 +1,9 @@ { "extends": [ "config:base" - ] + ], + "packageRules": [{ + "matchPackagePrefixes": ["Microsoft.Extensions", "Microsoft.AspNetCore", "Microsoft.EntityFrameworkCore", "mcr.microsoft.com/dotnet/"], + "groupName": "dotnet runtime" + } } From cfef6db547648de4cfa343d9869c138bed837937 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Fri, 6 May 2022 13:51:02 +0000 Subject: [PATCH 08/28] Update renovate.json --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index a5af71137a9..3380cab2bec 100644 --- a/renovate.json +++ b/renovate.json @@ -5,5 +5,5 @@ "packageRules": [{ "matchPackagePrefixes": ["Microsoft.Extensions", "Microsoft.AspNetCore", "Microsoft.EntityFrameworkCore", "mcr.microsoft.com/dotnet/"], "groupName": "dotnet runtime" - } + }] } From c1b33ddfb3c6bf00d506026a3f6114ffb900d278 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Fri, 6 May 2022 13:54:47 +0000 Subject: [PATCH 09/28] Update renovate.json --- renovate.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/renovate.json b/renovate.json index 3380cab2bec..c228d6b27c6 100644 --- a/renovate.json +++ b/renovate.json @@ -5,5 +5,8 @@ "packageRules": [{ "matchPackagePrefixes": ["Microsoft.Extensions", "Microsoft.AspNetCore", "Microsoft.EntityFrameworkCore", "mcr.microsoft.com/dotnet/"], "groupName": "dotnet runtime" + }, { + "matchPackagePrefixes": ["NUnit"], + "groupName": "NUnit" }] } From c6ef7052db4df1dd4ada8e3b9592417309a5f257 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Sat, 7 May 2022 06:42:12 +0000 Subject: [PATCH 10/28] Update renovate.json --- renovate.json | 3 --- 1 file changed, 3 deletions(-) diff --git a/renovate.json b/renovate.json index c228d6b27c6..e2e81d7d11c 100644 --- a/renovate.json +++ b/renovate.json @@ -3,9 +3,6 @@ "config:base" ], "packageRules": [{ - "matchPackagePrefixes": ["Microsoft.Extensions", "Microsoft.AspNetCore", "Microsoft.EntityFrameworkCore", "mcr.microsoft.com/dotnet/"], - "groupName": "dotnet runtime" - }, { "matchPackagePrefixes": ["NUnit"], "groupName": "NUnit" }] From c22f0f3e40d2b3eb5ba7967209c80e003b71ae70 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 17 May 2021 11:37:41 +0000 Subject: [PATCH 11/28] Update dependabot.yml --- .github/dependabot.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index e6331549d88..abefd72d3e3 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -5,7 +5,7 @@ updates: schedule: interval: daily rebase-strategy: "disabled" - open-pull-requests-limit: 10 + open-pull-requests-limit: 0 ignore: - dependency-name: Microsoft.AspNetCore versions: From d117822461e257930453188d97aa2cebcef286c5 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 7 Jun 2021 10:48:29 +0000 Subject: [PATCH 12/28] Create ci.yaml --- .github/workflows/ci.yaml | 59 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000000..054d63341a0 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -0,0 +1,59 @@ +name: .NET Core + +on: [push, pull_request] + +jobs: + db: + strategy: + fail-fast: false + matrix: + include: + - DB: SqlServer2008 + CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;" + - DB: PostgreSQL + CONNECTION_STRING: "Host=localhost;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;" + - DB: Firebird + CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;" + - DB: MySQL + CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;" + ALLOW_FAILURE: true + - DB: SQLite + runs-on: ubuntu-latest + continue-on-error: ${{matrix.ALLOW_FAILURE == true}} + env: + LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons + name: ${{matrix.DB}} + + steps: + - name: Set up SqlServer + if: matrix.DB == 'SqlServer2008' + run: | + docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssw0rd" -e "MSSQL_PID=Express" -p 1433:1433 -d --name sqlexpress microsoft/mssql-server-linux:latest; + + - name: Set up MySQL + if: matrix.DB == 'MySQL' + run: | + sudo service mysql stop + docker run --name mysql -e MYSQL_ROOT_PASSWORD=nhibernate -e MYSQL_USER=nhibernate -e MYSQL_PASSWORD=nhibernate -e MYSQL_DATABASE=nhibernate -p 3306:3306 --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -d mysql:5.7 mysqld --lower_case_table_names=1 + + - name: Set up PostgreSQL + if: matrix.DB == 'PostgreSQL' + run: | + sudo systemctl start postgresql.service + pg_isready + sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate'" --command="\du" + + - name: Set up Firebird + if: matrix.DB == 'Firebird' + run: | + docker run --name firebird -e EnableWireCrypt=true -e FIREBIRD_USER=nhibernate -e FIREBIRD_PASSWORD=nhibernate -e ISC_PASSWORD=nhibernate -e FIREBIRD_DATABASE=nhibernate -p 3050:3050 -d jacobalberty/firebird + + - uses: actions/checkout@v2 + - name: Setup .NET + uses: actions/setup-dotnet@v1.8.0 + with: + dotnet-version: 2.1.x + + - name: Build and Test + run: | + pwsh -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{'Database' = '${{matrix.DB}}';'ConnectionString'='${{matrix.CONNECTION_STRING}}'}" From 126b7f04f70e36a7933ad19271073deefc3e19ef Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 7 Jun 2021 10:56:10 +0000 Subject: [PATCH 13/28] Update ci.yaml --- .github/workflows/ci.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 054d63341a0..2650a3cfeb3 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -41,7 +41,7 @@ jobs: run: | sudo systemctl start postgresql.service pg_isready - sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate'" --command="\du" + sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate' CREATEDB" - name: Set up Firebird if: matrix.DB == 'Firebird' From a274c3112da1dd6f0cc9d2997791bd8e018c3668 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Sat, 7 May 2022 18:57:20 +1200 Subject: [PATCH 14/28] Update --- renovate.json | 24 +++++++++++++++++++----- 1 file changed, 19 insertions(+), 5 deletions(-) diff --git a/renovate.json b/renovate.json index e2e81d7d11c..6aebae477ef 100644 --- a/renovate.json +++ b/renovate.json @@ -1,9 +1,23 @@ { + "$schema": "https://docs.renovatebot.com/renovate-schema.json", "extends": [ "config:base" ], - "packageRules": [{ - "matchPackagePrefixes": ["NUnit"], - "groupName": "NUnit" - }] -} + "packageRules": [ + { + "matchPackagePrefixes": [ + "NUnit" + ], + "groupName": "NUnit" + }, + { + "matchPackageNames": [ + "Microsoft.AspNetCore", + "Microsoft.AspNetCore.Mvc", + "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation", + "Microsoft.AspNetCore.StaticFiles" + ], + "allowedVersions": "<2.2.0" + } + ] +} \ No newline at end of file From 2c6736589ca20b91881e1f64a46797eed2261db5 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Sat, 7 May 2022 19:01:57 +1200 Subject: [PATCH 15/28] Add group name --- renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/renovate.json b/renovate.json index 6aebae477ef..34fc52d6116 100644 --- a/renovate.json +++ b/renovate.json @@ -17,6 +17,7 @@ "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation", "Microsoft.AspNetCore.StaticFiles" ], + "groupName": "Microsoft.AspNetCore 2.1", "allowedVersions": "<2.2.0" } ] From 363bd0ac61c03379b3b6969c652fe3d892d75fba Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Mon, 9 May 2022 01:00:59 +0000 Subject: [PATCH 16/28] Update renovate.json --- renovate.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/renovate.json b/renovate.json index 34fc52d6116..0d1f7bc17c6 100644 --- a/renovate.json +++ b/renovate.json @@ -17,8 +17,8 @@ "Microsoft.AspNetCore.Mvc.Razor.ViewCompilation", "Microsoft.AspNetCore.StaticFiles" ], - "groupName": "Microsoft.AspNetCore 2.1", - "allowedVersions": "<2.2.0" + "groupName": "Microsoft.AspNetCore 2.0", + "allowedVersions": "<2.0.0" } ] -} \ No newline at end of file +} From 7ee593390a325a60eba11df3047e49305004078a Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 20 Jul 2022 05:07:33 +0000 Subject: [PATCH 17/28] Update renovate.json --- renovate.json | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/renovate.json b/renovate.json index 0d1f7bc17c6..fbb2d59dffc 100644 --- a/renovate.json +++ b/renovate.json @@ -19,6 +19,11 @@ ], "groupName": "Microsoft.AspNetCore 2.0", "allowedVersions": "<2.0.0" + }, + { + "matchPackagePrefixes": [ + "Oracle" + ] } ] } From 4945c0fee2c3cb046873cbc4f1d87fb83b8b68e6 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 20 Jul 2022 10:56:06 +0000 Subject: [PATCH 18/28] Update renovate.json --- renovate.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/renovate.json b/renovate.json index fbb2d59dffc..9c5464644b6 100644 --- a/renovate.json +++ b/renovate.json @@ -22,8 +22,9 @@ }, { "matchPackagePrefixes": [ - "Oracle" - ] + "Oracle.ManagedDataAccess" + ], + "groupName": "Oracle.ManagedDataAccess", } ] } From 8ef5e4522a1dba47b75dee10d0fada86b211d680 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 20 Jul 2022 10:56:52 +0000 Subject: [PATCH 19/28] Update renovate.json --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 9c5464644b6..b5db99593e5 100644 --- a/renovate.json +++ b/renovate.json @@ -24,7 +24,7 @@ "matchPackagePrefixes": [ "Oracle.ManagedDataAccess" ], - "groupName": "Oracle.ManagedDataAccess", + "groupName": "Oracle.ManagedDataAccess" } ] } From 6251266f3b489dcd730c4fb0e188fbe7d150e356 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 20 Jul 2022 11:30:58 +0000 Subject: [PATCH 20/28] Delete dependabot.yml --- .github/dependabot.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml deleted file mode 100644 index abefd72d3e3..00000000000 --- a/.github/dependabot.yml +++ /dev/null @@ -1,21 +0,0 @@ -version: 2 -updates: -- package-ecosystem: nuget - directory: "/" - schedule: - interval: daily - rebase-strategy: "disabled" - open-pull-requests-limit: 0 - ignore: - - dependency-name: Microsoft.AspNetCore - versions: - - "> 2.0.0" - - dependency-name: Microsoft.AspNetCore.Mvc - versions: - - "> 2.0.0" - - dependency-name: Microsoft.AspNetCore.Mvc.Razor.ViewCompilation - versions: - - "> 2.0.0" - - dependency-name: Microsoft.AspNetCore.StaticFiles - versions: - - "> 2.0.0" From f9bbb00d2e822b7de4aab8072e02a9a8f21de370 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 20 Jul 2022 11:31:12 +0000 Subject: [PATCH 21/28] Delete ci.yaml --- .github/workflows/ci.yaml | 59 --------------------------------------- 1 file changed, 59 deletions(-) delete mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml deleted file mode 100644 index 2650a3cfeb3..00000000000 --- a/.github/workflows/ci.yaml +++ /dev/null @@ -1,59 +0,0 @@ -name: .NET Core - -on: [push, pull_request] - -jobs: - db: - strategy: - fail-fast: false - matrix: - include: - - DB: SqlServer2008 - CONNECTION_STRING: "Server=localhost;initial catalog=nhibernate;User Id=sa;Password=P@ssw0rd;packet size=4096;" - - DB: PostgreSQL - CONNECTION_STRING: "Host=localhost;Username=nhibernate;Password=nhibernate;Database=nhibernate;Enlist=true;" - - DB: Firebird - CONNECTION_STRING: "DataSource=localhost;Database=nhibernate;User=SYSDBA;Password=nhibernate;charset=utf8;" - - DB: MySQL - CONNECTION_STRING: "Server=localhost;Uid=root;Password=nhibernate;Database=nhibernate;Old Guids=True;" - ALLOW_FAILURE: true - - DB: SQLite - runs-on: ubuntu-latest - continue-on-error: ${{matrix.ALLOW_FAILURE == true}} - env: - LANG: en-US.UTF-8 #default POSIX locale doesn't support ignore case comparisons - name: ${{matrix.DB}} - - steps: - - name: Set up SqlServer - if: matrix.DB == 'SqlServer2008' - run: | - docker run -e "ACCEPT_EULA=Y" -e "SA_PASSWORD=P@ssw0rd" -e "MSSQL_PID=Express" -p 1433:1433 -d --name sqlexpress microsoft/mssql-server-linux:latest; - - - name: Set up MySQL - if: matrix.DB == 'MySQL' - run: | - sudo service mysql stop - docker run --name mysql -e MYSQL_ROOT_PASSWORD=nhibernate -e MYSQL_USER=nhibernate -e MYSQL_PASSWORD=nhibernate -e MYSQL_DATABASE=nhibernate -p 3306:3306 --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 -d mysql:5.7 mysqld --lower_case_table_names=1 - - - name: Set up PostgreSQL - if: matrix.DB == 'PostgreSQL' - run: | - sudo systemctl start postgresql.service - pg_isready - sudo -u postgres psql --command="CREATE USER nhibernate PASSWORD 'nhibernate' CREATEDB" - - - name: Set up Firebird - if: matrix.DB == 'Firebird' - run: | - docker run --name firebird -e EnableWireCrypt=true -e FIREBIRD_USER=nhibernate -e FIREBIRD_PASSWORD=nhibernate -e ISC_PASSWORD=nhibernate -e FIREBIRD_DATABASE=nhibernate -p 3050:3050 -d jacobalberty/firebird - - - uses: actions/checkout@v2 - - name: Setup .NET - uses: actions/setup-dotnet@v1.8.0 - with: - dotnet-version: 2.1.x - - - name: Build and Test - run: | - pwsh -noprofile -command "& ./build.ps1 -TaskList Set-Configuration,Test -properties @{'Database' = '${{matrix.DB}}';'ConnectionString'='${{matrix.CONNECTION_STRING}}'}" From 37d52344ec3900729cc2e419529bb7bf02410b1c Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Fri, 22 Jul 2022 04:02:19 +0000 Subject: [PATCH 22/28] Update renovate.json --- renovate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index b5db99593e5..4e005bf1067 100644 --- a/renovate.json +++ b/renovate.json @@ -18,7 +18,7 @@ "Microsoft.AspNetCore.StaticFiles" ], "groupName": "Microsoft.AspNetCore 2.0", - "allowedVersions": "<2.0.0" + "allowedVersions": "~2.0.0" }, { "matchPackagePrefixes": [ From 3617cb0266b12a21f38e900812b581af3816f2a9 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Tue, 26 Jul 2022 02:48:33 +0000 Subject: [PATCH 23/28] Update renovate.json --- renovate.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/renovate.json b/renovate.json index 4e005bf1067..252f7050cc5 100644 --- a/renovate.json +++ b/renovate.json @@ -3,6 +3,11 @@ "extends": [ "config:base" ], + "labels": [ + "dependencies", + "p: Lowest", + "t: Task" + ], "packageRules": [ { "matchPackagePrefixes": [ @@ -18,7 +23,7 @@ "Microsoft.AspNetCore.StaticFiles" ], "groupName": "Microsoft.AspNetCore 2.0", - "allowedVersions": "~2.0.0" + "allowedVersions": "~2.1.0" }, { "matchPackagePrefixes": [ From 04bfa971682c03fe01fbc4a0ad370f0130f446a9 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Tue, 26 Jul 2022 04:17:33 +0000 Subject: [PATCH 24/28] Update renovate.json --- renovate.json | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/renovate.json b/renovate.json index 252f7050cc5..a1f6a2f89f4 100644 --- a/renovate.json +++ b/renovate.json @@ -3,12 +3,20 @@ "extends": [ "config:base" ], + "pruneStaleBranches": false, + "automerge": true, "labels": [ "dependencies", "p: Lowest", "t: Task" ], "packageRules": [ + { + "matchPaths": [ + "src/NHibernate.Test*/*.csproj" + ], + "labels": [ "c: Tests" ] + }, { "matchPackagePrefixes": [ "NUnit" From 2c989f70b5de1253720410f37e75c24aec0e1b1f Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Tue, 26 Jul 2022 04:21:55 +0000 Subject: [PATCH 25/28] Rename renovate.json to .github/renovate.json --- renovate.json => .github/renovate.json | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename renovate.json => .github/renovate.json (100%) diff --git a/renovate.json b/.github/renovate.json similarity index 100% rename from renovate.json rename to .github/renovate.json From ef133b087c5f7aa7fcaeda9050b2bf928e5842cf Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Tue, 26 Jul 2022 04:23:22 +0000 Subject: [PATCH 26/28] Update renovate.json --- .github/renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/renovate.json b/.github/renovate.json index a1f6a2f89f4..3021bcbecd2 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -3,6 +3,7 @@ "extends": [ "config:base" ], + "configMigration": true, "pruneStaleBranches": false, "automerge": true, "labels": [ From a58bc20d51f00a968e2e49a0b3a098f3ab54e901 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Tue, 26 Jul 2022 04:34:53 +0000 Subject: [PATCH 27/28] Update renovate.json --- .github/renovate.json | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.github/renovate.json b/.github/renovate.json index 3021bcbecd2..9c99edbac51 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -12,12 +12,6 @@ "t: Task" ], "packageRules": [ - { - "matchPaths": [ - "src/NHibernate.Test*/*.csproj" - ], - "labels": [ "c: Tests" ] - }, { "matchPackagePrefixes": [ "NUnit" From f715ecbc11ec3770c0790c43c108d0d76b1ab922 Mon Sep 17 00:00:00 2001 From: Alex Zaytsev Date: Wed, 27 Jul 2022 03:52:31 +0000 Subject: [PATCH 28/28] Update renovate.json --- .github/renovate.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/renovate.json b/.github/renovate.json index 9c99edbac51..20a3bce8475 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -6,6 +6,7 @@ "configMigration": true, "pruneStaleBranches": false, "automerge": true, + "platformAutomerge": true, "labels": [ "dependencies", "p: Lowest",