@atproto/api 0.11.1 → 0.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
- package/src/moderation/mutewords.ts +1 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @atproto/api
|
|
2
2
|
|
|
3
|
+
## 0.11.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#2328](https://github.com/bluesky-social/atproto/pull/2328) [`7dd9941b7`](https://github.com/bluesky-social/atproto/commit/7dd9941b73dbbd82601740e021cc87d765af60ca) Thanks [@estrattonbailey](https://github.com/estrattonbailey)! - Remove unecessary escapes from regex, which was causing a minification error when bundled in React Native.
|
|
8
|
+
|
|
3
9
|
## 0.11.1
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/index.js
CHANGED
|
@@ -31575,7 +31575,7 @@ function decideNotification(subject, opts) {
|
|
|
31575
31575
|
var REGEX = {
|
|
31576
31576
|
LEADING_TRAILING_PUNCTUATION: /(?:^\p{P}+|\p{P}+$)/gu,
|
|
31577
31577
|
ESCAPE: /[[\]{}()*+?.\\^$|\s]/g,
|
|
31578
|
-
SEPARATORS: /[
|
|
31578
|
+
SEPARATORS: /[/\-–—()[\]_]+/g,
|
|
31579
31579
|
WORD_BOUNDARY: /[\s\n\t\r\f\v]+?/g
|
|
31580
31580
|
};
|
|
31581
31581
|
var LANGUAGE_EXCEPTIONS = [
|