Skip to content

Commit

Permalink
feat!: remove deprecated PublicKeyCredentialSourceRepository and refa…
Browse files Browse the repository at this point in the history
…ctor 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.
  • Loading branch information
asbiin authored Sep 4, 2023
1 parent 17bd9b3 commit 33f4a2b
Show file tree
Hide file tree
Showing 55 changed files with 254 additions and 1,168 deletions.
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

0 comments on commit 33f4a2b

Please sign in to comment.