From 4dc9ce0b9d09f31257e9c429c44af50acd61ddb5 Mon Sep 17 00:00:00 2001 From: Robert Wagner Date: Tue, 23 Jan 2024 14:37:56 +1000 Subject: [PATCH] Initial commit --- .gitattributes | 17 +++ .github/ISSUE_TEMPLATE/bug.yaml | 38 ++++++ .github/ISSUE_TEMPLATE/config.yml | 10 ++ .github/ISSUE_TEMPLATE/enhancement.yaml | 27 ++++ .github/dependabot.yml | 9 ++ .github/pull_request_template.md | 6 + .github/workflows/main.yml | 78 ++++++++++++ .gitignore | 96 +++++++++++++++ GitVersion.yml | 1 + README.md | 16 +++ license.txt | 7 ++ src/.editorconfig | 123 +++++++++++++++++++ src/Directory.Build.props | 27 ++++ src/Tests/Tests.csproj | 30 +++++ src/dbup-icon.png | Bin 0 -> 5114 bytes src/dbup-newprovider.sln | 48 ++++++++ src/dbup-newprovider.sln.DotSettings | 9 ++ src/dbup-newprovider/dbup-newprovider.csproj | 37 ++++++ src/dbup.snk | Bin 0 -> 596 bytes 19 files changed, 579 insertions(+) create mode 100644 .gitattributes create mode 100644 .github/ISSUE_TEMPLATE/bug.yaml create mode 100644 .github/ISSUE_TEMPLATE/config.yml create mode 100644 .github/ISSUE_TEMPLATE/enhancement.yaml create mode 100644 .github/dependabot.yml create mode 100644 .github/pull_request_template.md create mode 100644 .github/workflows/main.yml create mode 100644 .gitignore create mode 100644 GitVersion.yml create mode 100644 README.md create mode 100644 license.txt create mode 100644 src/.editorconfig create mode 100644 src/Directory.Build.props create mode 100644 src/Tests/Tests.csproj create mode 100644 src/dbup-icon.png create mode 100644 src/dbup-newprovider.sln create mode 100644 src/dbup-newprovider.sln.DotSettings create mode 100644 src/dbup-newprovider/dbup-newprovider.csproj create mode 100644 src/dbup.snk diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..bdb0cab --- /dev/null +++ b/.gitattributes @@ -0,0 +1,17 @@ +# Auto detect text files and perform LF normalization +* text=auto + +# Custom for Visual Studio +*.cs diff=csharp + +# Standard to msysgit +*.doc diff=astextplain +*.DOC diff=astextplain +*.docx diff=astextplain +*.DOCX diff=astextplain +*.dot diff=astextplain +*.DOT diff=astextplain +*.pdf diff=astextplain +*.PDF diff=astextplain +*.rtf diff=astextplain +*.RTF diff=astextplain diff --git a/.github/ISSUE_TEMPLATE/bug.yaml b/.github/ISSUE_TEMPLATE/bug.yaml new file mode 100644 index 0000000..5c0579e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug.yaml @@ -0,0 +1,38 @@ +name: 🪲 Bug Report +description: File a bug report +title: "Something didn't work" +labels: ["bug", "triage"] +body: + - type: markdown + attributes: + value: | + For help with using the library and "how do I" please see the documentation or post on StackOverflow. + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: input + id: version + attributes: + label: Library Version + description: Which version of the library did you find the bug in? + placeholder: 1.0.0 + validations: + required: true + - type: textarea + id: what-happened + attributes: + label: What happened? + description: Also tell us, what did you expect to happen? + placeholder: Tell us what you see! + validations: + required: true + - type: textarea + id: logs + attributes: + label: Relevant log output + description: Please copy and paste any relevant log output. This will be automatically formatted into code, so no need for backticks. + render: shell diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100644 index 0000000..80422ee --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,10 @@ +blank_issues_enabled: false +contact_links: + - name: DbUp Core Issue Repo + url: https://github.com/DbUp/DbUp/issues + about: If the issue or bug is not specific to this provider raise an issue in the main repo + - name: DbUp Documentation + url: https://dbup.readthedocs.io/ + - name: StackOverflow DbUp tag + url: https://stackoverflow.com/questions/tagged/dbup + about: For "How do I" questions, please post on StackOverflow diff --git a/.github/ISSUE_TEMPLATE/enhancement.yaml b/.github/ISSUE_TEMPLATE/enhancement.yaml new file mode 100644 index 0000000..8361086 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/enhancement.yaml @@ -0,0 +1,27 @@ +name: 🆕 Enhancement +description: Suggest a new feature or enhancement +title: "Something new" +labels: ["enhancement", "triage"] +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing open and closed issues + required: true + - type: textarea + id: description + attributes: + label: Description + placeholder: Sell us the enhancement + validations: + required: true + - type: textarea + id: impact + attributes: + label: What is the impact? + description: How will this impact existing users? Is this a breaking change? Is this a common or edge use case? + placeholder: Describe the impact this enhancement would have + validations: + required: true diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 0000000..7299d19 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,9 @@ +version: 2 + +updates: + - package-ecosystem: "nuget" + directory: "/src/" + schedule: + interval: "weekly" + ignore: +# - dependency-name: "Foo*" diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md new file mode 100644 index 0000000..495ce36 --- /dev/null +++ b/.github/pull_request_template.md @@ -0,0 +1,6 @@ +# Checklist +- [ ] I have read the [Contributing Guide](https://github.com/DbUp/DbUp/blob/master/CONTRIBUTING.md) +- [ ] I have checked to ensure this does not introduce an unintended breaking changes +- [ ] I have considered appropriate testing for my change + +# Description diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..18198a1 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,78 @@ +name: CI + +on: + push: + pull_request: + workflow_dispatch: + +jobs: + build: + runs-on: windows-latest # Use Ubuntu in v5.0 + + env: + DOTNET_NOLOGO: true + DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true # Avoid pre-populating the NuGet package cache + + steps: + - uses: actions/checkout@v3 + with: + fetch-depth: 0 # all + + - name: Setup .NET 2.0 # Remove in v5.0 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 2.0.x + + - name: Setup .NET 8.0 + uses: actions/setup-dotnet@v1 + with: + dotnet-version: 8.0.x + + - name: Install GitVersion + uses: gittools/actions/gitversion/setup@v0 + with: + versionSpec: '5.x' + + - name: Run GitVersion + id: gitversion + uses: gittools/actions/gitversion/execute@v0 + + - name: Display SemVer + run: | + echo "SemVer: $env:GitVersion_SemVer" + + - name: Add DbUp NuGet Source + run: dotnet nuget add source --name DbUp --username DbUp --password ${{ secrets.GITHUB_TOKEN }} --store-password-in-clear-text https://nuget.pkg.github.com/DbUp/index.json + + - name: Restore + run: dotnet restore + working-directory: src + + - name: Build + run: dotnet build -c Release --no-restore /p:Version=$env:GitVersion_SemVer + working-directory: src + + - name: Test + run: dotnet test --no-build -c Release --logger trx --logger "console;verbosity=detailed" --results-directory ../artifacts + working-directory: src + + - name: Pack + run: dotnet pack --no-build -c Release -o ../artifacts /p:Version=$env:GitVersion_SemVer + working-directory: src + + - name: Push NuGet packages to GitHub Packages ⬆️ + working-directory: artifacts + run: dotnet nuget push *.nupkg --api-key ${{ secrets.GITHUB_TOKEN }} --source "https://nuget.pkg.github.com/DbUp/index.json" + + - name: Push NuGet packages to NuGet ⬆️ + if: ${{ steps.gitversion.outputs.preReleaseLabel == '' }} + working-directory: artifacts + run: dotnet nuget push *.nupkg --api-key ${{ secrets.NUGET_APIKEY }} --source https://api.nuget.org/v3/index.json + + - name: Test Report 🧪 + uses: dorny/test-reporter@v1 + if: ${{ always() }} + with: + name: Tests + path: artifacts/*.trx + reporter: dotnet-trx diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ff117b8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,96 @@ +# Build Folders (you can keep bin if you'd like, to store dlls and pdbs) +bin +obj + +# mstest test results +TestResults + + +*.*[~] +*.swp +*.userprefs +*.test-cache +*.pidb +*.*scc +*.FileListAbsolute.txt +*.aps +*.bak +*.[Cc]ache +*.clw +*.eto +*.fb6lck +*.fbl6 +*.fbpInf +*.ilk +*.lib +*.log +*.ncb +*.nlb +*.obj +*.patch +*.pch +*.pdb +*.plg +*.[Pp]ublish.xml +*.rdl.data +*.sbr +*.scc +*.sig +*.sqlsuo +*.suo +*.svclog +*.tlb +*.tlh +*.tli +*.tmp +*.user +*.vshost.* +*DXCore.Solution +*_i.c +*_p.c +Ankh.Load +Backup* +CVS/ +PrecompiledWeb/ +UpgradeLog*.* +[Bb]in/ +[Dd]ebug/ +[Oo]bj/ +[Rr]elease/ +[Tt]humbs.db +test-results/ +_UpgradeReport_Files +_[Rr]e[Ss]harper.*/ +_TeamCity.*/ +hgignore[.-]* +ignore[.-]* +svnignore[.-]* +lint.db +src/FunnelWeb.Web/App_Data/ClientDependency +files\* +files/* +Files/* +Temp/* +build/Artifacts/ +build/Published/ +build/TestResult.xml +[pP]ublish +lib +packages + +.DS_Store +*.pidb +*.orig +src/packages/ +*.received.txt +src/_NCrunch_DbUp +*.received.cs +dbup*.nupkg +.idea + +src/.vs/ +project.lock.json +project.lock.json +project.lock.json +tools/ +artifacts/ diff --git a/GitVersion.yml b/GitVersion.yml new file mode 100644 index 0000000..c311488 --- /dev/null +++ b/GitVersion.yml @@ -0,0 +1 @@ +mode: Mainline \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..d71f018 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/DbUp/dbup-newprovider/CI/main)](https://github.com/DbUp/dbup-newprovider/actions/workflows/main.yml?query=branch%3Amain) +[![NuGet](https://img.shields.io/nuget/dt/dbup-newprovider.svg)](https://www.nuget.org/packages/dbup-newprovider) +[![NuGet](https://img.shields.io/nuget/v/dbup-newprovider.svg)](https://www.nuget.org/packages/dbup-newprovider) +[![Prerelease](https://img.shields.io/nuget/vpre/dbup-newprovider?color=orange&label=prerelease)](https://www.nuget.org/packages/dbup-newprovider) + +# DbUp NewProvider support +DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date. + +## Getting Help +To learn more about DbUp check out the [documentation](https://dbup.readthedocs.io/en/latest/) + +Please only log issue related to NewProvider support in this repo. For cross cutting issues, please use our [main issue list](https://github.com/DbUp/DbUp/issues). + +# Contributing + +See the [readme in our main repo](https://github.com/DbUp/DbUp/blob/master/README.md) for how to get started and contribute. \ No newline at end of file diff --git a/license.txt b/license.txt new file mode 100644 index 0000000..1502073 --- /dev/null +++ b/license.txt @@ -0,0 +1,7 @@ +Copyright (C) 2015 DbUp contributors. + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/src/.editorconfig b/src/.editorconfig new file mode 100644 index 0000000..3f25e8c --- /dev/null +++ b/src/.editorconfig @@ -0,0 +1,123 @@ +# To learn more about .editorconfig see https://aka.ms/editorconfigdocs +############################### +# Core EditorConfig Options # +############################### +# All files +[*] +indent_style = space +# Code files +[*.{cs,csx,vb,vbx}] +indent_size = 4 +insert_final_newline = true +charset = utf-8-bom +############################### +# .NET Coding Conventions # +############################### +[*.{cs,vb}] +# Organize usings +dotnet_sort_system_directives_first = true +# this. preferences +dotnet_style_qualification_for_field = false:silent +dotnet_style_qualification_for_property = false:silent +dotnet_style_qualification_for_method = false:silent +dotnet_style_qualification_for_event = false:silent +# Language keywords vs BCL types preferences +dotnet_style_predefined_type_for_locals_parameters_members = true:silent +dotnet_style_predefined_type_for_member_access = true:silent +# Parentheses preferences +dotnet_style_parentheses_in_arithmetic_binary_operators = always_for_clarity:silent +dotnet_style_parentheses_in_relational_binary_operators = always_for_clarity:silent +dotnet_style_parentheses_in_other_binary_operators = always_for_clarity:silent +dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent +# Modifier preferences +dotnet_style_require_accessibility_modifiers = omit_if_default:silent +dotnet_style_readonly_field = true:suggestion +# Expression-level preferences +dotnet_style_object_initializer = true:suggestion +dotnet_style_collection_initializer = true:suggestion +dotnet_style_explicit_tuple_names = true:suggestion +dotnet_style_null_propagation = true:suggestion +dotnet_style_coalesce_expression = true:suggestion +dotnet_style_prefer_is_null_check_over_reference_equality_method = true:silent +dotnet_prefer_inferred_tuple_names = true:suggestion +dotnet_prefer_inferred_anonymous_type_member_names = true:suggestion +dotnet_style_prefer_auto_properties = true:silent +dotnet_style_prefer_conditional_expression_over_assignment = true:silent +dotnet_style_prefer_conditional_expression_over_return = true:silent +############################### +# Naming Conventions # +############################### +# Style Definitions +dotnet_naming_style.pascal_case_style.capitalization = pascal_case +# Use PascalCase for constant fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = suggestion +dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields +dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style +dotnet_naming_symbols.constant_fields.applicable_kinds = field +dotnet_naming_symbols.constant_fields.applicable_accessibilities = * +dotnet_naming_symbols.constant_fields.required_modifiers = const +############################### +# C# Coding Conventions # +############################### +[*.cs] +# var preferences +csharp_style_var_for_built_in_types = true:silent +csharp_style_var_when_type_is_apparent = true:silent +csharp_style_var_elsewhere = true:silent +# Expression-bodied members +csharp_style_expression_bodied_methods = when_on_single_line:none +csharp_style_expression_bodied_constructors = false:suggestion +csharp_style_expression_bodied_operators = false:silent +csharp_style_expression_bodied_properties = true:silent +csharp_style_expression_bodied_indexers = true:silent +csharp_style_expression_bodied_accessors = true:silent +# Pattern matching preferences +csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion +csharp_style_pattern_matching_over_as_with_null_check = true:suggestion +# Null-checking preferences +csharp_style_throw_expression = true:suggestion +csharp_style_conditional_delegate_call = true:suggestion +# Modifier preferences +csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:suggestion +# Expression-level preferences +csharp_prefer_braces = when_multiline:suggestion +csharp_style_deconstructed_variable_declaration = true:suggestion +csharp_prefer_simple_default_expression = true:suggestion +csharp_style_pattern_local_over_anonymous_function = true:suggestion +csharp_style_inlined_variable_declaration = true:suggestion +############################### +# C# Formatting Rules # +############################### +# New line preferences +csharp_new_line_before_open_brace = all +csharp_new_line_before_else = true +csharp_new_line_before_catch = true +csharp_new_line_before_finally = true +csharp_new_line_before_members_in_object_initializers = true +csharp_new_line_before_members_in_anonymous_types = true +csharp_new_line_between_query_expression_clauses = true +# Indentation preferences +csharp_indent_case_contents = true +csharp_indent_switch_labels = true +csharp_indent_labels = flush_left +# Space preferences +csharp_space_after_cast = false +csharp_space_after_keywords_in_control_flow_statements = true +csharp_space_between_method_call_parameter_list_parentheses = false +csharp_space_between_method_declaration_parameter_list_parentheses = false +csharp_space_between_parentheses = false +csharp_space_before_colon_in_inheritance_clause = true +csharp_space_after_colon_in_inheritance_clause = true +csharp_space_around_binary_operators = before_and_after +csharp_space_between_method_declaration_empty_parameter_list_parentheses = false +csharp_space_between_method_call_name_and_opening_parenthesis = false +csharp_space_between_method_call_empty_parameter_list_parentheses = false +# Wrapping preferences +csharp_preserve_single_line_statements = true +csharp_preserve_single_line_blocks = true +############################### +# VB Coding Conventions # +############################### +[*.vb] +# Modifier preferences +visual_basic_preferred_modifier_order = Partial,Default,Private,Protected,Public,Friend,NotOverridable,Overridable,MustOverride,Overloads,Overrides,MustInherit,NotInheritable,Static,Shared,Shadows,ReadOnly,WriteOnly,Dim,Const,WithEvents,Widening,Narrowing,Custom,Async:suggestion diff --git a/src/Directory.Build.props b/src/Directory.Build.props new file mode 100644 index 0000000..fb1c760 --- /dev/null +++ b/src/Directory.Build.props @@ -0,0 +1,27 @@ + + + + + https://github.com/orgs/DbUp/people + https://github.com/DbUp/dbup-newprovider/releases + https://dbup.github.io + MIT + https://github.com/dbup-newprovider/dbup-newprovider.git + latest + true + + + + + + true + + + true + + + embedded + + + + diff --git a/src/Tests/Tests.csproj b/src/Tests/Tests.csproj new file mode 100644 index 0000000..ca51bd6 --- /dev/null +++ b/src/Tests/Tests.csproj @@ -0,0 +1,30 @@ + + + + net462;net8 + Tests + DbUp.NewProvider.Tests + true + + enable + $(NoWarn);NETSDK1138 + latest + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + diff --git a/src/dbup-icon.png b/src/dbup-icon.png new file mode 100644 index 0000000000000000000000000000000000000000..004dec7d38908ffc8666367ea1fa695e65f89348 GIT binary patch literal 5114 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 + DO_NOT_SHOW + Implicit + Implicit + SQ + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <Policy Inspect="True" Prefix="" Suffix="" Style="aaBb" /> + <data><IncludeFilters /><ExcludeFilters /></data> + <data /> \ No newline at end of file diff --git a/src/dbup-newprovider/dbup-newprovider.csproj b/src/dbup-newprovider/dbup-newprovider.csproj new file mode 100644 index 0000000..39d07a7 --- /dev/null +++ b/src/dbup-newprovider/dbup-newprovider.csproj @@ -0,0 +1,37 @@ + + + + DbUp makes it easy to deploy and upgrade SQL Server databases. This package adds Amazon NewProvider support. + DbUp NewProvider Support + netstandard1.3;netstandard2.0;net35;net45 + dbup-newprovider + DbUp.NewProvider + ../dbup.snk + true + https://github.com/DbUp/dbup-newprovider.git + dbup_newprovider + dbup-newprovider + dbup-icon.png + + + + $(DefineConstants);NPGSQLv2 + + + + + + + + + + + + + + + + + + + diff --git a/src/dbup.snk b/src/dbup.snk new file mode 100644 index 0000000000000000000000000000000000000000..1a7adc609951a96338c0e0934d4df2d104a9854e GIT binary patch literal 596 zcmV-a0;~N80ssI2Bme+XQ$aES1ONa50097pZ)n9yLg$xGSkf2#uZy*U)`Ms;acqkn z4UDK_6oZWo?tUw>l<5GRN4GH|eCw+U)1uB?3otUf(d=E&KbLvT{XB^YM!9fs#t%UQ zq}gexX`(P`b|1?bxbKbGKSGqLzYi8sG2Eg(oJmbnm``&aieLLIRYTuQKha8l$4l;U zc9gmTN%u{+OLK!D^*GmEQFLUm(gISfzZaR)>D_=v{*n7GReHPGRs?+�yECHgQ%) z(Wz^K6v~WvtAqP@@wJ(LKafz8TSZH7A)QNUuiyLkWH8HsQws53-p~q#*2RZO{SQJQ z@kv~qRrUA9%#jM0_PBp^OnLmOjfhh8_<#%_&=Tm}EQ80opbH)1zsH#`Gc1deQ5m zRO}1&&5gBUJI=E_?qF50EpM zxNVk(@3MJ8{$xXMt04H(yd3<0CuV&;{m&VVN(L;ALfsZwA|{!Hg6GySfU`&Qf-7?K z=N0O$Q{rFz@jQi}3M0q)Yz?5D<&To