Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: release master #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

ved-bot
Copy link
Collaborator

@ved-bot ved-bot commented Apr 4, 2022

🤖 I have created a release beep boop

api: 0.1.0

0.1.0 (2025-02-08)

⚠ BREAKING CHANGES

Features

  • add a shared folder to share schemas and other utils (8d34f4c)
  • add AuthUser param decorator to extract the auth user directly (67b7678)
  • add email address changing mechanish (7a35b5d)
  • add forgot_password tsrest handling (cd86661)
  • add frontend ts-ws library (bebbedb)
  • add realtime user edited features (41141dd)
  • api: add throttling to all requests (41b724f)
  • change emitted to zod schemas (4ac5e92)
  • configure initial config for Sentry in the backend (2ece582)
  • create custom ts-ws mini-library to backend for ws-events (4f9f731)
  • first tsrest implementation (5416b31)
  • i18n handling (#69) (650310d)
  • implement password reset flow (#70) (ee4ae59)
  • move create / delete users as admin to tsrest (8646fbc)
  • move settings actions to tsrest (21b6cef)
  • overhaul init scripts (perf, migrations, cleanup) (aa6b590)
  • quick and dirty password change in settings page (c6ceac2)
  • revamp usr mgmt to see un/registered users and more actions (2fb1fe5)
  • rework event system to use custom definition (dd051ef)
  • switch from graphql to TS-Rest & (custom) TS-WS (merge #72) (3c75b7f)
  • track users sessions and methods to check if user is online (aa2f78b)
  • tsrest to admins user list and edit, and optimize DX (29f1f08)
  • tweak emailSendSchema to mark default EMAIL_FROM (c2865a8)
  • update i18n-ally configurations to support refactor templates (edb5b19)
  • update lucia to v3 and overhaul user handling (c70c73b)
  • update to node 20 (b32ef46)

Bug Fixes

  • api not sending cookie delete header on logout (f7842f0)
  • api: make PrismaModule global (c719ef0)
  • api: middleware registration order issue (2cb0f6d)
  • api: remove unused storage folder (ba34825)
  • critical issue about bigger files crashing server (c5b6adc)
  • delete picture not working (8146d0f)
  • delete previous profile picture on successful upload (a037354)
  • do not crash when requesting a password reset on invalid email (3feed6e)
  • do not set the online field when session user changes (c1faccc)
  • fix reconnection on logout issues (b39203f)
  • i18n error not handled on serverside (bf07a30)
  • login max age was not set properly (9157b58)
  • make profile picture images publicly accessible (9bdb17a)
  • missing setupApp in ensureGraphqlSchema (4aa7351)
  • missing type import marker (cb487a6)
  • move to singleton PresenceService, use better types (5b8cb8a)
  • move types into own files for client validation (cbb4ae7)
  • prevent crashing if backend server is down (abad45a)
  • proper usage of updating lucia key password, fix tests (84105e6)
  • revamp error management to make it more robust (8fb9300)
  • session cookie refresh not using proper max age (214c585)
  • set cookies to api domain (a3a245e)
  • standardize sentry env for backend (41d3342)
  • subscription not working on page refresh / initial load (243ae8a)
  • tests and deploys (382c3ac)
  • throttler: do not crash on subscriptions (9d2ae52)
  • ts-rest type compat (b64550a)
  • tweak profile picture event to include old & new refs (bc1aa6a)
  • type not properly defining what is the possible outcome (9a339ec)
  • TypedI18nModule loading order, and make it global (7a59f3d)
  • update configs for vscode 1.82.0 (7af0353)
  • use auth endpoint for websocket auth (c8f5f7f)
  • use http polling for houdini schema generation (9037df8)
  • use stores to allow for easy connection status updates (9a3bd92)
  • wrong bash script syntax (4d9aeeb)
  • wrong handshake url and api backend (70d1561)
  • wrong paths for layouts and partials dirs (cc9cb2f)

Performance Improvements

  • force strickNullChecks for zod perfs (488f17f)
  • optimize exists method by using count instead of findFirst (eb7219e)
  • profile-picture: do not wait for minio delete promise (1e3b6f4)

Tweaks

  • change task kill to use script PID instead of executable (1c1ae5b)

Dependencies

  • api: fix dev deps (11927b6)
  • api: update all deps & fix migration steps (89b86d0)
  • update all api deps (5e16ef8)
  • update all deps and fixed migrations issues (d788bdd)
  • update apollo graphql packages to v3.12.0 (16c9c67)
  • update dependency @apollo/server to v4.7.4 (7e96e10)
  • update dependency dotenv to v16.3.0 (2317fb3)
  • update dependency nest-typed-config to v2.4.7 (023a850)
  • update deps unrelated to prisma 5 (88b5bc4)

Reverts

  • "chore: change generate command to include gql" (224af57)
client: 0.1.0

0.1.0 (2025-02-08)

⚠ BREAKING CHANGES

Features

  • add a shared folder to share schemas and other utils (8d34f4c)
  • add automatic i18n page title (d7be048)
  • add automatic i18n route mapping (c6d1b9c)
  • add disconnection icon (58e2598)
  • add email address changing mechanish (7a35b5d)
  • add forgot_password tsrest handling (cd86661)
  • add FormInput component and use it throughout codebase (cab4ed3)
  • add frontend ts-ws library (bebbedb)
  • add i18nPayload prop to LayoutAlert & Toasts (3c4a14e)
  • add link hover effect on all links in main tag (bf3d611)
  • add meta management to convertRawRouteInfo (fd34b1a)
  • add realtime user edited features (41141dd)
  • add store context helper and sessionUser context store (f7da579)
  • add streaming helper for easy stream manipulations (e88d88b)
  • add UserAvatar component (65c1ef4)
  • add ValidationErrors component to automatically handle form errors (69714e7)
  • allow toasts to contain extra html data (fd350b4)
  • change emitted to zod schemas (4ac5e92)
  • create custom ts-ws mini-library to backend for ws-events (4f9f731)
  • enhance routeInfo mapper by adding children and parents props (2eaf0b1)
  • first tsrest implementation (5416b31)
  • fix darkmode not redirecting to current page without javascript (ef71c5a)
  • i18n handling (#69) (650310d)
  • implement password reset flow (#70) (ee4ae59)
  • initial draft of file based settings sidebar handler (b646d2d)
  • move create / delete users as admin to tsrest (8646fbc)
  • move settings actions to tsrest (21b6cef)
  • overhaul init scripts (perf, migrations, cleanup) (aa6b590)
  • quick and dirty password change in settings page (c6ceac2)
  • revamp usr mgmt to see un/registered users and more actions (2fb1fe5)
  • Sentry integration in frontend (6ec0f45)
  • show roles in settings profile's page (4292f01)
  • switch from graphql to TS-Rest & (custom) TS-WS (merge #72) (3c75b7f)
  • track users sessions and methods to check if user is online (aa2f78b)
  • tsrest to admins user list and edit, and optimize DX (29f1f08)
  • update i18n-ally configurations to support refactor templates (edb5b19)
  • update lucia to v3 and overhaul user handling (c70c73b)
  • update to node 20 (b32ef46)
  • use fragments for repeated data points (96d10d7)

Bug Fixes

  • sveltekit-flash-message 2 args with cookies does not work (de63393)
  • add back cookie sharing to api requests (019cdb4)
  • add back formData layoutAlert (9901c5f)
  • add better error pages (9c1b217)
  • add missing drawer translator function (9048b0a)
  • annoying dropdown wrong paddings (34caab3)
  • client: change i18n to be dealt by request context (a7f468a)
  • client: do not subscribe if not in browser (062d1a4)
  • client: remove tailwind-purgecss (e1e4549)
  • client: use l instead of t for server lang (406878e)
  • client: wrong typings on SessionUser & UserAvatar typing loosen (db2f49d)
  • delete auth cookie on session unauthorized (8eae957)
  • do not set the online field when session user changes (c1faccc)
  • findDeepRoute not finding route (f929186)
  • fix reconnection on logout issues (b39203f)
  • keyMapper not used (752a711)
  • logout not working anymore (32ad1e2)
  • make admin's UsersTable users query non-blocking (5918167)
  • make NavBar element activable (a600a30)
  • missing await on promise function result (07e1d64)
  • missing env exports on CI builds (f13db67)
  • missing i18n usage (5ea25b3)
  • missing page error i18n (4555e83)
  • Navbar's dropdown not properly using full name (86af481)
  • navigation caused duplicate user.edited subscription (1a74732)
  • only show wsissue when sessionUser is undefined (45277f3)
  • prevent crashing if backend server is down (abad45a)
  • prevent sideways jumps caused byu overflow scrollbar (0844672)
  • prevent wrong data type crash on extract error message (c2cba08)
  • proper usage of updating lucia key password, fix tests (84105e6)
  • redirect on experience lang change (b293885)
  • remove gql schema that was wrongly added (6bc024b)
  • remove unneeded console log (3e6109d)
  • revamp error management to make it more robust (8fb9300)
  • revert change to link hovers, now required to add link class (318a9c6)
  • routes with groups not properly setting page title (9e423dd)
  • send less data, only where necessary (d200c80)
  • set cookies to api domain (a3a245e)
  • settings page active sidebar item (db1398f)
  • subscription not working on page refresh / initial load (243ae8a)
  • sveltekit-flash-message dep quirks (d0a20f6)
  • toasts manager not accessing up to date i18n (c00c233)
  • tweak eslint to disable no-inner-declaration in svelte files (f117e2f)
  • type assertion f'ed up the SessionUser type (c3ade9e)
  • types issues and wrong imports (f88f07a)
  • use sameSite: 'none' (a402415)
  • use api url directly for handshake (03d3e54)
  • use auth endpoint for websocket auth (c8f5f7f)
  • use http polling for houdini schema generation (9037df8)
  • use proper key for change email toast (43dd082)
  • use rewrite instead of redirect (aba8f97)
  • use stores to allow for easy connection status updates (9a3bd92)
  • validate issues (76383c8)
  • wrong bash script syntax (4d9aeeb)
  • wrong handshake url and api backend (70d1561)
  • wrong import in layout (cb104ac)
  • wrong label for UserForm's lastName (56c04e2)
  • wrong superform usage, weird gql typing issues and chat overhaul (aa5e86f)
  • WSL dev server couldn't be accessed on windows (1a9d205)

Performance Improvements

  • force strickNullChecks for zod perfs (488f17f)
  • purge UI component library css code too (6fbfb18)
  • use blob instead of multiple json conversions (c1a92ec)

Tweaks

  • change task kill to use script PID instead of executable (1c1ae5b)
  • move settings' profile picture to top on mobile (291e46e)

Dependencies

  • client: update all deps (ab26d70)
  • client: update sentry package (e382409)
  • update all client deps (de01ab6)
  • update all deps and fixed migrations issues (d788bdd)
  • update client deps (63465cf)
  • update sveltekit to v2 with migration tool (40c7a77)

This PR was generated with Release Please. See documentation.

@ved-bot ved-bot requested a review from V-ed as a code owner April 4, 2022 18:54
@ved-bot ved-bot force-pushed the release-please--branches--master branch 8 times, most recently from 5ca5985 to 9892117 Compare April 16, 2022 19:13
@ved-bot ved-bot force-pushed the release-please--branches--master branch 3 times, most recently from 3be2e99 to e809298 Compare April 25, 2022 06:47
@ved-bot ved-bot force-pushed the release-please--branches--master branch 4 times, most recently from 7ba95a7 to 0f76058 Compare May 5, 2022 14:44
@ved-bot ved-bot force-pushed the release-please--branches--master branch 4 times, most recently from cf2628c to a29da86 Compare May 16, 2022 10:14
@ved-bot ved-bot force-pushed the release-please--branches--master branch from a29da86 to c5afb0c Compare May 23, 2022 06:15
@ved-bot ved-bot force-pushed the release-please--branches--master branch 5 times, most recently from 39e8c49 to 3d1a245 Compare August 8, 2022 10:26
@ved-bot ved-bot force-pushed the release-please--branches--master branch from 3d1a245 to b2a9704 Compare August 15, 2022 04:58
@ved-bot ved-bot force-pushed the release-please--branches--master branch from b2a9704 to 9128842 Compare August 22, 2022 06:16
@ved-bot ved-bot force-pushed the release-please--branches--master branch from 9128842 to 8b228d1 Compare August 29, 2022 10:14
@ved-bot ved-bot force-pushed the release-please--branches--master branch 11 times, most recently from 20b3b76 to 76e174c Compare October 15, 2024 04:55
@ved-bot ved-bot force-pushed the release-please--branches--master branch 4 times, most recently from 6475621 to c36a182 Compare October 15, 2024 17:33
@ved-bot ved-bot force-pushed the release-please--branches--master branch from c36a182 to 665c946 Compare November 8, 2024 22:35
@ved-bot ved-bot force-pushed the release-please--branches--master branch 2 times, most recently from 12da970 to 6f31270 Compare December 23, 2024 22:45
@ved-bot ved-bot force-pushed the release-please--branches--master branch 2 times, most recently from 44fe816 to 336b531 Compare December 30, 2024 02:29
@ved-bot ved-bot force-pushed the release-please--branches--master branch from 336b531 to 6e3c83b Compare January 4, 2025 05:13
@ved-bot ved-bot force-pushed the release-please--branches--master branch 5 times, most recently from e6f9004 to c9789cf Compare February 8, 2025 22:41
@ved-bot ved-bot force-pushed the release-please--branches--master branch from c9789cf to 1d0a9a2 Compare February 8, 2025 22:58
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant