Skip to content

Commit 33f4a2b

Browse files
authored
feat!: remove deprecated PublicKeyCredentialSourceRepository and refactor all signature methods (#441)
BREAKING CHANGE: `CredentialRepository` no longer implements `PublicKeyCredentialSourceRepository`. BREAKING CHANGE: All method signatures are now well defined, the doc-block type-hint have been deleted. This should not impact you as it's backward compatible.
1 parent 17bd9b3 commit 33f4a2b

File tree

55 files changed

+254
-1168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

55 files changed

+254
-1168
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
.gitignore export-ignore
66
.releaserc export-ignore
77
.styleci.yml export-ignore
8-
CHANGELOG.md export-ignore
98
crowdin.yml export-ignore
109
phpstan.neon export-ignore
1110
phpunit.xml export-ignore

.github/workflows/tests.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ jobs:
148148
id: coverage
149149
run: |
150150
SONAR_COVERAGE=$(ls -m --format=comma results/coverage*.xml | sed -e ':a;N;$!ba;s/\n//g; s/ //g;')
151-
echo "::set-output name=list::$SONAR_COVERAGE"
151+
echo "list=$SONAR_COVERAGE" >> $GITHUB_OUTPUT
152152
153153
- name: SonarCloud Scan
154154
if: env.SONAR_TOKEN != ''
@@ -193,7 +193,6 @@ jobs:
193193
extra_plugins: |
194194
195195
@semantic-release/changelog@6
196-
semantic-release-github-pullrequest
197196
198197
- name: New release published
199198
if: steps.semantic.outputs.new_release_published == 'true'

.releaserc

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -11,16 +11,6 @@
1111
["@semantic-release/commit-analyzer", {"preset": "conventionalcommits"}],
1212
["@semantic-release/release-notes-generator", {"preset": "conventionalcommits"}],
1313
["@semantic-release/changelog", {"changelogFile": "CHANGELOG.md"}],
14-
"@semantic-release/github",
15-
[
16-
"semantic-release-github-pullrequest",
17-
{
18-
"assets": ["CHANGELOG.md"],
19-
"labels": [
20-
"semantic-release",
21-
"auto-squash"
22-
]
23-
}
24-
]
14+
"@semantic-release/github"
2515
]
2616
}

CHANGELOG.md

Lines changed: 0 additions & 208 deletions
This file was deleted.

database/migrations/2019_03_29_163611_add_webauthn.php

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@
66
use Illuminate\Database\Schema\Blueprint;
77
use Illuminate\Support\Facades\Schema;
88

9-
class AddWebauthn extends Migration
9+
return new class() extends Migration
1010
{
1111
/**
1212
* Run the migrations.
13-
*
14-
* @return void
1513
*/
16-
public function up()
14+
public function up(): void
1715
{
1816
Schema::create('webauthn_keys', function (Blueprint $table) {
1917
$table->id();
@@ -42,11 +40,9 @@ public function up()
4240

4341
/**
4442
* Reverse the migrations.
45-
*
46-
* @return void
4743
*/
48-
public function down()
44+
public function down(): void
4945
{
5046
Schema::dropIfExists('webauthn_keys');
5147
}
52-
}
48+
};

0 commit comments

Comments
 (0)