@atproto/api
Advanced tools
Comparing version 0.7.3 to 0.7.4
# @atproto/api | ||
## 0.7.4 | ||
### Patch Changes | ||
- [#1966](https://github.com/bluesky-social/atproto/pull/1966) [`8f3f43cb`](https://github.com/bluesky-social/atproto/commit/8f3f43cb40f79ff7c52f81290daec55cfb000093) Thanks [@pfrazee](https://github.com/pfrazee)! - Fix to the application of the no-unauthenticated label | ||
## 0.7.3 | ||
@@ -4,0 +10,0 @@ |
@@ -274,2 +274,8 @@ { | ||
"behaviors": { | ||
"content": { | ||
"cause": "label:!no-unauthenticated", | ||
"filter": true, | ||
"blur": true, | ||
"noOverride": true | ||
}, | ||
"avatar": { | ||
@@ -276,0 +282,0 @@ "cause": "label:!no-unauthenticated", |
@@ -188,2 +188,8 @@ { | ||
"behaviors": { | ||
"account": { | ||
"cause": "label:!no-unauthenticated", | ||
"filter": true, | ||
"blur": true, | ||
"noOverride": true | ||
}, | ||
"profile": { | ||
@@ -190,0 +196,0 @@ "cause": "label:!no-unauthenticated", |
@@ -289,6 +289,6 @@ <!-- this doc is generated by ./scripts/docs/post-moderation-behaviors.mjs --> | ||
<td> | ||
❌ | ||
</td> | ||
<td> | ||
🚫 | ||
</td> | ||
@@ -295,0 +295,0 @@ <td> |
@@ -155,5 +155,6 @@ <!-- this doc is generated by ./scripts/docs/profile-moderation-behaviors.mjs --> | ||
<td> | ||
❌ | ||
</td> | ||
<td> | ||
🚫 | ||
@@ -160,0 +161,0 @@ </td> |
{ | ||
"name": "@atproto/api", | ||
"version": "0.7.3", | ||
"version": "0.7.4", | ||
"license": "MIT", | ||
@@ -31,3 +31,3 @@ "description": "Client library for atproto and Bluesky", | ||
"@atproto/lex-cli": "^0.2.5", | ||
"@atproto/dev-env": "^0.2.20" | ||
"@atproto/dev-env": "^0.2.21" | ||
}, | ||
@@ -34,0 +34,0 @@ "scripts": { |
@@ -44,4 +44,6 @@ import { ModerationCauseAccumulator } from '../accumulator' | ||
return labels.filter( | ||
(label) => !label.uri.endsWith('/app.bsky.actor.profile/self'), | ||
(label) => | ||
!label.uri.endsWith('/app.bsky.actor.profile/self') || | ||
label.val === '!no-unauthenticated', | ||
) | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
4504726
70647