Patrik Oldsberg
66342d83d4
Merge pull request #25769 from raphtalia/master
...
Add Cigna/Evernorth
2024-07-25 00:35:13 +02:00
Patrik Oldsberg
53904f21be
Merge pull request #25774 from chap/patch-3
...
fix typo in heroku docs
2024-07-25 00:32:42 +02:00
Patrik Oldsberg
d8b176e2a6
Merge pull request #25777 from leboncoin/fix-25452
...
fix(catalog-backend): preserve default allowedLocationTypes
2024-07-25 00:31:59 +02:00
Thomas Cardonne
51240ee9f7
fix(catalog-backend): preserve default allowedLocationTypes
...
Signed-off-by: Thomas Cardonne <thomas.cardonne@adevinta.com >
2024-07-25 00:19:20 +02:00
Chap Ambrose
963106f845
fix typo in heroku docs
...
Signed-off-by: Chap Ambrose <cambrose@salesforce.com >
2024-07-24 15:05:07 -05:00
Sydney Achinger
22b42e5b3c
Merge pull request #25549 from isabeltomb/update-patch-mkdocs
...
Update mkdocs pre-build patching
2024-07-24 14:41:05 -04:00
raphtalia
132529ae23
Add Cigna/Evernorth
...
Signed-off-by: raphtalia <59540801+raphtalia@users.noreply.github.com >
2024-07-24 10:36:00 -05:00
Ben Lambert
efa6625050
Merge pull request #25767 from backstage/rugvip/es
...
cli: use lowercase es2022
2024-07-24 16:19:10 +02:00
Patrik Oldsberg
e01c6cabf1
Merge pull request #25765 from backstage/blam/output-types
...
NFS: Added config input type to the Extensions
2024-07-24 15:37:23 +02:00
Patrik Oldsberg
e6e7d862fe
cli: use lowercase es2022
...
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2024-07-24 15:04:59 +02:00
blam
634909993c
chore: added changeset
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 15:04:55 +02:00
blam
0ad542cbc7
feat: added input types for the config to the extensions
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 14:39:36 +02:00
Ben Lambert
b424956a35
Merge pull request #25761 from backstage/blam/config-merging
...
NFS: Support config merging in Blueprints
2024-07-24 13:58:17 +02:00
blam
e967332785
chore: small refactor and fixing some of the types
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 13:40:43 +02:00
blam
3fb421d1b0
chore: added changeset
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:48:49 +02:00
blam
e59ff0b2bc
chore: tidy up
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:40:05 +02:00
backstage-goalie[bot]
f4f9e186a2
Merge pull request #25479 from backstage/renovate/octokit-monorepo
...
fix(deps): update dependency octokit to v3.2.1
2024-07-24 10:09:01 +00:00
blam
97157c5470
chore: do not allow redefing types from blueprint in make config schema
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:03:51 +02:00
blam
cac9c3f851
chore: added some tests
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:03:51 +02:00
blam
d22f1316c5
chore: getting somewhere with portable schemas and zod types
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:03:51 +02:00
blam
8e387301a4
chore: moving things around
...
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:03:51 +02:00
blam
21b66b184d
chore: initial experiments
...
Signed-off-by: blam <ben@blam.sh >
wip
Signed-off-by: blam <ben@blam.sh >
wip2
Signed-off-by: blam <ben@blam.sh >
wip3
Signed-off-by: blam <ben@blam.sh >
wip3
Signed-off-by: blam <ben@blam.sh >
2024-07-24 12:03:48 +02:00
Ben Lambert
6010595e1f
Merge pull request #25699 from backstage/dependabot/npm_and_yarn/ws-8.18.0
...
chore(deps): bump ws from 8.14.2 to 8.18.0
2024-07-24 09:42:06 +02:00
Ben Lambert
ee15b747dd
Merge pull request #25457 from chap/patch-2
...
Update heroku deploy docs
2024-07-24 09:36:23 +02:00
Isabel Tomb
0afa044555
Update test
...
Update the test that checks that the existing edit_uri value in a
mkdocs.yml won't be overridden by `patchMkdocsYmlPreBuild` so that it
checks the value of 'edit_uri' was not updated rather than just checking
for the existence of the substring. This change is needed because the
substring will exist in the file but as the `repo_url` value which is
expected after the changes in the previous commits.
Signed-off-by: Isabel Tomb <isabelgtomb@gmail.com >
2024-07-23 16:44:55 -05:00
Isabel Tomb
839e888e3a
Add a test for new repo_url edit_uri scenario
...
Add a test that checks that an edit_uri will be generated as expected
if the mkdocs.yml contains a `repo_url` value but no `edit_uri` vlaue.
Signed-off-by: Isabel Tomb <isabelgtomb@gmail.com >
2024-07-23 16:44:54 -05:00
Isabel Tomb
949083ddb4
Update patchMkdocsYmlPreBuild
...
Update the `patchMkdocsYmlPreBuild` function to modify `repo_url` and
`edit_uri` independently of each other. Prior to this change both
`repo_url` and `edit_uri` would have to be missing for either to be
generated which caused an issue in the situation where `repo_url`
is provided in the mkdocs.yml and `edit_uri` is not because the default
`edit_uri` value from mkdocs would be used instead. This value uses `master` as
the branch in the link which breaks the edit link for repos that don't use
`master` as the default branch.
Signed-off-by: Isabel Tomb <isabelgtomb@gmail.com >
2024-07-23 16:44:54 -05:00
dependabot[bot]
6a55e52ff3
chore(deps): bump ws from 8.14.2 to 8.18.0
...
Bumps [ws](https://github.com/websockets/ws ) from 8.14.2 to 8.18.0.
- [Release notes](https://github.com/websockets/ws/releases )
- [Commits](https://github.com/websockets/ws/compare/8.14.2...8.18.0 )
---
updated-dependencies:
- dependency-name: ws
dependency-type: indirect
...
Signed-off-by: dependabot[bot] <support@github.com >
2024-07-23 15:08:53 +00:00
Ben Lambert
8711fa8004
Merge pull request #25659 from backstage/changeset-release/master
...
Version Packages (next)
2024-07-23 17:01:52 +02:00
renovate[bot]
fc45f68ecc
fix(deps): update dependency octokit to v3.2.1
...
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
2024-07-23 14:54:20 +00:00
github-actions[bot]
4a8774820c
Version Packages (next)
2024-07-23 14:02:37 +00:00
Patrik Oldsberg
2431eb22fe
Merge pull request #25745 from backstage/rugvip/fetch
...
cli: fix forwarding of target dir when resolving optional bundling paths
2024-07-23 15:36:53 +02:00
Chap Ambrose
bf2984369d
cleanup heroku.md
...
Signed-off-by: Chap Ambrose <cambrose@salesforce.com >
2024-07-23 08:34:14 -05:00
Patrik Oldsberg
dc4fb4f6ac
cli: fix forwarding of target dir when resolving optional bundling paths
...
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2024-07-23 15:08:07 +02:00
Patrik Oldsberg
241ff86edd
Merge pull request #25743 from UsainBloot/usainbloot/hidden-cookie-auth-redirect
...
feat: Hide CookieAuthRedirect form
2024-07-23 13:48:20 +02:00
Jack Palmer
aeac3e9efa
chore: changeset
...
Signed-off-by: Jack Palmer <jackpalmer@spotify.com >
2024-07-23 12:31:58 +01:00
Jack Palmer
749b5efd22
feat: Add visibility hidden to CookieAuthRedirect
...
Signed-off-by: Jack Palmer <jackpalmer@spotify.com >
2024-07-23 12:30:26 +01:00
Ben Lambert
ba222773a4
Merge pull request #25742 from backstage/rugvip/fetch
...
core-app-api: fix immediate sign-in on sign-out
2024-07-23 13:30:03 +02:00
Patrik Oldsberg
9a46a81ece
core-app-api: fix immediate sign-in on sign-out
...
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2024-07-23 13:14:15 +02:00
Patrik Oldsberg
c54d313893
Merge pull request #25701 from backstage/blam/fixing-header-tabs
...
Move the `Link` component to `RoutedTabs` instead of `HeaderTabs`
2024-07-23 12:52:57 +02:00
Patrik Oldsberg
64a31877ff
Merge pull request #25739 from backstage/rugvip/new-public-index
...
app-next,docs: add example for public index entry point in new frontend system
2024-07-23 12:51:04 +02:00
Ben Lambert
2eb88c4d21
Merge pull request #25548 from Yghore/feat/mr-gitlab-automatic-commit-action
...
feat: add automatic commited action for merge-request gitlab
2024-07-23 12:48:48 +02:00
Patrik Oldsberg
3ad3a9a5c4
Merge pull request #25714 from backstage/rugvip/nolock
...
cli: remove most lockfile analysis features
2024-07-23 12:47:11 +02:00
blam
e3644bf16e
chore: fixing prettier
...
Signed-off-by: blam <ben@blam.sh >
2024-07-23 12:38:10 +02:00
Ben Lambert
fff8d69858
Merge pull request #25627 from benjidotsh/scaffolder/repo-url-picker-cleanup
...
refactor(scaffolder): clean up codebase of `RepoUrlPicker`
2024-07-23 12:29:27 +02:00
Patrik Oldsberg
9e8371b9e6
Update docs/tutorials/enable-public-entry.md
...
Co-authored-by: Jack Palmer <UsainBloot@users.noreply.github.com >
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2024-07-23 12:00:24 +02:00
Patrik Oldsberg
cceb439555
Merge pull request #25683 from backstage/blam/app-api
...
Remove occurrence of `backend-app-api` in plugins
2024-07-23 12:00:00 +02:00
Ben Lambert
cb6e0502fc
Merge pull request #25741 from backstage/blam/config-merging
...
NFS: Adjust `Blueprints` so that you can either provide `params` or a `factory` to the `make` function
2024-07-23 11:35:56 +02:00
blam
81ea85028c
chore: fix api-reports
...
Signed-off-by: blam <ben@blam.sh >
2024-07-23 11:16:05 +02:00
Patrik Oldsberg
32a38e1f37
cli: remove most lockfile analysis features
...
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com >
2024-07-23 11:15:06 +02:00