Commit Graph

13655 Commits

Author SHA1 Message Date
Patrik Oldsberg fc27103f1e Merge pull request #14517 from cthtrifork/patch-1
Add default errorHandler() to vault-backend
2022-11-14 16:32:59 +01:00
Fredrik Adelöw 050d65e245 Merge pull request #14554 from backstage/freben/photos
richer errors in the msgraph import steps
2022-11-14 16:31:47 +01:00
Patrik Oldsberg ef8787cab0 Merge pull request #14370 from afscrome/patch-4
Fix casing of EntityNamePicker validation error message
2022-11-14 16:07:47 +01:00
Anders Näsman e984e9018f Merge pull request #14256 from omerfarukdogan/master
feat(docs): hide document description if not provided
2022-11-14 14:05:18 +01:00
Fredrik Adelöw 56e853ef3b Merge pull request #14591 from kunickiaj/iap-header-config
Permit customizing the header name for the IAP jwt
2022-11-14 13:14:48 +01:00
Eric Peterson 9fe226592d Merge pull request #14573 from backstage/techdocs/entity-ref-analytics
[TechDocs] Analytics entity-awareness
2022-11-14 12:21:24 +01:00
Fredrik Adelöw 69e9f4e887 Merge pull request #13931 from Bonial-International-GmbH/pjungermann/bitbucket-cloud/events
feat: events
2022-11-14 12:08:52 +01:00
Emma Indal 8c4fe3171e update api report
Signed-off-by: Emma Indal <emma.indahl@gmail.com>
2022-11-14 10:52:14 +01:00
Emma Indal 4043f4c6cf accept result rank prop
Signed-off-by: Emma Indal <emma.indahl@gmail.com>
2022-11-14 10:50:59 +01:00
Emma Indal bab2ae85a5 write test for capturing rank prop
Signed-off-by: Emma Indal <emma.indahl@gmail.com>
2022-11-14 10:42:15 +01:00
Ben Lambert 5852bf4491 Merge pull request #14566 from backstage/blam/scaffolder-fix-types-for-next-extensions
scaffolder/next: fix the return type for `createNextScaffolderFieldExtension`
2022-11-13 13:21:57 +01:00
Adam Kunicki 89d705e806 Permit customizing the header name for the IAP jwt
This creates a new configuration parameter `jwtHeader` for the gcp-iap
auth provider. This allows setting a custom header to look in for the
IAP issued JWT.

Signed-off-by: Adam Kunicki <kunickiaj@gmail.com>
2022-11-11 21:02:55 -08:00
Patrick Jungermann 25f6d7bddb feat(events/gerrit): add GerritEventRouter
Add an event router for Gerrit
which handles events from the topic `gerrit`
and re-publishes events under their more specific topic
based on the `$.type` payload field
like e.g., `gerrit.change-merged`.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 01:38:34 +01:00
Patrick Jungermann 12cd94b7e9 feat(events/azure): add AzureDevOpsEventRouter
Add an event router for Azure DevOps
which handles events from the topic `azureDevOps`
and re-publishes events under their more specific topic
based on the `$.eventType` payload field
like e.g., `azureDevOps.git.push`.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 01:14:29 +01:00
Patrick Jungermann 63f7983398 feat(events/gitlab): add GitLabEventRouter
Add an event router for GitLab
which handles events from the topic `gitlab`
and re-publishes events under their more specific topic
based on the `$.event_name` payload field
like e.g., `gitlab.push`.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 01:14:29 +01:00
Patrick Jungermann b3a4edb885 feat(events/github): add GithubEventRouter
Add an event router for GitHub
which handles events from the topic `github`
and re-publishes events under their more specific topic
based on the `x-github-event` metadata
like e.g., `github.push`.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 01:14:29 +01:00
Patrick Jungermann d089fbe7dc feat(events,catalog/bitbucketCloud): handle repo:push events
Relates-to: #10866
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 01:14:29 +01:00
Patrick Jungermann b8f913096c fix(catalog/bitbucketCloud): fix test file name
The file was forgotten to be adjusted as part of PR #13859.

Relates-to: PR #13859
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 00:26:42 +01:00
Patrick Jungermann 6bc121bf0d feat(events/bitbucketCloud): add BitbucketCloudEventRouter
Add an event router for Bitbucket Cloud
which handles events from the topic `bitbucketCloud`
and re-publishes events under their more specific topic
based on the `x-event-key` metadata
like e.g., `bitbucketCloud.repo:push`.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 00:21:23 +01:00
Patrick Jungermann d3ecb2382d feat(events/sqs): add a new AWS SQS event publisher
This change introduces a new plugin `@backstage/plugin-events-backend-module-aws-sqs`.

This plugin provides an event publisher which receives events from
(an) AWS SQS queue(s) and publishes them to the event broker.

The plugin supports the new backend-plugin-api and connects with the other plugins.

Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 00:15:50 +01:00
Patrick Jungermann dc9da28abd feat(events/http): add HTTP endpoint-based event publisher
This plugin adds an event publisher which receives events via (an) HTTP endpoint(s)
and can be used as destination at webhook subscriptions.

Relates-to: #11082
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 00:02:48 +01:00
Patrick Jungermann 7bbd2403a1 feat(events): add events management capabilities
This change introduces some new plugins which provide the basics
for managing events inside of backstage.
Hereby, it offers extension points to add event publishers and subscribers
as well as to exchange the event broker implementation.

- `@backstage/plugin-events-backend`:
  backend for the events management which connects all parts
  and provides a simple in-memory event broker
- `@backstage/plugin-events-node`:
  interfaces and API for `@backstage/plugin-events-backend`
