Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: stripe/stripe-dotnet
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: stripe/stripe-dotnet
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: beta
Choose a head ref
Able to merge. These branches can be automatically merged.
Loading
Showing 1,171 changed files with 47,953 additions and 429 deletions.
2 changes: 2 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -13,6 +13,8 @@ dotnet_style_qualification_for_method = true
# IDE0003: Remove qualification
dotnet_style_qualification_for_field = true

[CHANGELOG.md]
trim_trailing_whitespace = false
[src/Stripe.net/**/*.cs]

dotnet_diagnostic.CA2007.severity = error
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -21,7 +21,7 @@ jobs:
build:
name: Build and test

# TODO: this step is not compatible with ubuntu 24 LTS, so we pin the version here instead of using ubuntu-latest
# TODO: this step is not compatible with ubuntu 24 LTS, so we pin the version here instead of using ubuntu-latest
runs-on: ubuntu-22.04

steps:
@@ -47,6 +47,9 @@ jobs:
run: dotnet build src -c Release /p:ContinuousIntegrationBuild=true

- uses: stripe/openapi/actions/stripe-mock@master
with:
# Used to determine if stripe-mock runs in beta mode
base: ${{ github.base_ref }}

- name: Run test suite
run: just ci-test
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -6,6 +6,9 @@
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false,
},

"[csharp]": {
"editor.detectIndentation": false,
Loading