diff --git a/.changeset/shaggy-experts-tease.md b/.changeset/shaggy-experts-tease.md deleted file mode 100644 index 97e88b20..00000000 --- a/.changeset/shaggy-experts-tease.md +++ /dev/null @@ -1,28 +0,0 @@ ---- -"@orbitkit/utils": patch -"@orbitkit/auth": patch -"@orbitkit/api": patch -"@orbitkit/ui": patch -"@orbitkit/docs": patch -"@orbitkit/web": patch -"@orbitkit/marketing": patch -"@orbitkit/assets": patch -"eslint-config-orbitkit": patch -"@orbitkit/storybook": patch -"@orbitkit/tailwind": patch -"@orbitkit/tsconfig": patch -"@orbitkit/vite": patch -"@orbitkit/core": patch -"@orbitkit/db": patch -"@orbitkit/env": patch ---- - -feat: creates a trpc api package - -changes in this release: - -- creates a new `packages/api` package that hosts a tRPC api to be used for the web application. -- renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. -- refactors the code in some places to be generally better. -- splits the utils package from a barrel export to multi-file export. -- `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. diff --git a/apps/docs/CHANGELOG.md b/apps/docs/CHANGELOG.md index ceb238e3..e3efe70c 100644 --- a/apps/docs/CHANGELOG.md +++ b/apps/docs/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/docs +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/apps/docs/package.json b/apps/docs/package.json index 08967c50..dd68be85 100644 --- a/apps/docs/package.json +++ b/apps/docs/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/docs", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Documentation website for OrbitKit using Mintlify", "license": "MIT", diff --git a/apps/marketing/CHANGELOG.md b/apps/marketing/CHANGELOG.md index 3e47a80b..9fae1973 100644 --- a/apps/marketing/CHANGELOG.md +++ b/apps/marketing/CHANGELOG.md @@ -1,5 +1,24 @@ # @orbitkit/marketing +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/ui@0.1.4 + - @orbitkit/assets@0.1.4 + - @orbitkit/env@0.1.4 + ## 0.1.3 ### Patch Changes diff --git a/apps/marketing/package.json b/apps/marketing/package.json index 579adde4..4c0d7e27 100644 --- a/apps/marketing/package.json +++ b/apps/marketing/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/marketing", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Marketing website for OrbitKit", "license": "MIT", diff --git a/apps/web/CHANGELOG.md b/apps/web/CHANGELOG.md index 1762c800..d27dc370 100644 --- a/apps/web/CHANGELOG.md +++ b/apps/web/CHANGELOG.md @@ -1,5 +1,27 @@ # @orbitkit/web +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/utils@0.1.4 + - @orbitkit/auth@0.1.4 + - @orbitkit/api@0.1.4 + - @orbitkit/ui@0.1.4 + - @orbitkit/db@0.1.4 + - @orbitkit/env@0.1.4 + ## 0.1.3 ### Patch Changes diff --git a/apps/web/package.json b/apps/web/package.json index 2e4db231..6c9a8f5c 100644 --- a/apps/web/package.json +++ b/apps/web/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/web", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "The web application of OrbitKit", "license": "MIT", diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md new file mode 100644 index 00000000..c0113fb4 --- /dev/null +++ b/packages/api/CHANGELOG.md @@ -0,0 +1,21 @@ +# @orbitkit/api + +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/utils@0.1.4 + - @orbitkit/auth@0.1.4 + - @orbitkit/db@0.1.4 + - @orbitkit/env@0.1.4 diff --git a/packages/api/package.json b/packages/api/package.json index ee489502..632b1862 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/api", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A tRPC API package used in the web application", "license": "MIT", diff --git a/packages/assets/CHANGELOG.md b/packages/assets/CHANGELOG.md index 1eabeb0b..d7633b77 100644 --- a/packages/assets/CHANGELOG.md +++ b/packages/assets/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/assets +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/assets/package.json b/packages/assets/package.json index e5f5a3e5..f323b7ee 100644 --- a/packages/assets/package.json +++ b/packages/assets/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/assets", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "OrbitKit's assets package", "license": "MIT", diff --git a/packages/auth/CHANGELOG.md b/packages/auth/CHANGELOG.md index 6cec9de3..a96d44c7 100644 --- a/packages/auth/CHANGELOG.md +++ b/packages/auth/CHANGELOG.md @@ -1,5 +1,24 @@ # @orbitkit/auth +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/utils@0.1.4 + - @orbitkit/db@0.1.4 + - @orbitkit/env@0.1.4 + ## 0.1.3 ### Patch Changes diff --git a/packages/auth/package.json b/packages/auth/package.json index e5a76239..279f489a 100644 --- a/packages/auth/package.json +++ b/packages/auth/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/auth", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Auth package for OrbitKit", "license": "MIT", diff --git a/packages/config/eslint/CHANGELOG.md b/packages/config/eslint/CHANGELOG.md index 630502fa..79efa115 100644 --- a/packages/config/eslint/CHANGELOG.md +++ b/packages/config/eslint/CHANGELOG.md @@ -1,5 +1,19 @@ # eslint-config-orbitkit +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/config/eslint/package.json b/packages/config/eslint/package.json index 8856b6be..b15045ff 100644 --- a/packages/config/eslint/package.json +++ b/packages/config/eslint/package.json @@ -1,6 +1,6 @@ { "name": "eslint-config-orbitkit", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A package to share ESLint configurations in workspace", "license": "MIT", diff --git a/packages/config/storybook/CHANGELOG.md b/packages/config/storybook/CHANGELOG.md index 46d0692e..4b3979c8 100644 --- a/packages/config/storybook/CHANGELOG.md +++ b/packages/config/storybook/CHANGELOG.md @@ -1,5 +1,22 @@ # @orbitkit/storybook +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/assets@0.1.4 + ## 0.1.3 ### Patch Changes diff --git a/packages/config/storybook/package.json b/packages/config/storybook/package.json index 006764fe..cf065277 100644 --- a/packages/config/storybook/package.json +++ b/packages/config/storybook/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/storybook", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A package to share Storybook configuration preset for the workspace", "license": "MIT", diff --git a/packages/config/tailwind/CHANGELOG.md b/packages/config/tailwind/CHANGELOG.md index 9738f84f..52d2cdca 100644 --- a/packages/config/tailwind/CHANGELOG.md +++ b/packages/config/tailwind/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/tailwind +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/config/tailwind/package.json b/packages/config/tailwind/package.json index 3b18050f..bca247d0 100644 --- a/packages/config/tailwind/package.json +++ b/packages/config/tailwind/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/tailwind", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Tailwindcss preset for OrbitKit workspace", "license": "MIT", diff --git a/packages/config/tsconfig/CHANGELOG.md b/packages/config/tsconfig/CHANGELOG.md index d346ed07..f826b071 100644 --- a/packages/config/tsconfig/CHANGELOG.md +++ b/packages/config/tsconfig/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/tsconfig +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/config/tsconfig/package.json b/packages/config/tsconfig/package.json index a7bf9c34..8c2e5777 100644 --- a/packages/config/tsconfig/package.json +++ b/packages/config/tsconfig/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/tsconfig", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A package to share tsconfig presets around the workspace", "license": "MIT", diff --git a/packages/config/vite/CHANGELOG.md b/packages/config/vite/CHANGELOG.md index 8b2158f9..4bccfad1 100644 --- a/packages/config/vite/CHANGELOG.md +++ b/packages/config/vite/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/vite +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/config/vite/package.json b/packages/config/vite/package.json index f755b9a6..c6a2c17f 100644 --- a/packages/config/vite/package.json +++ b/packages/config/vite/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/vite", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Vite presets for the workspace", "license": "MIT", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index bccc5395..3c62194d 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/core +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index 8ce46df5..2185fc95 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/core", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Core package for business logic", "license": "MIT", diff --git a/packages/db/CHANGELOG.md b/packages/db/CHANGELOG.md index 216cdcd2..4f4d7a65 100644 --- a/packages/db/CHANGELOG.md +++ b/packages/db/CHANGELOG.md @@ -1,5 +1,22 @@ # @orbitkit/db +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + +- Updated dependencies [4f0f72d] + - @orbitkit/env@0.1.4 + ## 0.1.3 ### Patch Changes diff --git a/packages/db/package.json b/packages/db/package.json index 9c3c4adb..6f0cc7ed 100644 --- a/packages/db/package.json +++ b/packages/db/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/db", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A database package utilizing drizzle orm.", "license": "MIT", diff --git a/packages/env/CHANGELOG.md b/packages/env/CHANGELOG.md index c06ae195..ee824913 100644 --- a/packages/env/CHANGELOG.md +++ b/packages/env/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/env +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/env/package.json b/packages/env/package.json index 6fe4f390..333288a1 100644 --- a/packages/env/package.json +++ b/packages/env/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/env", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "A package to define environment variables for apps in the workspace using t3 env", "license": "MIT", diff --git a/packages/ui/CHANGELOG.md b/packages/ui/CHANGELOG.md index 5e4e902a..7eedba79 100644 --- a/packages/ui/CHANGELOG.md +++ b/packages/ui/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/ui +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/ui/package.json b/packages/ui/package.json index af8b1cf7..724343e5 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/ui", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "OrbitKit UI Design System Components Library", "license": "MIT", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 12afac5c..49977846 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,19 @@ # @orbitkit/utils +## 0.1.4 + +### Patch Changes + +- 4f0f72d: feat: creates a trpc api package + + changes in this release: + + - creates a new `packages/api` package that hosts a tRPC api to be used for the web application. + - renames the lucia auth `getSession` function to `auth` and provides a new uncached version of it. + - refactors the code in some places to be generally better. + - splits the utils package from a barrel export to multi-file export. + - `getBaseUrl` util now returns `window.location.origin` instead of an empty string when the `window` object is not `undefined`. + ## 0.1.3 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index b9bb3eed..03d07f27 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@orbitkit/utils", - "version": "0.1.3", + "version": "0.1.4", "private": true, "description": "Common utilities for OrbitKit", "license": "MIT",