Skip to content

chore(deps): update yarn to v4.14.1#8543

Open
backstage-goalie[bot] wants to merge 10 commits intomainfrom
renovate/yarn-monorepo
Open

chore(deps): update yarn to v4.14.1#8543
backstage-goalie[bot] wants to merge 10 commits intomainfrom
renovate/yarn-monorepo

Conversation

@backstage-goalie
Copy link
Copy Markdown
Contributor

@backstage-goalie backstage-goalie Bot commented Apr 13, 2026

Summary of changes in this PR

This PR updates yarn from 4.12.04.14.1. Starting in yarn 4.13.0, two new security-focused defaults were introduced that affect several workspaces:

🔒 enableScripts: false (new default)

Yarn now disables lifecycle scripts (postinstall, install, etc.) by default during yarn install. This is a security hardening measure to prevent malicious packages from executing arbitrary code at install time.

Impact: Workspaces that depend on native Node.js modules (which require compilation via node-gyp at install time) will fail to build their binary bindings.

Fix applied: For workspaces that need native modules, dependenciesMeta entries were added to the workspace root package.json to explicitly opt those specific packages back in:

Workspace Native module Reason
announcements, badges, bazaar, code-coverage, copilot, entity-feedback, keycloak, linguist, mcp-chat, ocm, playlist, rbac, tech-insights multi-source-security-viewer better-sqlite3 SQLite bindings require compilation
kiali canvas Canvas rendering requires native bindings
multi-source-security-viewer isolated-vm V8 isolate bindings require compilation
"dependenciesMeta": {
  "better-sqlite3": {
    "built": true
  }
}

Note: The dependenciesMeta entries added in this PR cover only the packages that were causing CI failures. It is possible that other packages in some workspaces also require build scripts to work correctly in local development — however, we are intentionally keeping this list minimal. The safer default is to only allow what is strictly necessary, and let individual workspace owners opt-in additional packages if needed.

To discover which packages in a workspace are being blocked, you can run yarn install and look for YN0004 warning messages in the output — each one indicates a package that requested a build script but was blocked by enableScripts: false. Example:

➤ YN0004: │ better-sqlite3@npm:5.9.0 tried to access a script (install), but this is not allowed

🔒 approvedGitRepositories (new default)

Git-sourced dependencies (e.g. "pkg": "github:org/repo") are now blocked by default. Workspaces using git dependencies need to explicitly approve them.

📦 yarn.lock metadata version bump

Yarn 4.14.x updated the lockfile format to metadata version 9. All workspace yarn.lock files were regenerated to reflect this.

🧹 Additional fixes required to pass CI

  • workspaces/jenkins/packages/app-next/knip-report.md: Updated the committed knip report to acknowledge known unused dependencies (@backstage/core-components, @material-ui/icons) in the app-next package. The Sidebar.tsx component is defined but not yet wired into the app; knip correctly flags those deps as unreachable. The committed report acts as an acceptance list — CI passes when the generated report matches the committed one.

  • Other lint/type fixes: A small number of workspaces had pre-existing lint issues (@backstage/no-undeclared-imports, missing license headers, etc.) that were surfaced by the updated tooling and fixed alongside the yarn bump.


❓ Open question for reviewers

Some workspaces required lint fixes (undeclared imports, missing license headers, etc.) to unblock CI. Should we generate changesets for those packages, or would we prefer to leave that to the individual plugin owners to handle? Happy to add changesets if that's the preferred approach, just wanted to check before doing so.

original renovate description:

This PR contains the following updates:

Package Change Age Confidence
yarn (source) 4.12.04.14.1 age confidence

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

yarnpkg/berry (yarn)

v4.14.1

Compare Source

v4.14.0

Compare Source

v4.13.0

Compare Source


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

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

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

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


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

@backstage-goalie backstage-goalie Bot requested a review from a team as a code owner April 13, 2026 18:30
@backstage-goalie backstage-goalie Bot added the dependencies Pull requests that update a dependency file label Apr 13, 2026
@backstage-goalie backstage-goalie Bot requested a review from Parsifal-M April 13, 2026 18:30
@backstage-goalie backstage-goalie Bot force-pushed the renovate/yarn-monorepo branch 15 times, most recently from 3fba6c3 to 928737b Compare April 16, 2026 15:41
Copilot AI review requested due to automatic review settings April 16, 2026 16:44
@backstage-goalie backstage-goalie Bot force-pushed the renovate/yarn-monorepo branch from 928737b to 8c0c164 Compare April 16, 2026 16:44
@backstage-goalie backstage-goalie Bot review requested due to automatic review settings April 16, 2026 16:44
@backstage-goalie backstage-goalie Bot force-pushed the renovate/yarn-monorepo branch from 8c0c164 to 24ddf86 Compare April 16, 2026 20:24
@backstage-goalie backstage-goalie Bot requested review from Copilot and removed request for Copilot April 16, 2026 20:24
@backstage-goalie backstage-goalie Bot force-pushed the renovate/yarn-monorepo branch from 24ddf86 to 27b7668 Compare April 16, 2026 21:24
@backstage-goalie backstage-goalie Bot requested review from Copilot and removed request for Copilot April 16, 2026 21:24
@backstage-goalie backstage-goalie Bot force-pushed the renovate/yarn-monorepo branch from 27b7668 to 49713ce Compare April 16, 2026 23:24
@backstage-goalie backstage-goalie Bot review requested due to automatic review settings April 16, 2026 23:24
@Parsifal-M
Copy link
Copy Markdown
Contributor

@Sarabadu thanks for looking into this!

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Updates the repository’s pinned Yarn (Berry) version to 4.14.1 and regenerates lockfiles to match the new Yarn lockfile format/version.

Changes:

  • Bump Yarn pin in package.json (packageManager) to yarn@4.14.1.
  • Update .yarnrc.yml to point yarnPath at yarn-4.14.1.cjs.
  • Regenerate root and workspace yarn.lock files (including lockfile metadata version bump).

Reviewed changes

Copilot reviewed 2 out of 112 changed files in this pull request and generated no comments.

Show a summary per file
File Description
.yarnrc.yml Points yarnPath to the vendored Yarn 4.14.1 CLI.
package.json Pins package manager to yarn@4.14.1.
yarn.lock Regenerated with Yarn 4.14.1 (lockfile metadata version bump and resolution churn).
workspaces/3scale/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/acr/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/acs/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/adr/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/agent-forge/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/airbrake/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/allure/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/amplication/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/analytics/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/announcements/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/apache-airflow/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/apiiro/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/apollo-explorer/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/argocd/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/azure-devops/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/azure-resources/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/azure-sites/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/azure-storage-explorer/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/badges/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/bazaar/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/bitbucket-pull-requests/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/bitrise/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/blackduck/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/bookmarks/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/catalog/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/cicd-statistics/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/cloudbuild/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/code-climate/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/code-coverage/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/codescene/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/confluence/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/copilot/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/cost-insights/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/dynatrace/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/entity-feedback/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/entity-validation/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/explore/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/fairwinds-insights/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/feedback/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/firehydrant/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/flux/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/fossa/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/gcalendar/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/gcp-projects/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/git-release-manager/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/github/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/gitops-profiles/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/gocd/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/grafana/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/graphiql/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/graphql-voyager/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/growthbook-flags/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/ilert/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/jaeger/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/jenkins/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/jfrog-artifactory/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/kafka/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/keycloak/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/kiali/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/lighthouse/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/linkerd/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/linguist/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/manage/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/mcp-chat/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/mend/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/microsoft-calendar/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/mta/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/multi-source-security-viewer/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/n8n/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/newrelic/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/nexus-repository-manager/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/nomad/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/noop/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/npm/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/ocm/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/octopus-deploy/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/opencost/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/periskop/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/pingidentity/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/playlist/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/puppetdb/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/quay/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/rbac/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/repo-tools/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/report-portal/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/rollbar/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-backend-module-annotator/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-backend-module-kubernetes/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-backend-module-regex/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-backend-module-servicenow/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-backend-module-sonarqube/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/scaffolder-relation-processor/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/sentry/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/servicenow/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/shortcuts/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/sonarqube/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/splunk/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/stack-overflow/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/stackstorm/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/tech-insights/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/tech-radar/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/tekton/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/todo/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/topology/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/vault/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/wheel-of-names/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.
workspaces/xcmetrics/yarn.lock Lockfile metadata updated to match Yarn 4.14.1 format.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

@backstage-goalie
Copy link
Copy Markdown
Contributor Author

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@Sarabadu
Copy link
Copy Markdown
Contributor

Sry for the big ping here, we are updating yarn version here.
This minor version includes some important breaking changes

To prevent the malicious script execution Yan will now have this 2 configurations changes

Note: the yarn install default behavior set the yarnrc.yaml files to keep this behavior as non breaking change but i think it makes sense to try to keep the default values as seems safer defaults.

I will if any of the falling workspaces need this values to be enabled

@backstage-goalie
Copy link
Copy Markdown
Contributor Author

backstage-goalie Bot commented Apr 21, 2026

Missing Changesets

The following package(s) are changed by this PR but do not have a changeset:

  • @backstage-community/plugin-azure-resources-node
  • @backstage-community/plugin-multi-source-security-viewer
  • @backstage-community/plugin-tech-insights-common

See CONTRIBUTING.md for more information about how to add changesets.

Changed Packages

Package Name Package Path Changeset Bump Current Version
@backstage-community/plugin-azure-resources-node workspaces/azure-resources/plugins/azure-resources-node none v0.10.0
app-next workspaces/jenkins/packages/app-next none v0.0.2
backend workspaces/multi-source-security-viewer/packages/backend none v0.0.0
@backstage-community/plugin-multi-source-security-viewer workspaces/multi-source-security-viewer/plugins/multi-source-security-viewer none v0.15.2
@backstage-community/plugin-nexus-repository-manager workspaces/nexus-repository-manager/plugins/nexus-repository-manager patch v1.23.0
app workspaces/tech-insights/packages/app none v0.0.11
@backstage-community/plugin-tech-insights-common workspaces/tech-insights/plugins/tech-insights-common none v0.8.2

Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 13 out of 123 changed files in this pull request and generated no new comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

