Conversation
Reviewer's GuideAdds a basic CircleCI configuration that defines a single Docker-based job and workflow to run a “Hello, World!” command on checkout. Flow diagram for CircleCI say-hello workflow executionflowchart TD
Start[Pipeline triggered]
LoadConfig[Load .github/config.yml version 2.1]
StartWorkflow[Start workflow say-hello-workflow]
StartJob[Start job say-hello]
StartDocker[Start Docker container cimg/base:current]
CheckoutCode[Checkout repository code]
RunHello[Run command echo Hello, World!]
End[Job and workflow complete]
Start --> LoadConfig --> StartWorkflow --> StartJob --> StartDocker --> CheckoutCode --> RunHello --> End
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
✅ Snyk checks have passed. No issues have been found so far.
💻 Catch issues earlier using the plugins for VS Code, JetBrains IDEs, Visual Studio, and Eclipse. |
Summary of ChangesHello @Dargon789, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed! This pull request establishes the foundational continuous integration pipeline for the repository by adding a CircleCI configuration. The primary goal is to automate a basic build and test process, starting with a simple "Hello, World!" job, which can be expanded upon in future development to ensure code quality and deployment readiness. Highlights
Using Gemini Code AssistThe full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips. Invoking Gemini You can request assistance from Gemini at any point by creating a comment using either
Customization To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a Limitations & Feedback Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here. You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension. Footnotes
|
There was a problem hiding this comment.
Hey - I've found 1 issue, and left some high level feedback:
- CircleCI expects its configuration at
.circleci/config.yml; placing this file under.github/config.ymlwill prevent CircleCI from picking it up unless you’ve customized the project settings accordingly. - Consider pinning the Docker image to a specific tag (e.g.
cimg/base:stableor a versioned tag) instead of:currentto avoid unexpected behavior when the base image is updated.
Prompt for AI Agents
Please address the comments from this code review:
## Overall Comments
- CircleCI expects its configuration at `.circleci/config.yml`; placing this file under `.github/config.yml` will prevent CircleCI from picking it up unless you’ve customized the project settings accordingly.
- Consider pinning the Docker image to a specific tag (e.g. `cimg/base:stable` or a versioned tag) instead of `:current` to avoid unexpected behavior when the base image is updated.
## Individual Comments
### Comment 1
<location> `.github/config.yml:12-14` </location>
<code_context>
+ docker:
+ # Specify the version you desire here
+ # See: https://circleci.com/developer/images/image/cimg/base
+ - image: cimg/base:current
+
+ # Add steps to the job
</code_context>
<issue_to_address>
**suggestion:** Using the `current` tag for the Docker image can introduce non-deterministic build behavior.
Because `cimg/base:current` moves over time, your build environment may change without any code changes, making failures hard to reproduce. Please pin to a specific version (e.g. `cimg/base:2024.01`) and update it deliberately when you want to change the environment.
```suggestion
# Specify the version you desire here (pin to a specific tag for reproducible builds)
# See: https://circleci.com/developer/images/image/cimg/base
- image: cimg/base:2024.01
```
</issue_to_address>Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
There was a problem hiding this comment.
Code Review
This pull request introduces a CircleCI configuration file, which is a great step for automating workflows. However, there are a couple of important issues. The most critical one is the file's location. It's currently at .github/config.yml, but CircleCI requires it to be at .circleci/config.yml to function. I've added a comment with more details. Additionally, for more stable and predictable builds, it's best practice to pin the Docker image to a specific version instead of using the current tag. A suggestion for this has been provided.
* Create config.yml d37b38e * Update .github/config.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
* Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
* Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
* #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
* #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io>
* fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
…#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
* fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * Revert "Fix React Server Components CVE vulnerabilities" * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: Dargon789 <64915515+Dargon789@users.noreply.github.com> * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 Co-authored-by: snyk-bot <snyk-bot@snyk.io> * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-…
…#60) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * Revert "Fix React Server Components CVE vulnerabilities" * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-… Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
* #26 #27 #28 (#29) * Create config.yml d37b38e * Update .github/config.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * fix ci (#32) * Create config.yml d37b38e * Update .github/config.yml Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> --------- Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
…#62) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml d37b38e * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](vercel/next.js@v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](react-hook-form/resolvers@v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](oddbird/css-anchor-positioning@v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](react-hook-form/react-hook-form@v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](colinhacks/zod@v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](microsoft/playwright@v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](sass/dart-sass@1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
* deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/re…
* deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/re… Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
* deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/Defin…
* deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/Defin… Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com>
…#72) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * Revert "Fix React Server Components CVE vulnerabilities" * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- * Merge pull request #28 from Dargon789/Dargon789-patch-2 (#52) (#53) * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... * Merge pull request #26 #27 #28 (#29) (#30) (#50) (#51) * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: zod dependency-version: 4.3.6 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@playwright/test" dependency-version: 1.58.2 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: sass dependency-version: 1.97.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor ... --------- --------- * fix: package.json & package-lock.json to reduce vulnerabilities (#56) (#57) * fix: package.json & package-lock.json to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json & package-lock.json to reduce vulnerabilities (#14) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: package.json to reduce vulnerabilities (#22) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14400636 - https://snyk.io/vuln/SNYK-JS-NEXT-14400644 * fix: package.json to reduce vulnerabilities (#19) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHT-14888269 * deps: bump next from 15.3.5 to 15.5.9 (#17) Bumps [next](https://github.com/vercel/next.js) from 15.3.5 to 15.5.9. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v15.5.9) --- updated-dependencies: - dependency-name: next dependency-version: 15.5.9 dependency-type: direct:production ... * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#15) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * fix: package.json to reduce vulnerabilities (#13) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-NEXT-14173355 * fix: upgrade react from 19.1.0 to 19.2.0 (#12) Snyk has created this PR to upgrade react from 19.1.0 to 19.2.0. See this package in npm: react See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade typescript from 5.8.3 to 5.9.3 (#11) Snyk has created this PR to upgrade typescript from 5.8.3 to 5.9.3. See this package in npm: typescript See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * feat: upgrade zod from 3.25.76 to 4.1.11 (#10) Snyk has created this PR to upgrade zod from 3.25.76 to 4.1.11. See this package in npm: zod See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * fix: upgrade next from 15.3.5 to 15.5.4 (#9) Snyk has created this PR to upgrade next from 15.3.5 to 15.5.4. See this package in npm: next See this project in Snyk: https://app.snyk.io/org/dargon789/project/bd915cfa-8fe9-4f58-ba9a-619316bbc691?utm_source=github-cloud-app&utm_medium=referral&page=upgrade-pr * deps: bump the dependencies-major group across 1 directory with 2 updates (#8) Bumps the dependencies-major group with 2 updates in the / directory: [next](https://github.com/vercel/next.js) and [zod](https://github.com/colinhacks/zod). Updates `next` from 15.3.5 to 16.0.0 - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v15.3.5...v16.0.0) Updates `zod` from 3.25.76 to 4.1.12 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v3.25.76...v4.1.12) --- updated-dependencies: - dependency-name: next dependency-version: 16.0.0 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major - dependency-name: zod dependency-version: 4.1.12 dependency-type: direct:production update-type: version-update:semver-major dependency-group: dependencies-major ... * fix: package.json to reduce vulnerabilities (#7) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-PLAYWRIGHTCORE-13553173 * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory * #26 #27 #28 (#29) (#30) * Create config.yml https://github.com/Dargon789/arcjet-example/commit/d37b38ea93bbc7f860b32f5134f57fe16dc21b9b * Update .github/config.yml * Delete .circleci directory --------- * deps: bump next from 16.0.10 to 16.1.6 (#39) Bumps [next](https://github.com/vercel/next.js) from 16.0.10 to 16.1.6. - [Release notes](https://github.com/vercel/next.js/releases) - [Changelog](https://github.com/vercel/next.js/blob/canary/release.js) - [Commits](https://github.com/vercel/next.js/compare/v16.0.10...v16.1.6) --- updated-dependencies: - dependency-name: next dependency-version: 16.1.6 dependency-type: direct:production ... * fix: package.json & package-lock.json to reduce vulnerabilities (#44) The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-JS-UNDICI-14943963 * deps: bump next-auth from 5.0.0-beta.29 to 5.0.0-beta.30 (#45) Bumps [next-auth](https://github.com/nextauthjs/next-auth) from 5.0.0-beta.29 to 5.0.0-beta.30. - [Release notes](https://github.com/nextauthjs/next-auth/releases) - [Commits](https://github.com/nextauthjs/next-auth/compare/next-auth@5.0.0-beta.29...next-auth@5.0.0-beta.30) --- updated-dependencies: - dependency-name: next-auth dependency-version: 5.0.0-beta.30 dependency-type: direct:production ... * deps: bump the dependencies-minor group across 1 directory with 16 updates (#49) Bumps the dependencies-minor group with 16 updates in the / directory: | Package | From | To | | --- | --- | --- | | [@arcjet/decorate](https://github.com/arcjet/arcjet-js/tree/HEAD/decorate) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/env](https://github.com/arcjet/arcjet-js/tree/HEAD/env) | `1.0.0-beta.9` | `1.1.0` | | [@arcjet/ip](https://github.com/arcjet/arcjet-js/tree/HEAD/ip) | `1.0.0-beta.9` | `1.1.0` | | [@fontsource-variable/figtree](https://github.com/fontsource/font-files/tree/HEAD/fonts/variable/figtree) | `5.2.8` | `5.2.10` | | [@fontsource/ibm-plex-mono](https://github.com/fontsource/font-files/tree/HEAD/fonts/google/ibm-plex-mono) | `5.2.6` | `5.2.7` | | [@hookform/resolvers](https://github.com/react-hook-form/resolvers) | `5.1.1` | `5.2.2` | | [@nosecone/next](https://github.com/arcjet/arcjet-js/tree/HEAD/nosecone-next) | `1.0.0-beta.9` | `1.1.0` | | [@oddbird/css-anchor-positioning](https://github.com/oddbird/css-anchor-positioning) | `0.6.1` | `0.8.0` | | [react](https://github.com/facebook/react/tree/HEAD/packages/react) | `19.2.0` | `19.2.4` | | [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `19.1.8` | `19.2.13` | | [react-dom](https://github.com/facebook/react/tree/HEAD/packages/react-dom) | `19.1.0` | `19.2.4` | | [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `19.1.6` | `19.2.3` | | [react-hook-form](https://github.com/react-hook-form/react-hook-form) | `7.60.0` | `7.71.1` | | [zod](https://github.com/colinhacks/zod) | `4.2.1` | `4.3.6` | | [@playwright/test](https://github.com/microsoft/playwright) | `1.55.1` | `1.58.2` | | [sass](https://github.com/sass/dart-sass) | `1.89.2` | `1.97.3` | Updates `@arcjet/decorate` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/decorate/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/decorate) Updates `@arcjet/env` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/env/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/env) Updates `@arcjet/ip` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/ip/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/ip) Updates `@fontsource-variable/figtree` from 5.2.8 to 5.2.10 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/variable/figtree) Updates `@fontsource/ibm-plex-mono` from 5.2.6 to 5.2.7 - [Changelog](https://github.com/fontsource/font-files/blob/main/CHANGELOG.md) - [Commits](https://github.com/fontsource/font-files/commits/HEAD/fonts/google/ibm-plex-mono) Updates `@hookform/resolvers` from 5.1.1 to 5.2.2 - [Release notes](https://github.com/react-hook-form/resolvers/releases) - [Commits](https://github.com/react-hook-form/resolvers/compare/v5.1.1...v5.2.2) Updates `@nosecone/next` from 1.0.0-beta.9 to 1.1.0 - [Release notes](https://github.com/arcjet/arcjet-js/releases) - [Changelog](https://github.com/arcjet/arcjet-js/blob/main/nosecone-next/CHANGELOG.md) - [Commits](https://github.com/arcjet/arcjet-js/commits/v1.1.0/nosecone-next) Updates `@oddbird/css-anchor-positioning` from 0.6.1 to 0.8.0 - [Release notes](https://github.com/oddbird/css-anchor-positioning/releases) - [Changelog](https://github.com/oddbird/css-anchor-positioning/blob/main/CHANGELOG.md) - [Commits](https://github.com/oddbird/css-anchor-positioning/compare/v0.6.1...v0.8.0) Updates `react` from 19.2.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `react-dom` from 19.1.0 to 19.2.4 - [Release notes](https://github.com/facebook/react/releases) - [Changelog](https://github.com/facebook/react/blob/main/CHANGELOG.md) - [Commits](https://github.com/facebook/react/commits/v19.2.4/packages/react-dom) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `react-hook-form` from 7.60.0 to 7.71.1 - [Release notes](https://github.com/react-hook-form/react-hook-form/releases) - [Changelog](https://github.com/react-hook-form/react-hook-form/blob/master/CHANGELOG.md) - [Commits](https://github.com/react-hook-form/react-hook-form/compare/v7.60.0...v7.71.1) Updates `zod` from 4.2.1 to 4.3.6 - [Release notes](https://github.com/colinhacks/zod/releases) - [Commits](https://github.com/colinhacks/zod/compare/v4.2.1...v4.3.6) Updates `@playwright/test` from 1.55.1 to 1.58.2 - [Release notes](https://github.com/microsoft/playwright/releases) - [Commits](https://github.com/microsoft/playwright/compare/v1.55.1...v1.58.2) Updates `@types/react` from 19.1.8 to 19.2.13 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react) Updates `@types/react-dom` from 19.1.6 to 19.2.3 - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react-dom) Updates `sass` from 1.89.2 to 1.97.3 - [Release notes](https://github.com/sass/dart-sass/releases) - [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md) - [Commits](https://github.com/sass/dart-sass/compare/1.89.2...1.97.3) --- updated-dependencies: - dependency-name: "@arcjet/decorate" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/env" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@arcjet/ip" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@fontsource-variable/figtree" dependency-version: 5.2.10 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@fontsource/ibm-plex-mono" dependency-version: 5.2.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@hookform/resolvers" dependency-version: 5.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@nosecone/next" dependency-version: 1.1.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@oddbird/css-anchor-positioning" dependency-version: 0.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: dependencies-minor - dependency-name: "@types/react" dependency-version: 19.2.13 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-dom dependency-version: 19.2.4 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: "@types/react-dom" dependency-version: 19.2.3 dependency-type: direct:development update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-name: react-hook-form dependency-version: 7.71.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: dependencies-minor - dependency-… Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: snyk-bot <snyk-bot@snyk.io> Co-authored-by: snyk-io[bot] <141718529+snyk-io[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: sourcery-ai[bot] <58596630+sourcery-ai[bot]@users.noreply.github.com>
d37b38e
Summary by Sourcery
CI: