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

feat!: remove deprecated PublicKeyCredentialSourceRepository and refactor all signature methods #441

Merged
merged 7 commits into from
Sep 4, 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 .gitattributes
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
.gitignore export-ignore
.releaserc export-ignore
.styleci.yml export-ignore
CHANGELOG.md export-ignore
crowdin.yml export-ignore
phpstan.neon export-ignore
phpunit.xml export-ignore
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
id: coverage
run: |
SONAR_COVERAGE=$(ls -m --format=comma results/coverage*.xml | sed -e ':a;N;$!ba;s/\n//g; s/ //g;')
echo "::set-output name=list::$SONAR_COVERAGE"
echo "list=$SONAR_COVERAGE" >> $GITHUB_OUTPUT

- name: SonarCloud Scan
if: env.SONAR_TOKEN != ''
Expand Down Expand Up @@ -193,7 +193,6 @@ jobs:
extra_plugins: |
conventional-changelog-conventionalcommits@5.0.0
@semantic-release/changelog@6
semantic-release-github-pullrequest

- name: New release published
if: steps.semantic.outputs.new_release_published == 'true'
Expand Down
12 changes: 1 addition & 11 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,6 @@
["@semantic-release/commit-analyzer", {"preset": "conventionalcommits"}],
["@semantic-release/release-notes-generator", {"preset": "conventionalcommits"}],
["@semantic-release/changelog", {"changelogFile": "CHANGELOG.md"}],
"@semantic-release/github",
[
"semantic-release-github-pullrequest",
{
"assets": ["CHANGELOG.md"],
"labels": [
"semantic-release",
"auto-squash"
]
}
]
"@semantic-release/github"
]
}
208 changes: 0 additions & 208 deletions CHANGELOG.md

This file was deleted.

12 changes: 4 additions & 8 deletions database/migrations/2019_03_29_163611_add_webauthn.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;

class AddWebauthn extends Migration
return new class() extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
public function up(): void
{
Schema::create('webauthn_keys', function (Blueprint $table) {
$table->id();
Expand Down Expand Up @@ -42,11 +40,9 @@ public function up()

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
public function down(): void
{
Schema::dropIfExists('webauthn_keys');
}
}
};
Loading
Loading