Skip to content

Commit

Permalink
Merge pull request #4915 from pixelfed/staging
Browse files Browse the repository at this point in the history
Bump version to v0.11.11
  • Loading branch information
dansup committed Feb 10, 2024
2 parents 8ab9951 + e5bbe93 commit 8fa6ae4
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 7 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
@@ -1,6 +1,11 @@
# Release Notes

## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.10...dev)
## [Unreleased](https://github.com/pixelfed/pixelfed/compare/v0.11.11...dev)

## [v0.11.11 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.10...v0.11.11)

### Fixes
- Fix api endpoints ([fd7f5dbb](https://github.com/pixelfed/pixelfed/commit/fd7f5dbb))

## [v0.11.10 (2024-02-09)](https://github.com/pixelfed/pixelfed/compare/v0.11.9...v0.11.10)

Expand Down
11 changes: 6 additions & 5 deletions app/Providers/AuthServiceProvider.php
Expand Up @@ -31,11 +31,6 @@ public function boot()
if(config('instance.oauth.pat.enabled')) {
Passport::personalAccessClientId(config('instance.oauth.pat.id'));
}
Passport::setDefaultScope([
'read',
'write',
'follow',
]);

Passport::tokensCan([
'read' => 'Full read access to your account',
Expand All @@ -45,6 +40,12 @@ public function boot()
'admin:write' => 'Modify all data on the server',
'push' => 'Receive your push notifications'
]);

Passport::setDefaultScope([
'read',
'write',
'follow',
]);
}

// Gate::define('viewWebSocketsDashboard', function ($user = null) {
Expand Down
2 changes: 1 addition & 1 deletion config/pixelfed.php
Expand Up @@ -23,7 +23,7 @@
| This value is the version of your Pixelfed instance.
|
*/
'version' => '0.11.10',
'version' => '0.11.11',

/*
|--------------------------------------------------------------------------
Expand Down

0 comments on commit 8fa6ae4

Please sign in to comment.