a collection of lightweight TypeScript packages for AT Protocol, the protocol powering Bluesky
atproto bluesky typescript npm
101
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: bump version

Mary e20200d2 cc3a309a

+45 -54
-5
.changeset/blue-toys-hear.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - fix faulty UTF-16 fast-path constraint validation
-5
.changeset/common-tips-behave.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - fix handle syntax conformance
-5
.changeset/flat-poems-stand.md
··· 1 - --- 2 - '@atcute/bluesky': patch 3 - --- 4 - 5 - pull latest Bluesky lexicons
-5
.changeset/plenty-mammals-worry.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - slight perf optimization to record validation
-5
.changeset/red-monkeys-care.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - mark generic URIs over 8192 UTF-8 characters as invalid
-11
.changeset/spotty-foxes-write.md
··· 1 - --- 2 - '@atcute/lexicons': minor 3 - --- 4 - 5 - JIT-compiled object validation 6 - 7 - this doesn't eek out as much performance as I hoped, but the added code was small enough that it 8 - seemed okay to add. 9 - 10 - this optimization requires the runtime environment to allow the use of `eval()`/`new Function()`, 11 - and generates an unrolled validation loop.
-5
.changeset/tasty-chicken-repair.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - fix missing root path on validation errors
-5
.changeset/tender-guests-lick.md
··· 1 - --- 2 - '@atcute/lexicons': patch 3 - --- 4 - 5 - return literal enum error if variant is closed
-5
.changeset/yellow-cycles-warn.md
··· 1 - --- 2 - '@atcute/lexicon-doc': patch 3 - --- 4 - 5 - fix faulty UTF-16 fast-path constraint validation
+15
packages/definitions/bluesky/CHANGELOG.md
··· 1 1 # @atcute/bluesky 2 2 3 + ## 3.1.3 4 + 5 + ### Patch Changes 6 + 7 + - 01fe46e: pull latest Bluesky lexicons 8 + - Updated dependencies [dee1e70] 9 + - Updated dependencies [cfbbc3e] 10 + - Updated dependencies [c061b2a] 11 + - Updated dependencies [7b590bd] 12 + - Updated dependencies [5383f0c] 13 + - Updated dependencies [19731f4] 14 + - Updated dependencies [aafe153] 15 + - @atcute/lexicons@1.1.0 16 + - @atcute/atproto@3.1.1 17 + 3 18 ## 3.1.2 4 19 5 20 ### Patch Changes
+1 -1
packages/definitions/bluesky/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/bluesky", 4 - "version": "3.1.2", 4 + "version": "3.1.3", 5 5 "description": "Bluesky (app.bsky.* and chat.bsky.*) schema definitions", 6 6 "keywords": [ 7 7 "atcute",
+6
packages/lexicons/lexicon-doc/CHANGELOG.md
··· 1 1 # @atcute/lexicon-doc 2 2 3 + ## 1.0.3 4 + 5 + ### Patch Changes 6 + 7 + - d17735e: fix faulty UTF-16 fast-path constraint validation 8 + 3 9 ## 1.0.2 4 10 5 11 ### Patch Changes
+1 -1
packages/lexicons/lexicon-doc/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/lexicon-doc", 4 - "version": "1.0.2", 4 + "version": "1.0.3", 5 5 "description": "type definitions and schemas for atproto lexicon documents", 6 6 "license": "0BSD", 7 7 "repository": {
+21
packages/lexicons/lexicons/CHANGELOG.md
··· 1 1 # @atcute/lexicons 2 2 3 + ## 1.1.0 4 + 5 + ### Minor Changes 6 + 7 + - 5383f0c: JIT-compiled object validation 8 + 9 + this doesn't eek out as much performance as I hoped, but the added code was small enough that it 10 + seemed okay to add. 11 + 12 + this optimization requires the runtime environment to allow the use of `eval()`/`new Function()`, 13 + and generates an unrolled validation loop. 14 + 15 + ### Patch Changes 16 + 17 + - dee1e70: fix faulty UTF-16 fast-path constraint validation 18 + - cfbbc3e: fix handle syntax conformance 19 + - c061b2a: slight perf optimization to record validation 20 + - 7b590bd: mark generic URIs over 8192 UTF-8 characters as invalid 21 + - 19731f4: fix missing root path on validation errors 22 + - aafe153: return literal enum error if variant is closed 23 + 3 24 ## 1.0.4 4 25 5 26 ### Patch Changes
+1 -1
packages/lexicons/lexicons/package.json
··· 1 1 { 2 2 "type": "module", 3 3 "name": "@atcute/lexicons", 4 - "version": "1.0.4", 4 + "version": "1.1.0", 5 5 "description": "AT Protocol core lexicon types and schema validations", 6 6 "license": "0BSD", 7 7 "repository": {