Bentlybro
05afc1e1bb
search results - search box reduce height to 60px
2024-12-13 13:45:21 +00:00
Swifty
a597507680
Merge branch 'dev' into dev-store-v2
2024-12-13 13:13:25 +01:00
SwiftyOS
14c223435b
added in other browsers
2024-12-13 13:11:13 +01:00
SwiftyOS
f6ad194306
fix profile tests
2024-12-13 13:10:19 +01:00
SwiftyOS
e5c21ceda9
fix login
2024-12-13 12:51:55 +01:00
SwiftyOS
1a4a3e72ec
fixed build tests
2024-12-13 12:36:38 +01:00
SwiftyOS
584b121a16
types
2024-12-12 15:53:19 +01:00
SwiftyOS
d67c7a3704
update auth tests
2024-12-12 15:50:47 +01:00
SwiftyOS
dec9dfad9d
fmt
2024-12-12 15:27:23 +01:00
SwiftyOS
987fe6d3b8
Merge remote-tracking branch 'origin/dev' into dev-store-v2
2024-12-12 15:01:05 +01:00
Reinier van der Leer
e3cf605e9b
feat(frontend): Disallow webhook+input or webhook+webhook in the same graph ( #8861 )
...
- Resolves #8853
Disallow combining webhook block with another webhook or input block,
because we can't run those. Our current approach to validating the input
for a graph's starting nodes prohibits such cases.
Demo:
https://github.com/user-attachments/assets/ac098765-bb5f-4218-8cd4-ad992b1b8cda
### Checklist 📋
#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
- [x] Add a webhook-triggered block -> can't add another, also can't add
an input block
- [x] Add an input block -> can't add a webhook-triggered block
---------
Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co>
2024-12-12 13:56:28 +00:00
SwiftyOS
e508d90fa7
add try catch on credit api
2024-12-12 12:37:56 +01:00
Bently
b16bf42fa3
feat(frontend): Update and fix tutorial ( #8943 )
...
This is to fix [Tutorial highlight causes bottom buttons to move up
#8942 ](https://github.com/Significant-Gravitas/AutoGPT/issues/8942 )
### Changes 🏗️
Updates the tutorial to add a short delay before moving onto the next
step which prevents the UI from lifting up in a weird way (skip to 14
seconds in the video below to see this being fixed)
Updates to some of the positioning of the steps
Video to show latest run through whole tutorial
https://github.com/user-attachments/assets/4cf09a2f-8ed2-45bd-9909-aa92540af845
2024-12-11 19:48:48 +00:00
Abhimanyu Yadav
b8a3ffc04a
fix(frontend) : Optional number input ( #8940 )
...
- Resolve #8928
Currently, the frontend renders a string input for an optional integer.
I have now corrected it.

2024-12-11 19:25:25 +00:00
Zamil Majdy
6490b4e188
chore(platform):Refactor GraphExecution naming clash and remove unused Graph Execution functions ( #8939 )
...
This is a follow-up of
https://github.com/Significant-Gravitas/AutoGPT/pull/8752
There are several APIs and functions related to graph execution that are
unused now.
There is also confusion about the name of `GraphExecution` that exists
in graph.py & execution.py.
### Changes 🏗️
* Renamed `GraphExecution` in `execution.py` to `GraphExecutionEntry`,
this is only used as a queue entry for execution.
* Removed unused `get_graph_execution` & `list_executions` in
`execution.py`.
* Removed `with_run` option on `get_graph` function in `graph.py`.
* Removed `GraphMetaWithRuns`
* Removed exposed functions only for testing.
* Removed `executions` fields in Graph model.
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Krzysztof Czerwinski <34861343+kcze@users.noreply.github.com>
2024-12-11 15:41:15 +00:00
SwiftyOS
91fb4f5c56
remove superfulus button
2024-12-11 16:13:09 +01:00
SwiftyOS
32c15434d2
comment out all old marketplace componets
2024-12-11 15:35:55 +01:00
SwiftyOS
6fcceeabdb
formatting
2024-12-11 15:28:24 +01:00
SwiftyOS
b1468f779c
Allow running of agents from the monitor page
2024-12-11 15:27:58 +01:00
SwiftyOS
ac03211c59
removed templates form ui
2024-12-11 14:46:06 +01:00
Krzysztof Czerwinski
7a9115db18
fix(frontend): Make pins smaller and fix hover area and highlight for input pins ( #8941 )
...
Recently pins were made slightly bigger and misaligned needlessly. The
problem in the linked issue was to fix connection area, not make them
bigger.
- https://github.com/Significant-Gravitas/AutoGPT/issues/8913
### Changes 🏗️
- Revert pins size to smaller
- Fix hover area and highlight for input pins
### Checklist 📋
#### For code changes:
- [x] I have clearly listed my changes in the PR description
- [x] I have made a test plan
- [x] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [x] Connect, reconnect, remove connection
- [x] Tutorial works
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
2024-12-11 09:16:36 +00:00
SwiftyOS
07d732ece7
removing templates
2024-12-11 10:13:41 +01:00
SwiftyOS
54baa84c28
remove marketplace api
2024-12-11 10:13:41 +01:00
Krzysztof Czerwinski
6307ca1841
feat(platform): Include all agent versions in Runs in Monitor ( #8752 )
...
The graph version is bumped on each save. While the agent version is
changed, the past execution history is gone because the monitor page
only shows the latest version's execution history.
### Changes 🏗️
- Add `get_executions` on the backend that returns all executions of all
graphs for a user
- Display all executions (for all versions) for graphs in Monitor
- Rename ts mirror type `ExecutionMeta` to `GraphExecution` for
consistency with the backend
- Remove redundant `FlowRun` type on the frontend and use
`GraphExecution` instead
- Round execution duration text in Monitor to one decimal place
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
---------
Co-authored-by: Zamil Majdy <zamil.majdy@agpt.co>
2024-12-11 01:28:50 +00:00
SwiftyOS
0fb33f6cb7
add healty page
2024-12-10 15:42:16 +01:00
SwiftyOS
afd809f68a
re-enable launch darkly
2024-12-10 15:33:23 +01:00
SwiftyOS
a8ae006967
remove launch darkly
2024-12-10 15:12:42 +01:00
SwiftyOS
b7603f6053
Update Dockerfile to set HOSTNAME environment variable for development and production stages
2024-12-10 14:38:47 +01:00
SwiftyOS
c91099a5ef
added dynamic to force page rendering
2024-12-10 14:14:48 +01:00
SwiftyOS
c7ae4cfbda
fixes
2024-12-10 13:05:47 +01:00
SwiftyOS
b5e1c8075e
removed unused font import
2024-12-10 13:03:40 +01:00
SwiftyOS
d14cecb954
fix import
2024-12-10 13:02:28 +01:00
SwiftyOS
7a1176073d
updated monitoring page
2024-12-10 10:01:12 +01:00
Zamil Majdy
79c0c314e2
feat(frontend): Add field extraction handle for block with object output ( #8900 )
...
This addresses
https://github.com/Significant-Gravitas/AutoGPT/issues/8741
We have quite a few blocks with (object) outputs. The only way to really
use these is to use a "Find In Dictionary" block to pick out that
property.
If the structure of the output object is known, we should expose the
properties of the object directly as sub-outputs. This will make a huge
difference in UX and make using these blocks much much easier.
### Changes 🏗️
Recursively flatten object fields into output node handles
<img width="637" alt="image"
src="https://github.com/user-attachments/assets/dac1f691-9866-4bb7-96b7-20fa6ddbb616 ">
<img width="773" alt="image"
src="https://github.com/user-attachments/assets/f8e7f97c-b245-40bd-b84f-2c044f5f9e23 ">
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
<!-- Put your test plan here: -->
- [ ] ...
<details>
<summary>Example test plan</summary>
- [ ] Create from scratch and execute an agent with at least 3 blocks
- [ ] Import an agent from file upload, and confirm it executes
correctly
- [ ] Upload agent to marketplace
- [ ] Import an agent from marketplace and confirm it executes correctly
- [ ] Edit an agent from monitor, and confirm it executes correctly
</details>
#### For configuration changes:
- [ ] `.env.example` is updated or already compatible with my changes
- [ ] `docker-compose.yml` is updated or already compatible with my
changes
- [ ] I have included a list of my configuration changes in the PR
description (under **Changes**)
<details>
<summary>Examples of configuration changes</summary>
- Changing ports
- Adding new services that need to communicate with each other
- Secrets or environment variable changes
- New or infrastructure changes such as databases
</details>
Co-authored-by: Nicholas Tindle <nicholas.tindle@agpt.co>
2024-12-09 21:47:48 +00:00
dependabot[bot]
a7a526e820
build(deps): bump the production-dependencies group in /autogpt_platform/frontend with 12 updates ( #8925 )
...
Bumps the production-dependencies group in /autogpt_platform/frontend
with 12 updates:
| Package | From | To |
| --- | --- | --- |
| [@faker-js/faker](https://github.com/faker-js/faker ) | `9.2.0` |
`9.3.0` |
|
[@next/third-parties](https://github.com/vercel/next.js/tree/HEAD/packages/third-parties )
| `15.0.3` | `15.0.4` |
| [@supabase/supabase-js](https://github.com/supabase/supabase-js ) |
`2.46.1` | `2.47.3` |
|
[@xyflow/react](https://github.com/xyflow/xyflow/tree/HEAD/packages/react )
| `12.3.5` | `12.3.6` |
| [class-variance-authority](https://github.com/joe-bell/cva ) | `0.7.0`
| `0.7.1` |
| [dotenv](https://github.com/motdotla/dotenv ) | `16.4.5` | `16.4.7` |
|
[lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react )
| `0.462.0` | `0.468.0` |
| [next-themes](https://github.com/pacocoursey/next-themes ) | `0.4.3` |
`0.4.4` |
| [react-day-picker](https://github.com/gpbl/react-day-picker ) | `9.4.0`
| `9.4.2` |
| [react-hook-form](https://github.com/react-hook-form/react-hook-form )
| `7.53.2` | `7.54.0` |
| [react-icons](https://github.com/react-icons/react-icons ) | `5.3.0` |
`5.4.0` |
| [recharts](https://github.com/recharts/recharts ) | `2.13.3` | `2.14.1`
|
Updates `@faker-js/faker` from 9.2.0 to 9.3.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/faker-js/faker/releases "><code>@faker-js/faker</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v9.3.0</h2>
<h2>What's Changed</h2>
<ul>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3246 ">faker-js/faker#3246</a></li>
<li>infra: show eslint progress by <a
href="https://github.com/Shinigami92 "><code>@Shinigami92</code></a> in
<a
href="https://redirect.github.com/faker-js/faker/pull/3172 ">faker-js/faker#3172</a></li>
<li>infra(unicorn): prefer-string-slice by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3247 ">faker-js/faker#3247</a></li>
<li>infra: name eslint config groups for inspection by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3249 ">faker-js/faker#3249</a></li>
<li>infra(ci): prepare CI for GitHub merge queues by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3245 ">faker-js/faker#3245</a></li>
<li>fix(internet): ensure domainWord always returns a valid value in all
locales by <a
href="https://github.com/matthewmayer "><code>@matthewmayer</code></a>
in <a
href="https://redirect.github.com/faker-js/faker/pull/3253 ">faker-js/faker#3253</a></li>
<li>infra: remove preflight failure comment by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3188 ">faker-js/faker#3188</a></li>
<li>docs(guide): remove esModuleInterop flag from config by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3192 ">faker-js/faker#3192</a></li>
<li>test: fix vite import warning by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3248 ">faker-js/faker#3248</a></li>
<li>refactor(locale): lowercase Mexican color names by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3200 ">faker-js/faker#3200</a></li>
<li>test: verify the generated image links are working by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3127 ">faker-js/faker#3127</a></li>
<li>chore(deps): update dependency eslint-plugin-file-progress to v3 by
<a href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3252 ">faker-js/faker#3252</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3257 ">faker-js/faker#3257</a></li>
<li>refactor(locale): improve zh_CN vehicle manufacturers by <a
href="https://github.com/Heuluck "><code>@Heuluck</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3254 ">faker-js/faker#3254</a></li>
<li>refactor(finance): deprecate maskedNumber for removal by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3201 ">faker-js/faker#3201</a></li>
<li>feat: add initial seed parameter to constructors by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3220 ">faker-js/faker#3220</a></li>
<li>docs: faker.animal.type now has 44 possible animals by <a
href="https://github.com/s-inu "><code>@s-inu</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3258 ">faker-js/faker#3258</a></li>
<li>docs: expose documentation for all utilities by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3242 ">faker-js/faker#3242</a></li>
<li>infra(commit-and-tag-version): auto-bump version in usage-guide by
<a href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3250 ">faker-js/faker#3250</a></li>
<li>infra(unicorn): consistent-function-scoping by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3255 ">faker-js/faker#3255</a></li>
<li>chore(deps): bump <code>@eslint/plugin-kit</code> from 0.2.2 to
0.2.3 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3268 ">faker-js/faker#3268</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3271 ">faker-js/faker#3271</a></li>
<li>chore(test): cleanup usages of randomSeed by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3260 ">faker-js/faker#3260</a></li>
<li>refactor(locale): split en_AU_ocker first_names by sex by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3270 ">faker-js/faker#3270</a></li>
<li>infra(CI): skip required CI steps in merge_queues by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3265 ">faker-js/faker#3265</a></li>
<li>refactor(word): cleanup filter-word-list-by-length.ts by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3262 ">faker-js/faker#3262</a></li>
<li>chore: fix import styling by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3273 ">faker-js/faker#3273</a></li>
<li>chore: import validator functions individually by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3274 ">faker-js/faker#3274</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3277 ">faker-js/faker#3277</a></li>
<li>fix(locale): fix incorrect accents in it first_name by <a
href="https://github.com/matthewmayer "><code>@matthewmayer</code></a>
in <a
href="https://redirect.github.com/faker-js/faker/pull/3281 ">faker-js/faker#3281</a></li>
<li>test(image): improve error text by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3278 ">faker-js/faker#3278</a></li>
<li>fix(locale): add Isadora to female names in pt_BR for consistency by
<a
href="https://github.com/matthewmayer "><code>@matthewmayer</code></a>
in <a
href="https://redirect.github.com/faker-js/faker/pull/3282 ">faker-js/faker#3282</a></li>
<li>refactor(locale): split up Spanish generic first names by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3279 ">faker-js/faker#3279</a></li>
<li>docs(guide): fix link to <code>helpers</code> module by <a
href="https://github.com/yoshi2no "><code>@yoshi2no</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3289 ">faker-js/faker#3289</a></li>
<li>docs: add missing example return value for internet.jwt by <a
href="https://github.com/xDivisionByZerox "><code>@xDivisionByZerox</code></a>
in <a
href="https://redirect.github.com/faker-js/faker/pull/3286 ">faker-js/faker#3286</a></li>
<li>refactor(locale): sort person data by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3269 ">faker-js/faker#3269</a></li>
<li>docs: improve example output for replaceSymbols by <a
href="https://github.com/matthewmayer "><code>@matthewmayer</code></a>
in <a
href="https://redirect.github.com/faker-js/faker/pull/3304 ">faker-js/faker#3304</a></li>
<li>chore(deps): lock file maintenance by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3305 ">faker-js/faker#3305</a></li>
<li>chore(deps): update all non-major dependencies by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3292 ">faker-js/faker#3292</a></li>
<li>chore(deps): update codecov/codecov-action action to v5 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3299 ">faker-js/faker#3299</a></li>
<li>chore(deps): update dependency typescript to v5.7.2 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3296 ">faker-js/faker#3296</a></li>
<li>chore(deps): update dependency <code>@vueuse/core</code> to v12 by
<a href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3300 ">faker-js/faker#3300</a></li>
<li>chore(deps): update eslint by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3293 ">faker-js/faker#3293</a></li>
<li>chore(deps): update devdependencies by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3298 ">faker-js/faker#3298</a></li>
<li>chore(deps): update dependency vitepress to v1.5.0 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3297 ">faker-js/faker#3297</a></li>
<li>chore(deps): update vitest by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3294 ">faker-js/faker#3294</a></li>
<li>chore(deps): update dependency prettier to v3.4.1 by <a
href="https://github.com/renovate "><code>@renovate</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3295 ">faker-js/faker#3295</a></li>
<li>infra(unicorn): prefer-export-from by <a
href="https://github.com/ST-DDT "><code>@ST-DDT</code></a> in <a
href="https://redirect.github.com/faker-js/faker/pull/3272 ">faker-js/faker#3272</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/faker-js/faker/blob/next/CHANGELOG.md "><code>@faker-js/faker</code>'s
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/faker-js/faker/compare/v9.2.0...v9.3.0 ">9.3.0</a>
(2024-12-02)</h2>
<h3>Features</h3>
<ul>
<li>add initial seed parameter to constructors (<a
href="https://redirect.github.com/faker-js/faker/issues/3220 ">#3220</a>)
(<a
href="1633c8deb8
">1633c8d</a>)</li>
</ul>
<h3>Changed Locales</h3>
<ul>
<li><strong>locale:</strong> improve zh_CN vehicle manufacturers (<a
href="https://redirect.github.com/faker-js/faker/issues/3254 ">#3254</a>)
(<a
href="9abaed1061
">9abaed1</a>)</li>
<li><strong>locale:</strong> lowercase Mexican color names (<a
href="https://redirect.github.com/faker-js/faker/issues/3200 ">#3200</a>)
(<a
href="0d850758d0
">0d85075</a>)</li>
<li><strong>locale:</strong> sort person data (<a
href="https://redirect.github.com/faker-js/faker/issues/3269 ">#3269</a>)
(<a
href="01e20e9695
">01e20e9</a>)</li>
<li><strong>locale:</strong> split en_AU_ocker first_names by sex (<a
href="https://redirect.github.com/faker-js/faker/issues/3270 ">#3270</a>)
(<a
href="b0a5ad38bb
">b0a5ad3</a>)</li>
<li><strong>locale:</strong> split up Spanish generic first names (<a
href="https://redirect.github.com/faker-js/faker/issues/3279 ">#3279</a>)
(<a
href="5d5fe30ab4
">5d5fe30</a>)</li>
<li><strong>locale:</strong> update Polish city name (<a
href="https://redirect.github.com/faker-js/faker/issues/3306 ">#3306</a>)
(<a
href="53441b7773
">53441b7</a>)</li>
</ul>
<h3>Bug Fixes</h3>
<ul>
<li><strong>internet:</strong> ensure domainWord always returns a valid
value in all locales (<a
href="https://redirect.github.com/faker-js/faker/issues/3253 ">#3253</a>)
(<a
href="525fedc91b
">525fedc</a>)</li>
<li><strong>locale:</strong> add Isadora to female names in pt_BR for
consistency (<a
href="https://redirect.github.com/faker-js/faker/issues/3282 ">#3282</a>)
(<a
href="b390432626
">b390432</a>)</li>
<li><strong>locale:</strong> fix incorrect accents in it first_name (<a
href="https://redirect.github.com/faker-js/faker/issues/3281 ">#3281</a>)
(<a
href="e0fb23ef81
">e0fb23e</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="bdd55adc39
"><code>bdd55ad</code></a>
chore(release): 9.3.0 (<a
href="https://redirect.github.com/faker-js/faker/issues/3307 ">#3307</a>)</li>
<li><a
href="ecb5cb4a42
"><code>ecb5cb4</code></a>
chore(deps): lock file maintenance (<a
href="https://redirect.github.com/faker-js/faker/issues/3311 ">#3311</a>)</li>
<li><a
href="0fb42953af
"><code>0fb4295</code></a>
chore(deps): update vitest to v2.1.7 (<a
href="https://redirect.github.com/faker-js/faker/issues/3310 ">#3310</a>)</li>
<li><a
href="fcfb873913
"><code>fcfb873</code></a>
chore(deps): update dependency <code>@vitest/ui</code> to v2.1.7 (<a
href="https://redirect.github.com/faker-js/faker/issues/3309 ">#3309</a>)</li>
<li><a
href="53441b7773
"><code>53441b7</code></a>
refactor(locale): update Polish city name (<a
href="https://redirect.github.com/faker-js/faker/issues/3306 ">#3306</a>)</li>
<li><a
href="7d59cd9bfb
"><code>7d59cd9</code></a>
infra(unicorn): prefer-export-from (<a
href="https://redirect.github.com/faker-js/faker/issues/3272 ">#3272</a>)</li>
<li><a
href="176d430036
"><code>176d430</code></a>
chore(deps): update dependency prettier to v3.4.1 (<a
href="https://redirect.github.com/faker-js/faker/issues/3295 ">#3295</a>)</li>
<li><a
href="ed2c3a2014
"><code>ed2c3a2</code></a>
chore(deps): update vitest (<a
href="https://redirect.github.com/faker-js/faker/issues/3294 ">#3294</a>)</li>
<li><a
href="dd3dbbdd8c
"><code>dd3dbbd</code></a>
chore(deps): update dependency vitepress to v1.5.0 (<a
href="https://redirect.github.com/faker-js/faker/issues/3297 ">#3297</a>)</li>
<li><a
href="54cdd5b885
"><code>54cdd5b</code></a>
chore(deps): update devdependencies (<a
href="https://redirect.github.com/faker-js/faker/issues/3298 ">#3298</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/faker-js/faker/compare/v9.2.0...v9.3.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `@next/third-parties` from 15.0.3 to 15.0.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vercel/next.js/releases "><code>@next/third-parties</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v15.0.4</h2>
<blockquote>
<p>[!NOTE]<br />
This release is backporting changes. It does <strong>not</strong>
include all pending features/changes on canary.</p>
</blockquote>
<h3>Core Changes</h3>
<ul>
<li>Use React 19 stable in Pages Router: <a
href="https://redirect.github.com/vercel/next.js/pull/73564 ">vercel/next.js#73564</a></li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/eps1lon "><code>@eps1lon</code></a></p>
<h2>v15.0.4-canary.48</h2>
<h3>Misc Changes</h3>
<ul>
<li>refactor(turbopack): Use <code>ResolvedVc<T></code> for struct
fields in extra crates: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73451 ">#73451</a></li>
<li>refactor(turbopack): Use <code>ResolvedVc<T></code> for struct
fields in <code>next-api</code>, final part: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73367 ">#73367</a></li>
<li>docs: Fix image component API reference parsing: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73658 ">#73658</a></li>
<li>docs: fix code block language in images-and-fonts docs: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73492 ">#73492</a></li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/kdy1 "><code>@kdy1</code></a>, <a
href="https://github.com/eps1lon "><code>@eps1lon</code></a>, and <a
href="https://github.com/JamBalaya56562 "><code>@JamBalaya56562</code></a>
for helping!</p>
<h2>v15.0.4-canary.47</h2>
<h3>Misc Changes</h3>
<ul>
<li>test: fix next-sass test: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73633 ">#73633</a></li>
</ul>
<h3>Credits</h3>
<p>Huge thanks to <a
href="https://github.com/samcx "><code>@samcx</code></a> for
helping!</p>
<h2>v15.0.4-canary.46</h2>
<h3>Core Changes</h3>
<ul>
<li>Use consistent error formatting in terminal: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/71909 ">#71909</a></li>
<li>[Segment Cache] Interception routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73434 ">#73434</a></li>
<li>Upgrade to typescript 5.7: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73594 ">#73594</a></li>
<li>[Segment Cache] Use LRU to manage cache data : <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73486 ">#73486</a></li>
<li>[Segment Cache] Add isPartial to segment prefetch : <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73528 ">#73528</a></li>
<li>Fix missing client reference manifest error when using route groups:
<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73606 ">#73606</a></li>
<li>feat(after): stabilize <code>unstable_after</code>: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73605 ">#73605</a></li>
<li>[Segment Cache] Add isHeadPartial: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73530 ">#73530</a></li>
<li>fix: do not add suffix for sitemap under group routes: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73570 ">#73570</a></li>
<li>Dynamic IO: Improve error handling: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73607 ">#73607</a></li>
</ul>
<h3>Example Changes</h3>
<ul>
<li>Bump <code>examples/**</code> Eslint to v9: <a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73560 ">#73560</a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="d6a6aa1406
"><code>d6a6aa1</code></a>
v15.0.4</li>
<li><a
href="8774088bc2
"><code>8774088</code></a>
[Backport 15.0] Use React 19 stable (<a
href="https://github.com/vercel/next.js/tree/HEAD/packages/third-parties/issues/73564 ">#73564</a>)</li>
<li>See full diff in <a
href="https://github.com/vercel/next.js/commits/v15.0.4/packages/third-parties ">compare
view</a></li>
</ul>
</details>
<br />
Updates `@supabase/supabase-js` from 2.46.1 to 2.47.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/supabase/supabase-js/releases "><code>@supabase/supabase-js</code>'s
releases</a>.</em></p>
<blockquote>
<h2>v2.47.3</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.47.2...v2.47.3 ">2.47.3</a>
(2024-12-09)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>Bind proper object to setAuth on Realtime callback (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1324 ">#1324</a>)
(<a
href="325c2c9b25
">325c2c9</a>)</li>
</ul>
<h2>v2.47.2</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.47.1...v2.47.2 ">2.47.2</a>
(2024-12-06)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>bump auth-js to v2.66.1 (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1325 ">#1325</a>)
(<a
href="0ea6d8f2c7
">0ea6d8f</a>)</li>
</ul>
<h2>v2.47.1</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.47.0...v2.47.1 ">2.47.1</a>
(2024-12-05)</h2>
<h3>Reverts</h3>
<ul>
<li>Revert "feat: Realtime using accessToken callback for auth (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1320 ">#1320</a>)"
(<a
href="https://redirect.github.com/supabase/supabase-js/issues/1323 ">#1323</a>)
(<a
href="b9c86f503e
">b9c86f5</a>),
closes <a
href="https://redirect.github.com/supabase/supabase-js/issues/1320 ">#1320</a>
<a
href="https://redirect.github.com/supabase/supabase-js/issues/1323 ">#1323</a></li>
</ul>
<h2>v2.47.0</h2>
<h1><a
href="https://github.com/supabase/supabase-js/compare/v2.46.2...v2.47.0 ">2.47.0</a>
(2024-12-05)</h1>
<h3>Features</h3>
<ul>
<li>Realtime using accessToken callback for auth (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1320 ">#1320</a>)
(<a
href="88a44dfbfd
">88a44df</a>)</li>
</ul>
<h2>v2.46.2</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.46.1...v2.46.2 ">2.46.2</a>
(2024-11-27)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>bump up realtime-js (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1318 ">#1318</a>)
(<a
href="456f27e02e
">456f27e</a>)</li>
</ul>
<h2>v2.46.2-rc.3</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.46.2-rc.2...v2.46.2-rc.3 ">2.46.2-rc.3</a>
(2024-11-13)</h2>
<h3>Bug Fixes</h3>
<ul>
<li>cut release (<a
href="917cbf717c
">917cbf7</a>)</li>
</ul>
<h2>v2.46.2-rc.2</h2>
<h2><a
href="https://github.com/supabase/supabase-js/compare/v2.46.2-rc.1...v2.46.2-rc.2 ">2.46.2-rc.2</a>
(2024-11-13)</h2>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="325c2c9b25
"><code>325c2c9</code></a>
fix: Bind proper object to setAuth on Realtime callback (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1324 ">#1324</a>)</li>
<li><a
href="0ea6d8f2c7
"><code>0ea6d8f</code></a>
fix: bump auth-js to v2.66.1 (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1325 ">#1325</a>)</li>
<li><a
href="b9c86f503e
"><code>b9c86f5</code></a>
Revert "feat: Realtime using accessToken callback for auth (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1320 ">#1320</a>)"
(<a
href="https://redirect.github.com/supabase/supabase-js/issues/1323 ">#1323</a>)</li>
<li><a
href="88a44dfbfd
"><code>88a44df</code></a>
feat: Realtime using accessToken callback for auth (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1320 ">#1320</a>)</li>
<li><a
href="456f27e02e
"><code>456f27e</code></a>
fix: bump up realtime-js (<a
href="https://redirect.github.com/supabase/supabase-js/issues/1318 ">#1318</a>)</li>
<li>See full diff in <a
href="https://github.com/supabase/supabase-js/compare/v2.46.1...v2.47.3 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `@xyflow/react` from 12.3.5 to 12.3.6
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/xyflow/xyflow/releases "><code>@xyflow/react</code>'s
releases</a>.</em></p>
<blockquote>
<h2><code>@xyflow/react</code><a
href="https://github.com/12 "><code>@12</code></a>.3.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4846 ">#4846</a> <a
href="7501793900
"><code>75017939</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Make it possible to use expandParent with immer and other immutable
helpers</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4865 ">#4865</a> <a
href="2c4acc2bd9
"><code>2c4acc2b</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Add group node to BuiltInNode type. Thanks <a
href="https://github.com/sjdemartini "><code>@sjdemartini</code></a>!</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4877 ">#4877</a> <a
href="9a8309dab8
"><code>9a8309da</code></a>
Thanks <a
href="https://github.com/peterkogo "><code>@peterkogo</code></a>! - Fix
intersections for nodes with origins other than [0,0]. Thanks <a
href="https://github.com/gmvrpw "><code>@gmvrpw</code></a>!</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4844 ">#4844</a> <a
href="6f11e552c3
"><code>6f11e552</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Allow custom data-testid for ReactFlow component</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4816 ">#4816</a> <a
href="43aa52a8cd
"><code>43aa52a8</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Type isValidConnection prop correctly by passing EdgeType</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4855 ">#4855</a> <a
href="106c2cf8e5
"><code>106c2cf8</code></a>
Thanks <a
href="https://github.com/mhuggins "><code>@mhuggins</code></a>! -
Support passing <code>path</code> element attributes to
<code>BaseEdge</code> component.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4862 ">#4862</a> <a
href="adf4fb4e7b
"><code>adf4fb4e</code></a>
Thanks <a
href="https://github.com/bcakmakoglu "><code>@bcakmakoglu</code></a>! -
Prevent default scrolling behavior when nodes or a selection is moved
with an arrow key press.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4875 ">#4875</a> <a
href="41d4743a69
"><code>41d4743a</code></a>
Thanks <a
href="https://github.com/peterkogo "><code>@peterkogo</code></a>! -
Prevent unnecessary rerenders of edges when resizing the flow.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4826 ">#4826</a> <a
href="5f90acdab1
"><code>5f90acda</code></a>
Thanks <a href="https://github.com/chrtze "><code>@chrtze</code></a>! -
Forward ref of the div inside Panel components.</p>
</li>
<li>
<p>Updated dependencies [<a
href="d60331e6ba
"><code>d60331e6</code></a>]:</p>
<ul>
<li><code>@xyflow/system</code><a
href="https://github.com/0 "><code>@0</code></a>.0.47</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/xyflow/xyflow/blob/main/packages/react/CHANGELOG.md "><code>@xyflow/react</code>'s
changelog</a>.</em></p>
<blockquote>
<h2>12.3.6</h2>
<h3>Patch Changes</h3>
<ul>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4846 ">#4846</a> <a
href="7501793900
"><code>75017939</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Make it possible to use expandParent with immer and other immutable
helpers</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4865 ">#4865</a> <a
href="2c4acc2bd9
"><code>2c4acc2b</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Add group node to BuiltInNode type. Thanks <a
href="https://github.com/sjdemartini "><code>@sjdemartini</code></a>!</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4877 ">#4877</a> <a
href="9a8309dab8
"><code>9a8309da</code></a>
Thanks <a
href="https://github.com/peterkogo "><code>@peterkogo</code></a>! - Fix
intersections for nodes with origins other than [0,0]. Thanks <a
href="https://github.com/gmvrpw "><code>@gmvrpw</code></a>!</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4844 ">#4844</a> <a
href="6f11e552c3
"><code>6f11e552</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Allow custom data-testid for ReactFlow component</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4816 ">#4816</a> <a
href="43aa52a8cd
"><code>43aa52a8</code></a>
Thanks <a href="https://github.com/moklick "><code>@moklick</code></a>!
- Type isValidConnection prop correctly by passing EdgeType</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4855 ">#4855</a> <a
href="106c2cf8e5
"><code>106c2cf8</code></a>
Thanks <a
href="https://github.com/mhuggins "><code>@mhuggins</code></a>! -
Support passing <code>path</code> element attributes to
<code>BaseEdge</code> component.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4862 ">#4862</a> <a
href="adf4fb4e7b
"><code>adf4fb4e</code></a>
Thanks <a
href="https://github.com/bcakmakoglu "><code>@bcakmakoglu</code></a>! -
Prevent default scrolling behavior when nodes or a selection is moved
with an arrow key press.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4875 ">#4875</a> <a
href="41d4743a69
"><code>41d4743a</code></a>
Thanks <a
href="https://github.com/peterkogo "><code>@peterkogo</code></a>! -
Prevent unnecessary rerenders of edges when resizing the flow.</p>
</li>
<li>
<p><a
href="https://redirect.github.com/xyflow/xyflow/pull/4826 ">#4826</a> <a
href="5f90acdab1
"><code>5f90acda</code></a>
Thanks <a href="https://github.com/chrtze "><code>@chrtze</code></a>! -
Forward ref of the div inside Panel components.</p>
</li>
<li>
<p>Updated dependencies [<a
href="d60331e6ba
"><code>d60331e6</code></a>]:</p>
<ul>
<li><code>@xyflow/system</code><a
href="https://github.com/0 "><code>@0</code></a>.0.47</li>
</ul>
</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="ba75c01da4
"><code>ba75c01</code></a>
chore(packages): bump</li>
<li><a
href="42bb083a6c
"><code>42bb083</code></a>
Merge pull request <a
href="https://github.com/xyflow/xyflow/tree/HEAD/packages/react/issues/4877 ">#4877</a>
from xyflow/fix/intersection-origin2</li>
<li><a
href="7de640685a
"><code>7de6406</code></a>
Fix origin not being respected, when calulating rect</li>
<li><a
href="738510b709
"><code>738510b</code></a>
Prevent rerendering of EdgeRenderer by removing width & height from
selector</li>
<li><a
href="a666888a1e
"><code>a666888</code></a>
refacotr(types): add group node to BuiltInNode type</li>
<li><a
href="ce8c2cf7a6
"><code>ce8c2cf</code></a>
Merge pull request <a
href="https://github.com/xyflow/xyflow/tree/HEAD/packages/react/issues/4855 ">#4855</a>
from mhuggins/html-element-props</li>
<li><a
href="7a8e53463e
"><code>7a8e534</code></a>
chore(react): cleanup base edge</li>
<li><a
href="cc6b1d9717
"><code>cc6b1d9</code></a>
remove unsused import</li>
<li><a
href="cf3bae57b1
"><code>cf3bae5</code></a>
removed svg props from straight edge</li>
<li><a
href="3526963f0b
"><code>3526963</code></a>
Revert back to passing props manually</li>
<li>Additional commits viewable in <a
href="https://github.com/xyflow/xyflow/commits/@xyflow/react@12.3.6/packages/react ">compare
view</a></li>
</ul>
</details>
<br />
Updates `class-variance-authority` from 0.7.0 to 0.7.1
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/joe-bell/cva/releases ">class-variance-authority's
releases</a>.</em></p>
<blockquote>
<h2>v0.7.1</h2>
<h2>What's Changed</h2>
<ul>
<li>Add LICENSE Comments by <a
href="https://github.com/joe-bell "><code>@joe-bell</code></a> in <a
href="https://redirect.github.com/joe-bell/cva/pull/283 ">joe-bell/cva#283</a></li>
<li>chore: move clsx dependency to caret/semver range by <a
href="https://github.com/philwolstenholme "><code>@philwolstenholme</code></a>
in <a
href="https://redirect.github.com/joe-bell/cva/pull/316 ">joe-bell/cva#316</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/philwolstenholme "><code>@philwolstenholme</code></a>
made their first contribution in <a
href="https://redirect.github.com/joe-bell/cva/pull/316 ">joe-bell/cva#316</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/joe-bell/cva/compare/v0.7.0...v0.7.1 ">https://github.com/joe-bell/cva/compare/v0.7.0...v0.7.1 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="45462dd239
"><code>45462dd</code></a>
class-variance-authority@0.7.1</li>
<li><a
href="c236552742
"><code>c236552</code></a>
docs: change x.com references to bluesky</li>
<li><a
href="985dba91cf
"><code>985dba9</code></a>
chore: move clsx dependency to caret/semver range (<a
href="https://redirect.github.com/joe-bell/cva/issues/316 ">#316</a>)</li>
<li><a
href="d4ded2dfcc
"><code>d4ded2d</code></a>
chore: update sponsors.svg [ci skip]</li>
<li><a
href="ff1717cbe3
"><code>ff1717c</code></a>
ci(schedule): adjust cron date to offset midnight traffic</li>
<li><a
href="2f96730b7b
"><code>2f96730</code></a>
ci: prevent scheduled workflow running in forks</li>
<li><a
href="aaae670a35
"><code>aaae670</code></a>
docs(beta): bun installation</li>
<li><a
href="69feb436b6
"><code>69feb43</code></a>
update docs for bun installation (<a
href="https://redirect.github.com/joe-bell/cva/issues/261 ">#261</a>)</li>
<li><a
href="f9e2ea6764
"><code>f9e2ea6</code></a>
chore(docs): update banner links</li>
<li><a
href="5228f0e66f
"><code>5228f0e</code></a>
chore: link sponsors to raw svg</li>
<li>Additional commits viewable in <a
href="https://github.com/joe-bell/cva/compare/v0.7.0...v0.7.1 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `dotenv` from 16.4.5 to 16.4.7
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md ">dotenv's
changelog</a>.</em></p>
<blockquote>
<h2><a
href="https://github.com/motdotla/dotenv/compare/v16.4.6...v16.4.7 ">16.4.7</a>
(2024-12-03)</h2>
<h3>Changed</h3>
<ul>
<li>Ignore <code>.tap</code> folder when publishing. (oops, sorry about
that everyone. - <a
href="https://github.com/motdotla "><code>@motdotla</code></a>) <a
href="https://redirect.github.com/motdotla/dotenv/pull/848 ">#848</a></li>
</ul>
<h2><a
href="https://github.com/motdotla/dotenv/compare/v16.4.5...v16.4.6 ">16.4.6</a>
(2024-12-02)</h2>
<h3>Changed</h3>
<ul>
<li>Clean up stale dev dependencies <a
href="https://redirect.github.com/motdotla/dotenv/pull/847 ">#847</a></li>
<li>Various README updates clarifying usage and alternative solutions
using <a href="https://github.com/dotenvx/dotenvx ">dotenvx</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a338d68264
"><code>a338d68</code></a>
16.4.7</li>
<li><a
href="daf3e3d5cc
"><code>daf3e3d</code></a>
changelog 🪵 </li>
<li><a
href="fb74f6809f
"><code>fb74f68</code></a>
Merge pull request <a
href="https://redirect.github.com/motdotla/dotenv/issues/848 ">#848</a>
from Spice-King/patch-1</li>
<li><a
href="fe87ba23b5
"><code>fe87ba2</code></a>
Add .tap to .npmignore</li>
<li><a
href="0c9f764c66
"><code>0c9f764</code></a>
16.4.6</li>
<li><a
href="fd5f26b6c7
"><code>fd5f26b</code></a>
changelog 🪵 </li>
<li><a
href="bb19b6bb55
"><code>bb19b6b</code></a>
Merge pull request <a
href="https://redirect.github.com/motdotla/dotenv/issues/847 ">#847</a>
from motdotla/deps-updates</li>
<li><a
href="2f4e36bbe2
"><code>2f4e36b</code></a>
further dev dependency cleanup</li>
<li><a
href="c2fdd0169d
"><code>c2fdd01</code></a>
send to codecov</li>
<li><a
href="6707487b9e
"><code>6707487</code></a>
add test coverage</li>
<li>Additional commits viewable in <a
href="https://github.com/motdotla/dotenv/compare/v16.4.5...v16.4.7 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `lucide-react` from 0.462.0 to 0.468.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/lucide-icons/lucide/releases ">lucide-react's
releases</a>.</em></p>
<blockquote>
<h2>New icons 0.468.0</h2>
<h2>New icons 🎨 </h2>
<ul>
<li><code>waves-ladder</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2529 ">#2529</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
</ul>
<h2>New icons 0.467.0</h2>
<h2>New icons 🎨 </h2>
<ul>
<li><code>scan-heart</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2385 ">#2385</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
</ul>
<h2>Modified Icons 🔨 </h2>
<ul>
<li><code>book-dashed</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2399 ">#2399</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
</ul>
<h2>New icons 0.466.0</h2>
<h2>New icons 🎨 </h2>
<ul>
<li><code>list-filter-plus</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2645 ">#2645</a>)
by <a href="https://github.com/abdeniz "><code>@abdeniz</code></a></li>
</ul>
<h2>Modified Icons 🔨 </h2>
<ul>
<li><code>bell-dot</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
<li><code>bell-minus</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
<li><code>bell-off</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
<li><code>bell-plus</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
<li><code>bell-ring</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
<li><code>bell</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2656 ">#2656</a>)
by <a
href="https://github.com/karsa-mistmere "><code>@karsa-mistmere</code></a></li>
</ul>
<h2>New icons 0.465.0</h2>
<h2>New icons 🎨 </h2>
<ul>
<li><code>droplet-off</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2641 ">#2641</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
</ul>
<h2>Modified Icons 🔨 </h2>
<ul>
<li><code>flask-conical-off</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2659 ">#2659</a>)
by <a
href="https://github.com/jamiemlaw "><code>@jamiemlaw</code></a></li>
<li><code>flask-conical</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2659 ">#2659</a>)
by <a
href="https://github.com/jamiemlaw "><code>@jamiemlaw</code></a></li>
<li><code>flask-round</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2659 ">#2659</a>)
by <a
href="https://github.com/jamiemlaw "><code>@jamiemlaw</code></a></li>
</ul>
<h2>New icons 0.464.0</h2>
<h2>Modified Icons 🔨 </h2>
<ul>
<li><code>paperclip</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2482 ">#2482</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
<li><code>picture-in-picture</code> (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2481 ">#2481</a>)
by <a href="https://github.com/jguddas "><code>@jguddas</code></a></li>
</ul>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="4f038d5fe8
"><code>4f038d5</code></a>
feat(docs): add Bun.sh support to documentation (<a
href="https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react/issues/2642 ">#2642</a>)</li>
<li>See full diff in <a
href="https://github.com/lucide-icons/lucide/commits/0.468.0/packages/lucide-react ">compare
view</a></li>
</ul>
</details>
<br />
Updates `next-themes` from 0.4.3 to 0.4.4
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/pacocoursey/next-themes/releases ">next-themes's
releases</a>.</em></p>
<blockquote>
<h2>v0.4.4</h2>
<h2>What's Changed</h2>
<ul>
<li>fix: infinite loop theme flicker by <a
href="https://github.com/arturbien "><code>@arturbien</code></a> in <a
href="https://redirect.github.com/pacocoursey/next-themes/pull/329 ">pacocoursey/next-themes#329</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/o1Suleyman "><code>@o1Suleyman</code></a> made
their first contribution in <a
href="https://redirect.github.com/pacocoursey/next-themes/pull/328 ">pacocoursey/next-themes#328</a></li>
<li><a href="https://github.com/arturbien "><code>@arturbien</code></a>
made their first contribution in <a
href="https://redirect.github.com/pacocoursey/next-themes/pull/329 ">pacocoursey/next-themes#329</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/pacocoursey/next-themes/compare/v0.4.3...v0.4.4 ">https://github.com/pacocoursey/next-themes/compare/v0.4.3...v0.4.4 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="57c0561b1f
"><code>57c0561</code></a>
v0.4.4</li>
<li><a
href="ae2ab9b47a
"><code>ae2ab9b</code></a>
fix: infinite loop theme flicker (<a
href="https://redirect.github.com/pacocoursey/next-themes/issues/329 ">#329</a>)</li>
<li><a
href="32ef714130
"><code>32ef714</code></a>
Fix "With Tailwind" link (<a
href="https://redirect.github.com/pacocoursey/next-themes/issues/328 ">#328</a>)</li>
<li>See full diff in <a
href="https://github.com/pacocoursey/next-themes/compare/v0.4.3...v0.4.4 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `react-day-picker` from 9.4.0 to 9.4.2
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/gpbl/react-day-picker/releases ">react-day-picker's
releases</a>.</em></p>
<blockquote>
<h2>v9.4.2</h2>
<p>This release addresses some bugs in the dropdown caption layout.</p>
<h2>What's Changed</h2>
<ul>
<li>fix: display all available years in the dropdown by <a
href="https://github.com/rodgobbi "><code>@rodgobbi</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2614 ">gpbl/react-day-picker#2614</a></li>
<li>fix: display all months in dropdown by <a
href="https://github.com/gpbl "><code>@gpbl</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2619 ">gpbl/react-day-picker#2619</a></li>
<li>docs: update styling.mdx by <a
href="https://github.com/AlecRust "><code>@AlecRust</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2611 ">gpbl/react-day-picker#2611</a></li>
<li>docs: code typo in input-fields.mdx by <a
href="https://github.com/pkgacek "><code>@pkgacek</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2613 ">gpbl/react-day-picker#2613</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a href="https://github.com/AlecRust "><code>@AlecRust</code></a>
made their first contribution in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2611 ">gpbl/react-day-picker#2611</a></li>
<li><a href="https://github.com/pkgacek "><code>@pkgacek</code></a> made
their first contribution in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2613 ">gpbl/react-day-picker#2613</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/gpbl/react-day-picker/compare/v9.4.1...v9.4.2 ">https://github.com/gpbl/react-day-picker/compare/v9.4.1...v9.4.2 </a></p>
<h2>v9.4.1</h2>
<p>This release improves support for screen readers and fixes a
VoiceOver issue when navigating the calendar.</p>
<h2>What's Changed</h2>
<ul>
<li>fix(a11y): improve screen reader and VoiceOver support by <a
href="https://github.com/gpbl "><code>@gpbl</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2609 ">gpbl/react-day-picker#2609</a></li>
<li>feat(a11y): added <code>role</code> and <code>aria-label</code>
props by <a href="https://github.com/gpbl "><code>@gpbl</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2609 ">gpbl/react-day-picker#2609</a></li>
<li>chore(style): remove unused CSS variable by <a
href="https://github.com/gpbl "><code>@gpbl</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2610 ">gpbl/react-day-picker#2610</a></li>
<li>chore: use callbacks for dropdown event handlers by <a
href="https://github.com/gpbl "><code>@gpbl</code></a> in <a
href="https://redirect.github.com/gpbl/react-day-picker/pull/2602 ">gpbl/react-day-picker#2602</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/gpbl/react-day-picker/compare/v9.4.0...v9.4.1 ">https://github.com/gpbl/react-day-picker/compare/v9.4.0...v9.4.1 </a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="a617141132
"><code>a617141</code></a>
build: bump v9.4.2</li>
<li><a
href="63303e772a
"><code>63303e7</code></a>
fix: dropdown may miss some disabled months (<a
href="https://redirect.github.com/gpbl/react-day-picker/issues/2619 ">#2619</a>)</li>
<li><a
href="3db609c02f
"><code>3db609c</code></a>
chore(test): update variable name</li>
<li><a
href="203fc22b1f
"><code>203fc22</code></a>
fix: enable all years available in the year select dropdown (<a
href="https://redirect.github.com/gpbl/react-day-picker/issues/2614 ">#2614</a>)</li>
<li><a
href="90ed771859
"><code>90ed771</code></a>
website: update border-radius for admonition</li>
<li><a
href="1154e3b3b1
"><code>1154e3b</code></a>
website: update styles</li>
<li><a
href="62bbc85796
"><code>62bbc85</code></a>
website: remove draft documents</li>
<li><a
href="fd6975daa2
"><code>fd6975d</code></a>
docs: updatein input-fields.mdx code sample (<a
href="https://redirect.github.com/gpbl/react-day-picker/issues/2613 ">#2613</a>)</li>
<li><a
href="661c585ce3
"><code>661c585</code></a>
docs: update styling.mdx (<a
href="https://redirect.github.com/gpbl/react-day-picker/issues/2611 ">#2611</a>)</li>
<li><a
href="35a2824c22
"><code>35a2824</code></a>
chore(style): remove unused CSS variable (<a
href="https://redirect.github.com/gpbl/react-day-picker/issues/2610 ">#2610</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/gpbl/react-day-picker/compare/v9.4.0...v9.4.2 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `react-hook-form` from 7.53.2 to 7.54.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/react-hook-form/react-hook-form/releases ">react-hook-form's
releases</a>.</em></p>
<blockquote>
<h2>Version 7.54.0</h2>
<p>🦥 fix: useForm should return a new object on formState changes (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12424 ">#12424</a>)
🧻 improve prototype pollution check (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12431 ">#12431</a>)
🪖 fix: add FileList availability check for environments without FileList
support (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12332 ">#12332</a>)
🧪 close <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12198 ">#12198</a>
memo for useController and useFormState (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12421 ">#12421</a>)
🐞 fix <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12407 ">#12407</a>
useFieldArray append issue with useForm disabled props (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12420 ">#12420</a>)
🐞 fix <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12415 ">#12415</a>
issue with flatten object with null value (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12418 ">#12418</a>)
🐞 fix <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12385 ">#12385</a>
nested array field invalid validation report on removed (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12405 ">#12405</a>)
🙀 fix: hasPromiseValidation return true or false appropriately. (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12389 ">#12389</a>)
👃 fix more staled props (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12404 ">#12404</a>)</p>
<p>thanks to <a
href="https://github.com/developer-bandi "><code>@developer-bandi</code></a>,
<a href="https://github.com/OlegDev1 "><code>@OlegDev1</code></a>, <a
href="https://github.com/sukvvon "><code>@sukvvon</code></a>, <a
href="https://github.com/alexandredev3 "><code>@alexandredev3</code></a>
and <a
href="https://github.com/mfazekas "><code>@mfazekas</code></a></p>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="893ffcecee
"><code>893ffce</code></a>
7.54.0</li>
<li><a
href="9532038f15
"><code>9532038</code></a>
❤️ thank you so much for St. Galler Kantonalbank AG sponsor</li>
<li><a
href="5db95c93b7
"><code>5db95c9</code></a>
🐸 update SECURITY.md</li>
<li><a
href="09a9a495ec
"><code>09a9a49</code></a>
🦥 fix: useForm should return a new object on formState changes (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12424 ">#12424</a>)</li>
<li><a
href="0952f7e26d
"><code>0952f7e</code></a>
🧻 improve prototype pollution check (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12431 ">#12431</a>)</li>
<li><a
href="30ea87e203
"><code>30ea87e</code></a>
🪖 fix: add <code>FileList</code> availability check for environments
without <code>FileList</code> ...</li>
<li><a
href="29ae596609
"><code>29ae596</code></a>
🧪 close <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12198 ">#12198</a>
memo for useController and useFormState (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12421 ">#12421</a>)</li>
<li><a
href="2d7b78981f
"><code>2d7b789</code></a>
🐞 fix <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12407 ">#12407</a>
useFieldArray append issue with useForm disabled props (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12420 ">#12420</a>)</li>
<li><a
href="00e39c8a28
"><code>00e39c8</code></a>
🐞 fix <a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12415 ">#12415</a>
issue with flatten object with null value (<a
href="https://redirect.github.com/react-hook-form/react-hook-form/issues/12418 ">#12418</a>)</li>
<li><a
href="2b1c709815
"><code>2b1c709</code></a>
Update README.md</li>
<li>Additional commits viewable in <a
href="https://github.com/react-hook-form/react-hook-form/compare/v7.53.2...v7.54.0 ">compare
view</a></li>
</ul>
</details>
<br />
Updates `react-icons` from 5.3.0 to 5.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/react-icons/react-icons/releases ">react-icons's
releases</a>.</em></p>
<blockquote>
<h2>v5.4.0</h2>
<h2>What's Changed</h2>
<ul>
<li>Add closing of the icon details modal with the ESC key by <a
href="https://github.com/gabrielogregorio "><code>@gabrielogregorio</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/900 ">react-icons/react-icons#900</a></li>
<li>support moduleResolution: bundler in tsconfig by <a
href="https://github.com/kamijin-fanta "><code>@kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/970 ">react-icons/react-icons#970</a></li>
<li>min search length changed to 2 by <a
href="https://github.com/Kumar06Lav "><code>@Kumar06Lav</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/967 ">react-icons/react-icons#967</a></li>
<li>Bump webpack from 5.89.0 to 5.94.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/975 ">react-icons/react-icons#975</a></li>
<li>Bump micromatch from 4.0.5 to 4.0.8 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/976 ">react-icons/react-icons#976</a></li>
<li>Bump axios from 1.6.8 to 1.7.7 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/977 ">react-icons/react-icons#977</a></li>
<li>preview: Reduce the number of results displayed in search results by
<a
href="https://github.com/kamijin-fanta "><code>@kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/997 ">react-icons/react-icons#997</a></li>
<li>2024-12-03 upgrade icons by <a
href="https://github.com/kamijin-fanta "><code>@kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/998 ">react-icons/react-icons#998</a></li>
<li>Bump dset from 3.1.3 to 3.1.4 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/979 ">react-icons/react-icons#979</a></li>
<li>Bump express from 4.19.2 to 4.21.0 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/981 ">react-icons/react-icons#981</a></li>
<li>Bump rollup from 2.79.1 to 2.79.2 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/982 ">react-icons/react-icons#982</a></li>
<li>Bump http-proxy-middleware from 2.0.6 to 2.0.7 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/989 ">react-icons/react-icons#989</a></li>
<li>Bump cross-spawn from 7.0.3 to 7.0.6 by <a
href="https://github.com/dependabot "><code>@dependabot</code></a> in <a
href="https://redirect.github.com/react-icons/react-icons/pull/994 ">react-icons/react-icons#994</a></li>
<li>workflow: upgrade workflows by <a
href="https://github.com/kamijin-fanta "><code>@kamijin-fanta</code></a>
in <a
href="https://redirect.github.com/react-icons/react-icons/pull/999 ">react-icons/react-icons#999</a></li>
</ul>
<h2>New Contributors</h2>
<ul>
<li><a
href="https://github.com/Kumar06Lav "><code>@Kumar06Lav</code></a> made
their first contribution in <a
href="https://redirect.github.com/react-icons/react-icons/pull/967 ">react-icons/react-icons#967</a></li>
</ul>
<p><strong>Full Changelog</strong>: <a
href="https://github.com/react-icons/react-icons/compare/v5.3.0...v5.4.0 ">https://github.com/react-icons/react-icons/compare/v5.3.0...v5.4.0 </a></p>
<table>
<thead>
<tr>
<th>Icon Library</th>
<th>License</th>
<th>Version</th>
<th align="right">Count</th>
</tr>
</thead>
<tbody>
<tr>
<td><a href="https://circumicons.com/ ">Circum Icons</a></td>
<td><a
href="https://github.com/Klarr-Agency/Circum-Icons/blob/main/LICENSE ">MPL-2.0
license</a></td>
<td>1.0.0</td>
<td align="right">288</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/ ">Font Awesome 5</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/ ">CC BY 4.0
License</a></td>
<td>5.15.4-3-gafecf2a</td>
<td align="right">1612</td>
</tr>
<tr>
<td><a href="https://fontawesome.com/ ">Font Awesome 6</a></td>
<td><a href="https://creativecommons.org/licenses/by/4.0/ ">CC BY 4.0
License</a></td>
<td>6.6.0</td>
<td align="right">2050</td>
</tr>
<tr>
<td><a href="https://ionicons.com/ ">Ionicons 4</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE ">MIT</a></td>
<td>4.6.3</td>
<td align="right">696</td>
</tr>
<tr>
<td><a href="https://ionicons.com/ ">Ionicons 5</a></td>
<td><a
href="https://github.com/ionic-team/ionicons/blob/master/LICENSE ">MIT</a></td>
<td>5.5.4</td>
<td align="right">1332</td>
</tr>
<tr>
<td><a href="http://google.github.io/material-design-icons/ ">Material
Design icons</a></td>
<td><a
href="https://github.com/google/material-design-icons/blob/master/LICENSE ">Apache
License Version 2.0</a></td>
<td>4.0.0-125-gef43291c4d</td>
<td align="right">4341</td>
</tr>
<tr>
<td><a href="http://s-ings.com/typicons/ ">Typicons</a></td>
<td><a href="https://creativecommons.org/licenses/by-sa/3.0/ ">CC BY-SA
3.0</a></td>
<td>2.1.2</td>
<td align="right">336</td>
</tr>
<tr>
<td><a href="https://octicons.github.com/ ">Github Octicons
icons</a></td>
<td><a
href="https://github.com/primer/octicons/blob/master/LICENSE ">MIT</a></td>
<td>18.3.0</td>
<td align="right">264</td>
</tr>
<tr>
<td><a href="https://feathericons.com/ ">Feather</a></td>
<td><a
href="https://github.com/feathericons/feather/blob/master/LICENSE ">MIT</a></td>
<td>4.29.2</td>
<td align="right">287<...
_Description has been truncated_
Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-09 20:49:31 +00:00
SwiftyOS
3145f3d59d
linting
2024-12-09 17:24:11 +01:00
SwiftyOS
89e8fe3854
fixes
2024-12-09 17:23:47 +01:00
SwiftyOS
6c34f8bd96
update lock files
2024-12-09 17:07:49 +01:00
SwiftyOS
6ccf62c3a6
tweaks to work with monitoring page
2024-12-09 17:05:04 +01:00
SwiftyOS
0217b75d65
Merge remote-tracking branch 'origin/dev' into dev-store-v2
2024-12-09 17:02:30 +01:00
SwiftyOS
6a712fd6bb
linting
2024-12-09 16:45:19 +01:00
SwiftyOS
f4244e5038
remove rating card
2024-12-09 16:42:30 +01:00
SwiftyOS
9c0e8750b0
remove unused global
2024-12-09 16:36:35 +01:00
Bently
14ecaf861e
feat(frontend): Update fonts + updates to agent page ( #8886 )
...
Updates fonts on most pages to match the design more + updates the agent
page, needs some more finishing up but nearly done
### Updated video showing most pages
https://github.com/user-attachments/assets/d90de22f-f2bd-477c-b3e7-544b5a17f2b7
---------
Co-authored-by: SwiftyOS <craigswift13@gmail.com>
2024-12-09 16:01:18 +01:00
SwiftyOS
6d6ed348fa
updated rating card
2024-12-09 15:58:42 +01:00
Abhimanyu Yadav
6997e2a170
fix(frontend) : Increase size of connection pin in blocks ( #8920 )
...
- Resolve https://github.com/Significant-Gravitas/AutoGPT/issues/8913
Increase size of Connection pin
<img width="1154" alt="Screenshot 2024-12-09 at 6 44 49 PM"
src="https://github.com/user-attachments/assets/7cd1ad0d-94c3-4027-aeea-d5ecd27e498d ">
2024-12-09 13:50:32 +00:00
SwiftyOS
1d81c61b77
added provider back and updated imports in custom node
2024-12-09 10:36:59 +01:00
SwiftyOS
3da5fc2cac
prevented importing the context whenever the client is used
2024-12-09 09:52:52 +01:00
SwiftyOS
8d8664a3ce
remove lang and comment out backend provider
2024-12-09 09:47:22 +01:00
Nicholas Tindle
b62f411518
feat(frontend): monitor tests ( #8880 )
...
<!-- Clearly explain the need for these changes: -->
We want to be able to test the monitor page with importing and exporting
agents
### Changes 🏗️
- Adds more test ids
- Builds out monitor.page.ts
- adds import export tests
- Fixes #8791 , fixes #8795 , fixes #8792
<!-- Concisely describe all of the changes made in this pull request:
-->
### Checklist 📋
#### For code changes:
- [ ] I have clearly listed my changes in the PR description
- [ ] I have made a test plan
- [ ] I have tested my changes according to the test plan:
Writing/Running the automated tests
2024-12-06 21:14:33 +00:00