From 0204a805c2ef29d013abac801fec36cab3f308b0 Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Tue, 8 Sep 2020 16:41:49 +0000 Subject: [PATCH 1/5] Create CODE_OF_CONDUCT.md --- .github/CODE_OF_CONDUCT.md | 76 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 .github/CODE_OF_CONDUCT.md diff --git a/.github/CODE_OF_CONDUCT.md b/.github/CODE_OF_CONDUCT.md new file mode 100644 index 000000000..e46f754fb --- /dev/null +++ b/.github/CODE_OF_CONDUCT.md @@ -0,0 +1,76 @@ +# Contributor Covenant Code of Conduct + +## Our Pledge + +In the interest of fostering an open and welcoming environment, we as +contributors and maintainers pledge to making participation in our project and +our community a harassment-free experience for everyone, regardless of age, body +size, disability, ethnicity, sex characteristics, gender identity and expression, +level of experience, education, socio-economic status, nationality, personal +appearance, race, religion, or sexual identity and orientation. + +## Our Standards + +Examples of behavior that contributes to creating a positive environment +include: + +* Using welcoming and inclusive language +* Being respectful of differing viewpoints and experiences +* Gracefully accepting constructive criticism +* Focusing on what is best for the community +* Showing empathy towards other community members + +Examples of unacceptable behavior by participants include: + +* The use of sexualized language or imagery and unwelcome sexual attention or + advances +* Trolling, insulting/derogatory comments, and personal or political attacks +* Public or private harassment +* Publishing others' private information, such as a physical or electronic + address, without explicit permission +* Other conduct which could reasonably be considered inappropriate in a + professional setting + +## Our Responsibilities + +Project maintainers are responsible for clarifying the standards of acceptable +behavior and are expected to take appropriate and fair corrective action in +response to any instances of unacceptable behavior. + +Project maintainers have the right and responsibility to remove, edit, or +reject comments, commits, code, wiki edits, issues, and other contributions +that are not aligned to this Code of Conduct, or to ban temporarily or +permanently any contributor for other behaviors that they deem inappropriate, +threatening, offensive, or harmful. + +## Scope + +This Code of Conduct applies both within project spaces and in public spaces +when an individual is representing the project or its community. Examples of +representing a project or community include using an official project e-mail +address, posting via an official social media account, or acting as an appointed +representative at an online or offline event. Representation of a project may be +further defined and clarified by project maintainers. + +## Enforcement + +Instances of abusive, harassing, or otherwise unacceptable behavior may be +reported by contacting the project team at collinbarrett@users.noreply.github.com. All +complaints will be reviewed and investigated and will result in a response that +is deemed necessary and appropriate to the circumstances. The project team is +obligated to maintain confidentiality with regard to the reporter of an incident. +Further details of specific enforcement policies may be posted separately. + +Project maintainers who do not follow or enforce the Code of Conduct in good +faith may face temporary or permanent repercussions as determined by other +members of the project's leadership. + +## Attribution + +This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, +available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html + +[homepage]: https://www.contributor-covenant.org + +For answers to common questions about this code of conduct, see +https://www.contributor-covenant.org/faq From a5f003cbfd7e85975b046e429ce2e11da5522455 Mon Sep 17 00:00:00 2001 From: "dependabot-preview[bot]" <27856297+dependabot-preview[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2020 16:49:27 +0000 Subject: [PATCH 2/5] Create Dependabot config file --- .github/dependabot.yml | 56 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 .github/dependabot.yml diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 000000000..17e5794cd --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,56 @@ +version: 2 +updates: +- package-ecosystem: nuget + directory: "/services/directory/src/FilterLists.Directory.Api" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/services/directory/src/FilterLists.Directory.Api" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: nuget + directory: "/services/directory/tests/FilterLists.Directory.Infrastructure.Migrations.Tests" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: nuget + directory: "/services/directory/src/FilterLists.Directory.Infrastructure.Migrations" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: nuget + directory: "/services/directory/src/FilterLists.Directory.Infrastructure" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: nuget + directory: "/services/directory/src/FilterLists.Directory.Application" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: nuget + directory: "/services/directory/src/FilterLists.Directory.Domain" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: docker + directory: "/web" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 +- package-ecosystem: npm + directory: "/web" + schedule: + interval: daily + time: "11:00" + open-pull-requests-limit: 99 From 9ac9acf5fa32ba14191fbf034b4dc97a35ad1013 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2020 18:13:07 +0000 Subject: [PATCH 3/5] build(deps): bump dotnet/core/aspnet Bumps dotnet/core/aspnet from 3.1-alpine to 3.1.7-alpine. Signed-off-by: dependabot[bot] --- services/directory/src/FilterLists.Directory.Api/Dockerfile.dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev b/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev index 83c621dba..8d8440fd0 100644 --- a/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev +++ b/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev @@ -1,5 +1,5 @@ # init base for Visual Studio debugging -FROM mcr.microsoft.com/dotnet/core/aspnet:3.1-alpine AS base +FROM mcr.microsoft.com/dotnet/core/aspnet:3.1.7-alpine AS base WORKDIR /app EXPOSE 80 From 9fbda1167ec8ecca55bbc55d59089e4fa43a3310 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2020 18:13:05 +0000 Subject: [PATCH 4/5] build(deps): bump dotnet/core/sdk Bumps dotnet/core/sdk from 3.1-alpine to 3.1.401-alpine. Signed-off-by: dependabot[bot] --- services/directory/src/FilterLists.Directory.Api/Dockerfile | 2 +- services/directory/src/FilterLists.Directory.Api/Dockerfile.dev | 2 +- .../directory/src/FilterLists.Directory.Api/Dockerfile.migrate | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/services/directory/src/FilterLists.Directory.Api/Dockerfile b/services/directory/src/FilterLists.Directory.Api/Dockerfile index 22129f997..3c8992ca3 100644 --- a/services/directory/src/FilterLists.Directory.Api/Dockerfile +++ b/services/directory/src/FilterLists.Directory.Api/Dockerfile @@ -4,7 +4,7 @@ WORKDIR /app EXPOSE 80 # init build -FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.401-alpine AS build # restore API WORKDIR /src diff --git a/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev b/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev index 8d8440fd0..4f415a217 100644 --- a/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev +++ b/services/directory/src/FilterLists.Directory.Api/Dockerfile.dev @@ -4,7 +4,7 @@ WORKDIR /app EXPOSE 80 # init build -FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS build +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.401-alpine AS build # restore API WORKDIR /src diff --git a/services/directory/src/FilterLists.Directory.Api/Dockerfile.migrate b/services/directory/src/FilterLists.Directory.Api/Dockerfile.migrate index 05d6b75f8..dc2ae1293 100644 --- a/services/directory/src/FilterLists.Directory.Api/Dockerfile.migrate +++ b/services/directory/src/FilterLists.Directory.Api/Dockerfile.migrate @@ -1,5 +1,5 @@ # init test-migrations -FROM mcr.microsoft.com/dotnet/core/sdk:3.1-alpine AS test-migrations +FROM mcr.microsoft.com/dotnet/core/sdk:3.1.401-alpine AS test-migrations ENTRYPOINT ["dotnet", "test", "--logger:trx"] # restore From 7c874b4b21b32a716bdc6797487a75be25ca57c2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Sep 2020 18:13:07 +0000 Subject: [PATCH 5/5] build(deps): bump dotnet/core/runtime-deps Bumps dotnet/core/runtime-deps from 3.1-alpine to 3.1.7-alpine. Signed-off-by: dependabot[bot] --- services/directory/src/FilterLists.Directory.Api/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/directory/src/FilterLists.Directory.Api/Dockerfile b/services/directory/src/FilterLists.Directory.Api/Dockerfile index 3c8992ca3..d4a499007 100644 --- a/services/directory/src/FilterLists.Directory.Api/Dockerfile +++ b/services/directory/src/FilterLists.Directory.Api/Dockerfile @@ -1,5 +1,5 @@ # init base -FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1-alpine AS base +FROM mcr.microsoft.com/dotnet/core/runtime-deps:3.1.7-alpine AS base WORKDIR /app EXPOSE 80