Skip to content

Commit

Permalink
Merge pull request #110 from withfluwy/changeset-release/main
Browse files Browse the repository at this point in the history
Release v0.8.0
  • Loading branch information
marcotas authored Dec 27, 2024
2 parents 1d297ac + 7966e3b commit 9bbf13f
Show file tree
Hide file tree
Showing 23 changed files with 30 additions and 106 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-fireants-change.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/chilled-maps-arrive.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/clever-brooms-whisper.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-pants-exercise.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/famous-flowers-think.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/green-coins-pretend.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-countries-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/grumpy-ties-swim.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-sheep-relax.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/itchy-poems-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/khaki-games-kick.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-laws-roll.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/nine-fireants-relax.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/orange-insects-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-dryers-think.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/real-kiwis-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/selfish-cycles-check.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slimy-frogs-search.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/soft-pandas-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-boats-whisper.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-avocados-tap.md

This file was deleted.

29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @fluwy/ui

## 0.8.0

### Minor Changes

- dd0fda0: New `vars` and `load` operations.
- b60702a: New `set_cookie` and `unset_cookie` operations. These operations requires the sveltekit's hook handle into your app.
- 7836caa: New `debug` component.
- e6e34d6: New `clear_form_errors` operation to clean validation errors on forms.
- 92a6d4e: New `put` http request operation
- 650933d: Spacer now supports CSS classes as its content so we can easily do something like `spacer: mt-12` if we need some classes for the spacer.
- cd356e5: New input component.
- b3183e5: Adds the `server` feature for the page head so we can perform operations on the server side only. This is useful when we want to load content from sources and set their results as variables in the context so the page loads from the server with the content populated. This increases the page load speed and is helpful to perform operations that are server-side only.
- e90b19f: New `set_form_errors` operation for form validation errors from APIs.
- 6a412b8: New `post` operation to make http requests.
- 8b69949: New `unset_auth_token` that is usually used as the "logout" operation.
- 2dade5e: Make `column` and `row` themable under layout variables. It also sets the default gap of `gap-4` for them.
- 17d3563: Introducing plugins
- 67ca6ba: Created the Plugin System. Now all applications are basically plugins which contains a name that will be used as namespace.
- e203702: New `authenticate` operation for server and client sides. A use is considered authenticated if the `auth_token` is set in the server and context. A cookie is created for the authentication process.
- 998c5c0: New context functions for plugin development and library building for the framework: `createContext`, `useContext`.
- 6ec2a6e: New `set_auth_token` operation.
- 4b9677c: New `sleep` operation.
- 382a87d: New `form` component.
- 8959b80: New `input` component.

### Patch Changes

- e2dfd64: chore: Fix version name for releases

## 0.7.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fluwy/ui",
"version": "0.7.0",
"version": "0.8.0",
"license": "MIT",
"publishConfig": {
"access": "public"
Expand Down

0 comments on commit 9bbf13f

Please sign in to comment.