Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement auth #317

Merged
merged 20 commits into from
Oct 26, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ nb-configuration.xml
*.rej

# Local environment
.env
dev/certs
src/main/resources/META-INF/resources/*
!src/main/resources/META-INF/resources/.gitkeep
Expand Down
85 changes: 62 additions & 23 deletions README.md

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions changelog.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
== Changelog

All notable changes to this project will be documented in this file

The format is based on https://keepachangelog.com/en/1.0.0/[Keep a Changelog],
and this project adheres to https://semver.org/spec/v2.0.0.html[semantic versioning].

== Unreleased

=== fixes

=== added

=== changed

== 0.6.0-rc1 - 2023-10-26

=== fixes

=== added

https://github.com/PacoVK/tapir/pull/317[#317 - Implement authentication via OIDC and Deploy Keys]

=== changed
8 changes: 1 addition & 7 deletions checkstyle-suppressions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
"http://www.puppycrawl.com/dtds/suppressions_1_0.dtd">
<suppressions>
<suppress checks="Javadoc" files="."/>
<suppress checks="ParameterName"
files="TfSecReport.java"/>
<suppress checks="MemberName"
files="TfSecReport.java"/>
<suppress checks="ParameterName"
files="ProviderTerraformDto.java"/>
<suppress checks="MemberName"
Expand All @@ -21,7 +17,5 @@
<suppress checks="MemberName"
files="Provider.java"/>
<suppress checks="AbbreviationAsWordInName"
files="ISearchService.java"/>
<suppress checks="AbbreviationAsWordInName"
files="IStorageInterface.java"/>
files="IRepository.java"/>
</suppressions>
14 changes: 14 additions & 0 deletions dev/docs/release.adoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
= How to release

Tapir releases use [semantic versioning](https://semver.org/).

== Bump version

- set the version in `pom.xml`
- set the version in `src/main/resources/application.yml`
- set the version in `src/main/webui/package.json`
- update test snapshots

== Publish
- update the changelog
- Draft a new release on GitHub
Loading