Skip to content

Bump @types/jest from 26.0.24 to 27.0.3 in /ui#3

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/ui/types/jest-27.0.3
Closed

Bump @types/jest from 26.0.24 to 27.0.3 in /ui#3
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/npm_and_yarn/ui/types/jest-27.0.3

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Dec 1, 2021

Bumps @types/jest from 26.0.24 to 27.0.3.

Commits

Dependabot compatibility score

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 ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Dec 1, 2021
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 1, 2021

The following labels could not be found: ci-no-api-tests, ci-no-qa-tests, ci-no-upgrade-tests.

@viswajithiii
Copy link
Contributor

@dependabot recreate

@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ui/types/jest-27.0.3 branch from 5158078 to fc4dc98 Compare December 8, 2021 00:01
@ghost
Copy link

ghost commented Dec 8, 2021

Tag for build #7177 is 3.67.x-104-g0ea9370a96.

💻 For deploying this image using the dev scripts, run the following first:

export MAIN_IMAGE_TAG='3.67.x-104-g0ea9370a96'

📦 You can also generate an installation bundle with:

docker run -i --rm stackrox/main:3.67.x-104-g0ea9370a96 central generate interactive > bundle.zip

🕹️ A roxctl binary artifact can be downloaded from CircleCI.

Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.24 to 27.0.3.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

---
updated-dependencies:
- dependency-name: "@types/jest"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/ui/types/jest-27.0.3 branch from fc4dc98 to 0ea9370 Compare December 8, 2021 10:34
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Jan 3, 2022

Superseded by #216.

@dependabot dependabot bot closed this Jan 3, 2022
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/ui/types/jest-27.0.3 branch January 3, 2022 09:37
clickboo added a commit that referenced this pull request Aug 27, 2024
# This is the 1st commit message:

WIP: Helm changes for config-controller

# The commit message #2 will be skipped:

# WIP: Helm changes for config-controller

# The commit message #3 will be skipped:

# helm ignore

# The commit message #4 will be skipped:

# remove comment block from deployment yaml

# The commit message #5 will be skipped:

# manager

# The commit message #6 will be skipped:

# remove indent

# The commit message #7 will be skipped:

# more fixes to indentation
@dcaravel dcaravel mentioned this pull request Jan 16, 2026
6 tasks
GrimmiMeloni added a commit that referenced this pull request Feb 2, 2026
…scriptors

Address three critical issues identified in code quality review:

Critical Issue #1: Unchecked Type Assertions
- Add checked type assertions at lines 29-42 for spec, crds, owned fields
- Add checked assertions at lines 46-60 for CRD and descriptor entries
- Add checked assertions at lines 84-89 in fixDescriptorOrder for path fields
- Add checked assertion at line 133-136 for currentPath field
- All failures now have proper error handling instead of panics

Critical Issue #2: Path Resolution Bug
- Fix lines 138-142 to check for strings.LastIndex returning -1
- Handle top-level paths (no dots) gracefully with early continue
- Prevents index-out-of-bounds panic when processing top-level fields

Critical Issue #3: URN Value Handling
- Fix line 125 to use strings.Join(parts[6:], ":")
- Preserves colons in URN values instead of truncating after first colon
- Handles values like "database:enabled" correctly

All existing tests pass. The tool now handles malformed input gracefully
with clear error messages instead of panicking.

This code was partially generated with AI assistance.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
GrimmiMeloni added a commit that referenced this pull request Feb 3, 2026
…scriptors

Address three critical issues identified in code quality review:

Critical Issue #1: Unchecked Type Assertions
- Add checked type assertions at lines 29-42 for spec, crds, owned fields
- Add checked assertions at lines 46-60 for CRD and descriptor entries
- Add checked assertions at lines 84-89 in fixDescriptorOrder for path fields
- Add checked assertion at line 133-136 for currentPath field
- All failures now have proper error handling instead of panics

Critical Issue #2: Path Resolution Bug
- Fix lines 138-142 to check for strings.LastIndex returning -1
- Handle top-level paths (no dots) gracefully with early continue
- Prevents index-out-of-bounds panic when processing top-level fields

Critical Issue #3: URN Value Handling
- Fix line 125 to use strings.Join(parts[6:], ":")
- Preserves colons in URN values instead of truncating after first colon
- Handles values like "database:enabled" correctly

All existing tests pass. The tool now handles malformed input gracefully
with clear error messages instead of panicking.

This code was partially generated with AI assistance.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
GrimmiMeloni added a commit that referenced this pull request Feb 3, 2026
…scriptors

Address three critical issues identified in code quality review:

Critical Issue #1: Unchecked Type Assertions
- Add checked type assertions at lines 29-42 for spec, crds, owned fields
- Add checked assertions at lines 46-60 for CRD and descriptor entries
- Add checked assertions at lines 84-89 in fixDescriptorOrder for path fields
- Add checked assertion at line 133-136 for currentPath field
- All failures now have proper error handling instead of panics

Critical Issue #2: Path Resolution Bug
- Fix lines 138-142 to check for strings.LastIndex returning -1
- Handle top-level paths (no dots) gracefully with early continue
- Prevents index-out-of-bounds panic when processing top-level fields

Critical Issue #3: URN Value Handling
- Fix line 125 to use strings.Join(parts[6:], ":")
- Preserves colons in URN values instead of truncating after first colon
- Handles values like "database:enabled" correctly

All existing tests pass. The tool now handles malformed input gracefully
with clear error messages instead of panicking.

This code was partially generated with AI assistance.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
GrimmiMeloni added a commit that referenced this pull request Feb 5, 2026
…scriptors

Address three critical issues identified in code quality review:

Critical Issue #1: Unchecked Type Assertions
- Add checked type assertions at lines 29-42 for spec, crds, owned fields
- Add checked assertions at lines 46-60 for CRD and descriptor entries
- Add checked assertions at lines 84-89 in fixDescriptorOrder for path fields
- Add checked assertion at line 133-136 for currentPath field
- All failures now have proper error handling instead of panics

Critical Issue #2: Path Resolution Bug
- Fix lines 138-142 to check for strings.LastIndex returning -1
- Handle top-level paths (no dots) gracefully with early continue
- Prevents index-out-of-bounds panic when processing top-level fields

Critical Issue #3: URN Value Handling
- Fix line 125 to use strings.Join(parts[6:], ":")
- Preserves colons in URN values instead of truncating after first colon
- Handles values like "database:enabled" correctly

All existing tests pass. The tool now handles malformed input gracefully
with clear error messages instead of panicking.

This code was partially generated with AI assistance.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
GrimmiMeloni added a commit that referenced this pull request Feb 5, 2026
…scriptors

Address three critical issues identified in code quality review:

Critical Issue #1: Unchecked Type Assertions
- Add checked type assertions at lines 29-42 for spec, crds, owned fields
- Add checked assertions at lines 46-60 for CRD and descriptor entries
- Add checked assertions at lines 84-89 in fixDescriptorOrder for path fields
- Add checked assertion at line 133-136 for currentPath field
- All failures now have proper error handling instead of panics

Critical Issue #2: Path Resolution Bug
- Fix lines 138-142 to check for strings.LastIndex returning -1
- Handle top-level paths (no dots) gracefully with early continue
- Prevents index-out-of-bounds panic when processing top-level fields

Critical Issue #3: URN Value Handling
- Fix line 125 to use strings.Join(parts[6:], ":")
- Preserves colons in URN values instead of truncating after first colon
- Handles values like "database:enabled" correctly

All existing tests pass. The tool now handles malformed input gracefully
with clear error messages instead of panicking.

This code was partially generated with AI assistance.

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant