52 Commits

Author SHA1 Message Date
3f196f5f94 chore(deps): update dependency tailwindcss to v4
Some checks failed
Check / Lint and Check (push) Failing after 46s
Check / Lint and Check (pull_request) Failing after 42s
2025-05-09 11:01:05 +00:00
2924b7ccdf chore(deps): update dependency tailwindcss to v3.4.17
All checks were successful
Check / Lint and Check (push) Successful in 39s
2025-05-09 10:04:04 +00:00
a83856ef2b chore(deps): pin dependency eslint-config-prettier to v10.0.2
All checks were successful
Check / Lint and Check (push) Successful in 38s
2025-05-09 10:00:05 +00:00
7b3c5dba23 fix(deps): update dependency @hookform/resolvers to v5
Some checks failed
Check / Lint and Check (push) Has been cancelled
2025-05-09 11:56:03 +02:00
ce373d7ffc fix(deps): update dependency tailwind-merge to v3 2025-05-09 11:55:32 +02:00
d888565bfc chore(deps): update dependency turbo to v2.5.3
All checks were successful
Check / Lint and Check (push) Successful in 47s
2025-05-09 11:47:04 +02:00
cf7cafdf67 chore(deps): update dependency eslint to v9 2025-05-09 11:45:31 +02:00
a969fb90fc fix(deps): update dependency date-fns to v4 (#7)
All checks were successful
Check / Lint and Check (push) Successful in 41s
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [date-fns](https://github.com/date-fns/date-fns) | dependencies | major | [`^3.6.0` -> `^4.0.0`](https://renovatebot.com/diffs/npm/date-fns/3.6.0/4.1.0) |

---

### Release Notes

<details>
<summary>date-fns/date-fns (date-fns)</summary>

### [`v4.1.0`](https://github.com/date-fns/date-fns/blob/HEAD/CHANGELOG.md#v410---2024-09-17)

[Compare Source](https://github.com/date-fns/date-fns/compare/v4.0.0...v4.1.0)

This release adds time zone support to format functions (that I somehow missed when working on the feature) and fixes a few bugs.

Make sure also upgrade `TZDate` to v1.0.2 as it [includes a bunch of critical bug fixes](https://github.com/date-fns/tz/blob/main/CHANGELOG.md#v102---2024-09-14).

##### Fixed

-   Fixed internal `constructFrom` throwing an exception on `null` arguments. While `null` isn't allowed, the functions should rather return `Invalid Date` or `NaN` in such cases. See [#&#8203;3885](https://github.com/date-fns/date-fns/issues/3885).

##### Added

-   Added missing time zone support to `format`, `formatISO`, `formatISO9075`, `formatRelative` and `formatRFC3339`. See [#&#8203;3886](https://github.com/date-fns/date-fns/issues/3886).

### [`v4.0.0`](https://github.com/date-fns/date-fns/blob/HEAD/CHANGELOG.md#v400---2024-09-16)

[Compare Source](https://github.com/date-fns/date-fns/compare/v3.6.0...v4.0.0)

I have great news! First, ten years after its release, date-fns finally gets first-class time zone support.

Another great news is that there aren't many breaking changes in this release. All of them are type-related and will affect only those explicitly using internal date-fns types. Finally, it has been less than a year since the last major release, which is an improvement over the previous four years between v2 and v3. I plan on keeping the pace and minimizing breaking changes moving forward.

[Read more about the release in the announcement blog post](https://blog.date-fns.org/v40-with-time-zone-support/).

\- [Sasha @&#8203;kossnocorp](https://twitter.com/kossnocorp)

##### Added

-   Added time zones support via [`@date-fns/tz`](https://github.com/date-fns/tz)'s `TZDate` class and `tz` helper function. See its [README](https://github.com/date-fns/tz) for the details about the API.

-   All relevant functions now accept the context `in` option, which allows to specify the time zone to make the calculations in. If the function also returns a date, it will be in the specified time zone:

    ```ts
    import { addDays, startOfDay } from "date-fns";
    import { tz } from "@&#8203;date-fns/tz";

    startOfDay(addDays(Date.now(), 5, { in: tz("Asia/Singapore") }));
    //=> "2024-09-16T00:00:00.000+08:00"
    ```

    In the example, `addDays` will get the current date and time in Singapore and add 5 days to it. `startOfDay` will inherit the date type and return the start of the day in Singapore.

##### Changed

-   The function arguments, as well as `Interval`'s `start` and `end`, now can be of different types, allowing you to mix `UTCDate`, `TZDate`, `Date`, and other extensions, as well as primitives (strings and numbers).

    The functions will normalize these values, make calculations, and return the result in the same type, preventing any bugs caused by the discrepancy. If passed, the type will be inferred from the context `in` option or the first encountered argument object type. The `Interval`'s `start` and `end` will be considered separately, starting from `start`.

    In the given example, the result will be in the `TZDate` as the first argument is a number, and the `start` takes precedence over the `end`.

    ```ts
    clamp(Date.now(), {
      start: new TZDate(start, "Asia/Singapore"),
      end: new UTCDate(),
    });
    //=> TZDate
    ```

-   **BREAKING**: This release contains a bunch of types changes that should not affect the library's expected usage. The changes are primarily internal and nuanced, so rather than listing them here, I recommend you running the type checker after the upgrade. If there are unfixable problems, please [open an issue](https://github.com/date-fns/date-fns/issues/new).

-   **BREAKING**: The package now is ESM-first. The CommonJS is still support and It should not affect most users, but it might break in certains environments. If you encounter any issues, please [report them](https://github.com/date-fns/date-fns/issues/new).

##### Fixed

-   Fixed CDN build compatibility with jQuery and other tools that expose `$` by properly wrapping the code in an IIFE.

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xLjIiLCJ1cGRhdGVkSW5WZXIiOiI0MC4xLjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: https://git.schulze.network/schulze/bam/pulls/7
Co-authored-by: Renovate Bot <renovatebot@schulze.network>
Co-committed-by: Renovate Bot <renovatebot@schulze.network>
2025-05-09 11:44:58 +02:00
3e15fc3a3b chore(deps): update dependency @types/node to v22 (#3)
Some checks failed
Check / Lint and Check (push) Has been cancelled
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | devDependencies | major | [`20.16.11` -> `22.15.17`](https://renovatebot.com/diffs/npm/@types%2fnode/20.16.11/22.15.17) |

---

### Configuration

📅 **Schedule**: Branch creation - "every weekend" (UTC), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0MC4xLjIiLCJ1cGRhdGVkSW5WZXIiOiI0MC4xLjIiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIiLCJsYWJlbHMiOltdfQ==-->

Reviewed-on: #3
Co-authored-by: Renovate Bot <renovatebot@schulze.network>
Co-committed-by: Renovate Bot <renovatebot@schulze.network>
2025-05-09 11:41:19 +02:00
1ff99bbda4 remove sharp
All checks were successful
Check / Lint and Check (push) Successful in 43s
2025-05-09 11:31:53 +02:00
571d5bc471 fix(deps): update dependency class-variance-authority to v0.7.1 2025-05-09 11:13:14 +02:00
6cab954256 fix(deps): update dependency cssnano to v7.0.7 2025-05-09 11:13:05 +02:00
bf8276e4b3 fix(deps): update dependency next-plausible to v3.12.4 2025-05-09 11:12:42 +02:00
b31159e684 fix(deps): update dependency zod to v3.24.4 2025-05-09 11:12:30 +02:00
5c230550a8 fix(deps): update radix-ui-primitives monorepo 2025-05-09 11:12:18 +02:00
7d5c82cbb0 chore(deps): update dependency postcss to v8.5.3 2025-05-09 11:11:48 +02:00
e6a68d94e1 chore(deps): update dependency typescript to v5.8.3 2025-05-09 11:11:05 +02:00
73af64f89d fix(deps): update dependency lucide-react to ^0.509.0 2025-05-09 11:10:54 +02:00
9188886d78 fix(deps): update dependency postcss-preset-env to v10.1.6 2025-05-09 11:10:47 +02:00
f8000ce92d fix(deps): update dependency react-day-picker to v9.6.7 2025-05-09 11:10:37 +02:00
6b36dfa943 fix(deps): update dependency react-hook-form to v7.56.3 2025-05-09 11:10:25 +02:00
f5a4c4132b fix(deps): update dependency tailwind-merge to v2.6.0 2025-05-09 11:09:25 +02:00
8de199c2fd fix(deps): update nextjs monorepo to v15.3.2 2025-05-09 11:09:13 +02:00
db4b03bb65 fix(deps): update react monorepo 2025-05-09 11:09:01 +02:00
75eb3d2259 update analytics to correct subdomain
All checks were successful
Check / Lint and Check (push) Successful in 50s
2025-05-08 17:15:53 +02:00
8c9d544ea6 add package manager to package
All checks were successful
Check / Lint and Check (push) Successful in 47s
2025-05-06 15:15:48 +02:00
aa70e3e086 icon.png -> icon1.png
All checks were successful
Check / Lint and Check (push) Successful in 46s
2025-05-06 15:11:27 +02:00
b6fb63b394 Update app/icon0.svg
All checks were successful
Check / Lint and Check (push) Successful in 46s
2025-05-06 15:07:19 +02:00
0497e5f188 Update .gitea/workflows/lint.yml
All checks were successful
Check / Lint and Check (push) Successful in 49s
2025-05-06 15:05:14 +02:00
8410da2bc9 Add renovate.json
Some checks failed
Lint / Lint (push) Failing after 35s
2025-05-06 15:01:29 +02:00
599e96081b Update .gitea/workflows/lint.yml
Some checks failed
Lint / Lint (push) Has been cancelled
2025-05-06 15:01:01 +02:00
0ca5e3915f lint -> check (add typescript checks)
All checks were successful
Lint / Lint (push) Successful in 1m37s
2025-05-06 14:58:24 +02:00
7671813560 fix project settings
All checks were successful
Lint / Lint (push) Successful in 43s
2025-03-05 13:11:27 +01:00
ead2b0be1e smoll fixes
All checks were successful
Lint / Lint (push) Successful in 38s
2025-03-05 12:52:09 +01:00
dece05bb08 Update required age
All checks were successful
Lint / Lint (push) Successful in 39s
2025-03-05 12:38:46 +01:00
27c012f589 update shadcn components, calendar
All checks were successful
Lint / Lint (push) Successful in 45s
2025-03-04 20:27:55 +01:00
5274b2e1c2 update nextjs 15 2025-03-04 19:23:38 +01:00
8306718a7a Update README.md
All checks were successful
Lint / Lint (push) Successful in 34s
2025-03-04 19:11:58 +01:00
2da7e9d0a0 update favicons
Some checks failed
Lint / Lint (push) Has been cancelled
2025-03-04 19:11:20 +01:00
bd9b22c8e3 favicon and logo
All checks were successful
Lint / Lint (push) Successful in 1m44s
2025-03-04 18:57:43 +01:00
b1952edb84 fixes 2025-03-04 17:59:19 +01:00
1925088989 update colors 2025-03-04 17:59:01 +01:00
8f175bfc59 npm audit fix 2025-03-04 17:33:27 +01:00
c28a4aa9c4 move form too root, fixes 2025-03-04 17:33:09 +01:00
908f4491d4 set date of birth to undefined to avoid hydration errors
All checks were successful
Lint / Lint (push) Successful in 32s
2024-10-29 21:19:58 +01:00
cc7d97e961 readme
All checks were successful
Lint / Lint (push) Successful in 29s
2024-10-18 14:25:03 +02:00
620156197a fix final backend and styling
All checks were successful
Lint / Lint (push) Successful in 1m7s
2024-10-18 14:20:58 +02:00
867bd6797d style, backend 2024-10-18 13:36:15 +02:00
4db42044ce styles, form, backend partial
All checks were successful
Lint / Lint (push) Successful in 1m8s
2024-10-18 13:12:19 +02:00
0406e1daf4 ignore env, install stuff 2024-10-18 13:11:51 +02:00