Skip to content

Commit

Permalink
Implement auth (#317)
Browse files Browse the repository at this point in the history
  • Loading branch information
PacoVK authored Oct 26, 2023
1 parent 29c8769 commit 9127b31
Show file tree
Hide file tree
Showing 126 changed files with 6,708 additions and 861 deletions.
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

0 comments on commit 9127b31

Please sign in to comment.