Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 19, 2025

Bumps the npm-dependencies group with 2 updates in the /frontend directory: @types/dompurify and react-pdf.

Updates @types/dompurify from 3.0.5 to 3.2.0

Commits

Updates react-pdf from 10.1.0 to 10.2.0

Release notes

Sourced from react-pdf's releases.

v10.2.0

This is our first release that uses OIDC trusted publishing and immutable releases! 🎉

What's new?

  • Updated PDF.js to 5.4.296 (#2022).
  • Updated documentation to include warning about workerSrc module execution order (#2024).

Bug fixes

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for react-pdf since your current version.


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

@dependabot dependabot bot added frontend Frontend/UI related security Security related issues labels Oct 19, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 19, 2025

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added the frontend Frontend/UI related label Oct 19, 2025
@github-actions
Copy link
Contributor

🚀 Development Environment Options

This repository supports Dev Containers for a consistent development environment.

Option 1: GitHub Codespaces (Recommended)

Create a cloud-based development environment:

  1. Click the green Code button above
  2. Select the Codespaces tab
  3. Click Create codespace on dependabot/npm_and_yarn/frontend/npm-dependencies-8b750d16e2
  4. Wait 2-3 minutes for environment setup
  5. Start coding with all tools pre-configured!

Option 2: VS Code Dev Containers (Local)

Use Dev Containers on your local machine:

  1. Install Docker Desktop
  2. Install VS Code
  3. Install the Dev Containers extension
  4. Clone this PR branch locally
  5. Open in VS Code and click "Reopen in Container" when prompted

Option 3: Traditional Local Setup

Set up the development environment manually:

# Clone the repository
git clone https://github.com/manavgup/rag_modulo.git
cd rag_modulo
git checkout dependabot/npm_and_yarn/frontend/npm-dependencies-8b750d16e2

# Initialize development environment
make dev-init
make dev-build
make dev-up
make dev-validate

Available Commands

Once in your development environment:

make help           # Show all available commands
make dev-validate   # Validate environment setup
make test-atomic    # Run atomic tests
make test-unit      # Run unit tests
make lint          # Run linting

Services Available

When running make dev-up:


This automated message helps reviewers quickly set up the development environment.

…2 updates

Bumps the npm-dependencies group with 2 updates in the /frontend directory: [@types/dompurify](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/dompurify) and [react-pdf](https://github.com/wojtekmaj/react-pdf/tree/HEAD/packages/react-pdf).


Updates `@types/dompurify` from 3.0.5 to 3.2.0
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/dompurify)

Updates `react-pdf` from 10.1.0 to 10.2.0
- [Release notes](https://github.com/wojtekmaj/react-pdf/releases)
- [Commits](https://github.com/wojtekmaj/react-pdf/commits/v10.2.0/packages/react-pdf)

---
updated-dependencies:
- dependency-name: "@types/dompurify"
  dependency-version: 3.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
- dependency-name: react-pdf
  dependency-version: 10.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: npm-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/frontend/npm-dependencies-8b750d16e2 branch from 9ee9a0e to 7cb751c Compare October 20, 2025 02:30
manavgup pushed a commit that referenced this pull request Oct 22, 2025
Add support for ANTHROPIC_API_KEY as fallback authentication method
in Claude Code review workflow to handle OAuth token expiration/revocation.

This fixes the CI failure where CLAUDE_CODE_OAUTH_TOKEN was missing or expired:
- OAuth token preferred (for Pro/Max users)
- API key as fallback (for API key users)
- Action will use whichever is available

Related: PR #452 CI failure
Issue: OAuth tokens expired in October 2025

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <[email protected]>
manavgup added a commit that referenced this pull request Oct 22, 2025
Add support for ANTHROPIC_API_KEY as fallback authentication method
in Claude Code review workflow to handle OAuth token expiration/revocation.

This fixes the CI failure where CLAUDE_CODE_OAUTH_TOKEN was missing or expired:
- OAuth token preferred (for Pro/Max users)
- API key as fallback (for API key users)
- Action will use whichever is available

Related: PR #452 CI failure
Issue: OAuth tokens expired in October 2025

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-authored-by: Claude <[email protected]>
@manavgup manavgup merged commit 638128f into main Oct 26, 2025
21 of 26 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/frontend/npm-dependencies-8b750d16e2 branch October 26, 2025 00:28
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

frontend Frontend/UI related security Security related issues

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants