![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@red-hat-developer-hub/backstage-plugin-bulk-import
Advanced tools
This plugin allows bulk import of multiple catalog entities into the catalog.
The sections below are relevant for static plugins. If the plugin is expected to be installed as a dynamic one:
app-config.janus-idp.yaml
into app-config.local.yaml
.Follow the Bulk import backend plugin README to integrate bulk import in your Backstage instance.
Follow the GitHub Locations to integrate GitHub integrations in your Backstage instance. For now, the plugin only supports loading catalog entities from github.com or GitHub Enterprise.
NOTE
p, role:default/team_a, bulk.import, use, allow
p, role:default/team_a, catalog-entity.read, read, allow
p, role:default/team_a, catalog-entity.create, create, allow
g, user:default/<login-id/user-name>, role:default/team_a
Install the Bulk import UI plugin using the following command:
yarn workspace app add @red-hat-developer-hub/backstage-plugin-bulk-import
Add Route in packages/app/src/App.tsx
:
/* highlight-add-next-line */
import { BulkImportPage } from '@red-hat-developer-hub/backstage-plugin-bulk-import';
...
/* highlight-add-start */
<Route
path="/bulk-import"
element={<Navigate to="repositories" />}
/>
<Route
path="/bulk-import/repositories"
element={<BulkImportPage />}
/>
/* highlight-add-end */
...
Add Bulk import Sidebar Item in packages/app/src/components/Root/Root.tsx
:
/* highlight-add-next-line */
import { BulkImportSidebarItem } from '@red-hat-developer-hub/backstage-plugin-bulk-import';
export const Root = ({ children }: PropsWithChildren<{}>) => (
<SidebarPage>
<Sidebar>
...
/* highlight-add-next-line */
<BulkImportSidebarItem />
...
</SidebarPage>
);
FAQs
Unknown package
The npm package @red-hat-developer-hub/backstage-plugin-bulk-import receives a total of 470 weekly downloads. As such, @red-hat-developer-hub/backstage-plugin-bulk-import popularity was classified as not popular.
We found that @red-hat-developer-hub/backstage-plugin-bulk-import demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.