Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions .changeset/social-objects-extend.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/tired-lemons-authorize.md

This file was deleted.

19 changes: 19 additions & 0 deletions astro-authproto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @fujocoded/authproto

## 0.4.0

### Minor Changes

- [#46](https://github.com/FujoWebDev/fujocoded-plugins/pull/46) [`4c266d6`](https://github.com/FujoWebDev/fujocoded-plugins/commit/4c266d66fbe990c6ccbec9a0aeaec67fe92ed375) Thanks [@essential-randomness](https://github.com/essential-randomness)!

Add scoped login controls, an Authorize component for requesting extra
permissions after login, and helpers for building ATProto permission scopes.

## Breaking changes
- Login and logout now default to returning users to the referring page instead
of `/`. Set `redirects.afterLogin` and `redirects.afterLogout` to `/` to keep
the old behavior.
- `<Login />` no longer defaults the input placeholder to `handle.bsky.social`;
pass `placeholder="handle.bsky.social"` if you want that exact prompt.
- `Astro.locals.loggedInUser` now includes a required `scopes` array. Update
tests, mocks, and custom local assignments to include `scopes: []` when no
grants are needed.

## 0.3.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion astro-authproto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fujocoded/authproto",
"version": "0.3.1",
"version": "0.4.0",
"description": "Astro integration to easily authenticate your site visitors using ATproto. For Bluesky and beyond.",
"keywords": [
"astro",
Expand Down
14 changes: 14 additions & 0 deletions zod-transform-socials/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @fujocoded/zod-transform-socials

## 0.1.1

### Patch Changes

- [#48](https://github.com/FujoWebDev/fujocoded-plugins/pull/48) [`f1d01c7`](https://github.com/FujoWebDev/fujocoded-plugins/commit/f1d01c724952543c0d6d3d111cce48ab4405f7bf) Thanks [@essential-randomness](https://github.com/essential-randomness)!

Exports `SocialLinkObjectSchema` so projects can extend the object form of a
social link without rebuilding the whole schema. `SocialLinkInputSchema` is also
available as the clearer name for the default one-item input schema, with
matching `SocialLinkObject` and `SocialLinkInput` types.

Adds standalone examples for preserving custom fields like `label` through
the transform.

## 0.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion zod-transform-socials/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fujocoded/zod-transform-socials",
"version": "0.1.0",
"version": "0.1.1",
"description": "A Zod schema + transformer for social URLs",
"keywords": [
"zod"
Expand Down