Commit Graph

58703 Commits

Author SHA1 Message Date
Fredrik Adelöw bfa2ba3507 Merge pull request #26921 from Vity01/graphcard-action-property
Graphcard action property
2024-10-02 15:18:28 +02:00
Fredrik Adelöw 84a88a444e Merge pull request #26885 from jslott2sigma/skip-user-profile
Fixes #26503 Add skipUserProfile flag to Microsoft authenticator
2024-10-02 13:39:29 +02:00
Fredrik Adelöw 6b43d475fd Update .changeset/heavy-ties-tell.md
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
2024-10-02 12:28:52 +02:00
Fredrik Adelöw 77e741da06 Update docs/auth/microsoft/provider.md
Signed-off-by: Fredrik Adelöw <freben@gmail.com>
2024-10-02 12:28:47 +02:00
Ladislav Vitásek dd7f91efe3 fidn by title
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 12:17:46 +02:00
Ladislav Vitásek 1845810161 test and description
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 12:01:35 +02:00
Fredrik Adelöw 5bff622684 Merge pull request #26930 from Bonial-International-GmbH/pjungermann/bitbucket/fix-event-support
fix!: fix event support for Bitbucket Cloud
2024-10-02 11:52:53 +02:00
Vity 9b38e9105c Update .changeset/tricky-shoes-lie.md
Co-authored-by: Camila Belo <camilaibs@gmail.com>
Signed-off-by: Vity <vity@vity.cz>
2024-10-02 11:24:40 +02:00
Camila Belo 4db3fb9a55 docs: update api reports
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-02 11:10:58 +02:00
Ladislav Vitásek c8ef06c185 another .md file
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek 01c66780a0 another .md file
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek 389cef35dc another .md file
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek 4b0c06bc6f some additional api file
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek a81c073930 api regenerated
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek 4d9f39e38b added changeset
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Ladislav Vitásek a258ab8256 action attribute for CatalogGraphCard
Signed-off-by: Ladislav Vitásek <vity@vity.cz>
2024-10-02 11:06:37 +02:00
Camila Belo 2a1231d5e2 Merge pull request #26917 from backstage/scaffolder/more-ui-changes
[Scaffolder] Fix template editor mobile layout
2024-10-02 10:55:11 +02:00
Camila Belo d4cafc837a refactor: standardize template editor layout
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-02 10:40:44 +02:00
Fredrik Adelöw d2e0682611 Merge pull request #26820 from johannes-b/docs/dynatrace-blog-post
docs: Adopter spotlight about Dynatrace adopting Backstage
2024-10-02 10:29:55 +02:00
Camila Belo de9a686752 Merge pull request #26920 from backstage/scaffolder/create-actions-filter
[Scaffolder] Search box for filtering actions
2024-10-02 10:02:38 +02:00
Camila Belo 6178e68034 refactor: apply review suggestions
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-02 09:48:25 +02:00
Camila Belo 3ac4766ca7 feat: add a search box for filtering actions
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-02 09:35:18 +02:00
Camila Belo 41f8c8e2f3 Merge pull request #26879 from backstage/scaffolder/editor-toolbar-translation
[Scaffolder] Add translation to editor toolbar
2024-10-02 09:17:24 +02:00
Johannes Bräuer 5eea6ad842 Fixed issue with yarn prettier
Signed-off-by: Johannes Bräuer <johannes.braeuer@gmx.at>
2024-10-02 07:58:03 +02:00
Johannes Bräuer 12250a63a4 Added hero image and fixed reference to external sources
Signed-off-by: Johannes Bräuer <johannes.braeuer@gmx.at>
2024-10-02 07:45:09 +02:00
Adrian Kosiński e918061043 feat(techdocs): Add support for mkdocs material palette conditional hashes (#26821)
Signed-off-by: Adrian Kosinski <adrian.kosinski@allegro.com>
2024-10-01 15:53:24 -04:00
Patrick Jungermann 6343c8d915 fix!: fix event support for Bitbucket Cloud
Fixes the event-based updates at `BitbucketCloudEntityProvider`.

Previously, this entity provider had optional event support for legacy backends
that could be enabled by passing `catalogApi`, `events`, and `tokenManager`.

For the new/current backend system, the `catalogModuleBitbucketCloudEntityProvider`
(`catalog.bitbucket-cloud-entity-provider`), event support was enabled by default.

A recent change removed `tokenManager` as a dependency from the module as well as removed it as input.
While this didn't break the instantiation of the module, it broke the event-based updates
and led to a runtime misbehavior, accompanied by an info log message.

This change will replace the use of `tokenManager` with the use of `auth` (`AuthService`).

Additionally, it will make `catalogApi` and `events` required dependencies.
For the current backend system, this change is transparent and doesn't require any action.
For the legacy backend system, this change will require you to pass those dependencies if you didn't do it already.

**BREAKING CHANGES:**

> _(For legacy backend users only.)_
>
>  Previously optional `catalogApi`, and `events` are required now.
>  A new required dependency `auth` was added.

Fixes: #26925
Relates-to: PR #26141
Signed-off-by: Patrick Jungermann <Patrick.Jungermann@gmail.com>
2024-10-01 21:37:31 +02:00
Adrian Kosiński fbdc63116c feat(techdocs): Allow to pass options to GCS publisher (#26836)
* feat(techdocs): Allow to pass options to GCS publisher

Signed-off-by: Adrian Kosinski <adrian.kosinski@allegro.com>

---------

Signed-off-by: Adrian Kosinski <adrian.kosinski@allegro.com>
2024-10-01 13:40:47 -04:00
Jordan Slott daa02d6e64 Fixes #26503 Add skipUserProfile flag to Microsoft authenticator
Signed-off-by: Jordan Slott <jordan.slott@twosigma.com>
2024-10-01 09:33:27 -04:00
Camila Belo 8f52640e54 refactor: apply review suggestions
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-01 14:26:17 +02:00
Camila Belo f989c47e63 feat: add translation to editor toolbar
Signed-off-by: Camila Belo <camilaibs@gmail.com>
2024-10-01 14:26:17 +02:00
Fredrik Adelöw 1b05958bb1 Merge pull request #26847 from backstage/changeset-release/master
Version Packages (next)
2024-10-01 11:52:12 +02:00
github-actions[bot] c42c710982 Version Packages (next) 2024-10-01 09:20:36 +00:00
Ben Lambert 8376e12039 Merge pull request #26865 from joshjung/jjung/fix-error-message-getprojectid
Fix error message for getProjectId (GitLab)
2024-10-01 11:15:17 +02:00
Fredrik Adelöw d2c0746aee Merge pull request #26844 from aramissennyeydd/react-types-peer-dependencies
move react types to a dev dependency and peer dependency
2024-10-01 11:02:49 +02:00
Patrik Oldsberg ac89207e80 Merge pull request #26867 from Debanitrkl/deba-ccm-1
Add Harness CCM plugin to the microsite
2024-10-01 10:57:43 +02:00
Ben Lambert 0e88780189 Merge pull request #26769 from backstage/fix/clarify-register-existing-component-cta
Registering Existing Component CTA should be a secondary action
2024-10-01 10:57:14 +02:00
Patrik Oldsberg 898eb9873e Merge pull request #26896 from harness/cjlee1/fixRepoIssue
feat: fix issue in repos and parsing
2024-10-01 10:56:55 +02:00
Ben Lambert 634d19f7b3 Merge pull request #26813 from acierto/checkpoint-key
Included step name and step id into check point key.
2024-10-01 10:55:35 +02:00
Ben Lambert e9c211b542 Merge pull request #26687 from matthewbednarski/patch-2
Update bitbucketServerPullRequest.ts - protocol from apiBaseUrl
2024-10-01 10:51:22 +02:00
Ben Lambert 73d15a3f78 Merge pull request #26382 from drodil/scaffolder_pagination_frontend
feat: allow scaffolder tasks pagination in the frontend
2024-10-01 10:50:57 +02:00
Fredrik Adelöw a0bf75a4a1 Merge pull request #26904 from backstage/renovate/node-18.x-lockfile
chore(deps): update dependency @types/node to v18.19.54
2024-10-01 09:22:29 +02:00
Patrik Oldsberg ba7d7348e7 Merge pull request #26881 from backstage/rugvip/jest-split
cli: rework jest configuration collection
2024-09-30 22:10:38 +02:00
backstage-goalie[bot] a9455ca766 Merge pull request #26911 from backstage/renovate/vite-5.x-lockfile
chore(deps): update dependency vite to v5.4.8
2024-09-30 17:06:49 +00:00
renovate[bot] d7e8298a26 chore(deps): update dependency vite to v5.4.8
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-30 16:31:08 +00:00
backstage-goalie[bot] e6c9641de8 Merge pull request #26910 from backstage/renovate/nodemon-3.x-lockfile
chore(deps): update dependency nodemon to v3.1.7
2024-09-30 16:16:56 +00:00
renovate[bot] 07944d7419 chore(deps): update dependency nodemon to v3.1.7
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-30 15:40:08 +00:00
backstage-goalie[bot] 52c9445b64 Merge pull request #26909 from backstage/renovate/msw-2.x-lockfile
chore(deps): update dependency msw to v2.4.9
2024-09-30 15:24:50 +00:00
renovate[bot] 54fee6e8cb chore(deps): update dependency msw to v2.4.9
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-09-30 14:53:52 +00:00
backstage-goalie[bot] 150df8f597 Merge pull request #26907 from backstage/renovate/knip-5.x-lockfile
chore(deps): update dependency knip to v5.30.6
2024-09-30 14:47:52 +00:00