- `@backstage/plugin-events-test-utils`:
  test utilities like implementations useful for writing tests at modules

All plugins support the new backend-plugin-api.

Relates-to: #11082
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-12 00:00:49 +01:00
Alex Crome 4d23a5c7b2 Fix casing of EntityNamePicker validation error message
The error message for `EntityNamePicker` has two sentences.  The first word of the second sentence is capitalised, but the first sentence was not.  This fixes the capitalisation of the first sentence.

Signed-off-by: Alex Crome <afscrome@users.noreply.github.com>
2022-11-11 20:42:45 +00:00
Fredrik Adelöw 905a7613bf Merge pull request #14404 from mercedesbenzio/feature/sonarqube-improvements
sonarqube improvements
2022-11-11 15:37:35 +01:00
blam 0a0365e877 chore: fixing the return type in the api-report
Signed-off-by: blam <ben@blam.sh>
2022-11-11 12:08:14 +01:00
Eric Peterson bd2aab4726 Capture 'click' event on link clicks within TechDocs dom
Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
2022-11-11 12:00:37 +01:00
Eric Peterson 7d1352d459 Provide entityRef analytics context within TechDocs reader
Signed-off-by: Eric Peterson <ericpeterson@spotify.com>
2022-11-11 12:00:09 +01:00
Johan Haals 99399abc82 Merge pull request #14392 from K-Phoen/entity-cost-insights
Entity cost insights
2022-11-11 10:30:35 +01:00
Johan Haals 42f21aaed9 Merge pull request #14449 from elizabeth-a-hobbs/google-analytics-cleanup
Remove app.googleAnalyticsTrackingId and related scripts
2022-11-11 10:14:18 +01:00
blam d293d8ec22 chore: heres the actual fix
Signed-off-by: blam <ben@blam.sh>
2022-11-10 17:41:08 +01:00
blam c1f5541d5c chore: fixing the type for the return of the createNextScaffolderFieldExtension
Signed-off-by: blam <ben@blam.sh>
2022-11-10 17:35:09 +01:00
manusant b94af16ac8 Updates according PR commentas
Signed-off-by: manusant <ney.br.santos@gmail.com>
2022-11-10 16:08:42 +00:00
Ömer Faruk Doğan 63705e73d9 feat(docs): hide document description if not provided
Signed-off-by: Ömer Faruk Doğan <8117265+omerfarukdogan@users.noreply.github.com>
2022-11-10 16:58:21 +03:00
renovate[bot] 4db78c2296 Update dependency @asyncapi/react-component to v1.0.0-next.44
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-11-10 12:33:39 +00:00
Fredrik Adelöw 0e37858f22 richer errors in the msgraph import steps
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
2022-11-10 11:56:29 +01:00
manusant a4a7166fd0 Cleanup exports
Signed-off-by: manusant <ney.br.santos@gmail.com>
2022-11-10 10:13:57 +00:00
Fredrik Adelöw 07637bc5cb Merge pull request #13640 from philips-forks/feature/org_emails
Allow import of github org verified email in User entities
2022-11-10 09:04:39 +01:00
Fredrik Adelöw 43908b500d Merge pull request #14503 from Bonial-International-GmbH/pjungermann/catalog/location-at-errors
feat(catalog): add location to processing error logs
2022-11-10 08:52:36 +01:00
Elizabeth Hobbs df21bbd4ad Remove app.googleAnalyticsTrackingId and related scripts
The analytics plugin removed the need for app.googleAnalyticsTrackingId and the script tags in packages/app/public/index.html. More context: https://discord.com/channels/687207715902193673/1007303347914690610/1014108244664401952

Signed-off-by: Elizabeth Hobbs <elizabeth.hobbs94@gmail.com>
2022-11-09 09:03:35 -08:00
manusant ece8c70bb2 API report cleanup
Signed-off-by: manusant <ney.br.santos@gmail.com>
2022-11-09 16:25:10 +00:00
Patrick Jungermann c1a4addda3 feat(catalog): add location to processing error logs
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2022-11-09 16:49:15 +01:00
Fredrik Adelöw 94b7ca9c6d fixup
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
2022-11-09 13:15:49 +01:00
Fredrik Adelöw d503ba6d98 Merge pull request #14531 from backstage/renovate/msw-0.x
Update dependency msw to ^0.48.0
2022-11-09 13:02:16 +01:00
Fredrik Adelöw 4c9f7847e4 fixup
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
2022-11-09 12:12:10 +01:00
Johan Haals 3f620038f1 Merge pull request #14414 from plukanek/ownership-card-adjustments
Ownership card adjustments
2022-11-09 12:01:39 +01:00
Fredrik Adelöw 529057eeb6 Merge pull request #14506 from stichiboi/dags-run-3
Apache airflow add dag runs feature
2022-11-09 11:56:59 +01:00
renovate[bot] e13cd3feaf Update dependency msw to ^0.48.0
Signed-off-by: Renovate Bot <bot@renovateapp.com>
2022-11-09 10:15:16 +00:00
Johan Haals a821517110 Merge pull request #14446 from luchillo17/feat/BCKSTG-76
feat: Enable theme overrides for components in catalog-graph plugin
2022-11-09 11:14:44 +01:00
Pascal Lukanek 7869fab942 Type
Signed-off-by: Pascal Lukanek <pascal.lukanek@live.de>
2022-11-09 10:40:05 +01:00
Pascal Lukanek 964186628e Move name calculation to the EntityCountTile itself
Signed-off-by: Pascal Lukanek <pascal.lukanek@live.de>
2022-11-09 09:38:16 +01:00