backstage-goalie Bot and others added 7 commits April 24, 2026 08:36
Signed-off-by: Renovate Bot <bot@renovateapp.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 25 out of 135 changed files in this pull request and generated 2 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread package.json
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 29 out of 139 changed files in this pull request and generated 1 comment.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread workspaces/jenkins/packages/app-next/knip-report.md
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 29 out of 139 changed files in this pull request and generated 2 comments.


💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread workspaces/jenkins/packages/app-next/package.json
Comment thread workspaces/jenkins/packages/app-next/package.json
Comment thread workspaces/announcements/package.json
Comment thread workspaces/feedback/yarn.lock
Comment thread workspaces/flux/plugins/flux/dev/index.tsx
Comment thread workspaces/jenkins/packages/app-next/knip-report.md
Comment thread workspaces/jenkins/packages/app-next/package.json
Comment thread workspaces/kiali/package.json
Sarabadu and others added 2 commits April 24, 2026 13:39
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Signed-off-by: Juan Pablo Garcia Ripa <sarabadu@gmail.com>
Copy link
Copy Markdown
Contributor

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

Copilot reviewed 30 out of 140 changed files in this pull request and generated 1 comment.

Comments suppressed due to low confidence (1)

workspaces/nexus-repository-manager/plugins/nexus-repository-manager/dev/alpha/index.ts:1

  • Using // eslint-disable-next-line without specifying a rule disables all lint rules for the following line, which can hide unrelated issues. Prefer disabling the specific rule being triggered (matching the approach used elsewhere in this PR) or add a brief justification plus a scoped rule name.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread .yarnrc.yml
npmRegistryServer: 'https://registry.npmjs.org/'

yarnPath: .yarn/releases/yarn-4.12.0.cjs
yarnPath: .yarn/releases/yarn-4.14.1.cjs
Copy link

Copilot AI Apr 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

With Yarn 4.13+ changing security-related defaults (notably lifecycle scripts), installs can behave differently depending on the Yarn version in use. Consider explicitly setting the intended script policy (e.g., enableScripts: false) in .yarnrc.yml so the behavior is stable and self-documenting, rather than relying on a version-dependent default.

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

enableScripts: false is the default now

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 workspace/acr workspace/acs workspace/adr workspace/agent-forge workspace/airbrake workspace/allure workspace/amplication workspace/analytics workspace/announcements Used to tag announcements workspace isses and pull requests workspace/apache-airflow workspace/apiiro workspace/apollo-explorer workspace/argocd workspace/azure-devops workspace/azure-resources workspace/azure-sites workspace/azure-storage-explorer workspace/badges workspace/bazaar workspace/bitbucket-pull-requests workspace/bitrise workspace/blackduck workspace/bookmarks workspace/catalog workspace/cicd-statistics workspace/cloudbuild workspace/code-climate workspace/code-coverage workspace/codescene workspace/confluence workspace/copilot workspace/cost-insights workspace/dynatrace workspace/entity-feedback workspace/entity-validation workspace/explore workspace/fairwinds-insights workspace/feedback workspace/firehydrant workspace/flux workspace/fossa workspace/gcalendar workspace/gcp-projects workspace/git-release-manager workspace/github workspace/gitops-profiles workspace/gocd workspace/grafana workspace/graphiql workspace/graphql-voyager workspace/growthbook-flags workspace/ilert workspace/jaeger workspace/jenkins workspace/jfrog-artifactory workspace/kafka workspace/keycloak workspace/kiali workspace/lighthouse workspace/linguist workspace/linkerd workspace/manage workspace/mcp-chat workspace/mend workspace/microsoft-calendar workspace/mta workspace/multi-source-security-viewer workspace/n8n workspace/newrelic workspace/nexus-repository-manager workspace/nomad workspace/npm workspace/ocm workspace/octopus-deploy workspace/opencost workspace/periskop workspace/pingidentity workspace/playlist workspace/puppetdb workspace/quay workspace/rbac workspace/report-portal workspace/rollbar workspace/scaffolder-backend-module-annotator workspace/scaffolder-backend-module-kubernetes workspace/scaffolder-backend-module-regex workspace/scaffolder-backend-module-servicenow workspace/scaffolder-backend-module-sonarqube workspace/scaffolder-relation-processor workspace/sentry workspace/servicenow workspace/shortcuts workspace/sonarqube workspace/splunk workspace/stack-overflow workspace/stackstorm workspace/tech-insights Used to tag tech-insights workspace issues and pull requests workspace/tech-radar workspace/3scale

Projects

None yet

Development

Successfully merging this pull request may close these issues.

7 participants