-
Notifications
You must be signed in to change notification settings - Fork 259
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update announcements plugins to v1.34.2 (#2407)
* migrate env and docker-compose Signed-off-by: Kurt King <[email protected]> * Bump to v1.34.2 Signed-off-by: Kurt King <[email protected]> * Add missing app-config and node scripts Signed-off-by: Kurt King <[email protected]> * fix: access and privatePackages Signed-off-by: Kurt King <[email protected]> * update changeset config and remove private from package.json Signed-off-by: Kurt King <[email protected]> * update deps and prettier config Signed-off-by: Kurt King <[email protected]> * fix deps Signed-off-by: Kurt King <[email protected]> --------- Signed-off-by: Kurt King <[email protected]>
- Loading branch information
Showing
11 changed files
with
249 additions
and
329 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
'@backstage-community/plugin-search-backend-module-announcements': patch | ||
'@backstage-community/plugin-announcements-backend': patch | ||
'@backstage-community/plugin-announcements-common': patch | ||
'@backstage-community/plugin-announcements-react': patch | ||
'@backstage-community/plugin-announcements-node': patch | ||
'@backstage-community/plugin-announcements': patch | ||
--- | ||
|
||
Bump all dependencies to be in line with Backstage v1.34.2. This is the first versioned release of the announcement plugins under the `@backstage-community` scope. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
app: | ||
title: Announcements Dev App | ||
baseUrl: http://localhost:3000 | ||
|
||
permission: | ||
enabled: true | ||
|
||
backend: | ||
baseUrl: http://localhost:7007 | ||
listen: | ||
port: 7007 | ||
database: | ||
# uncomment for sqlite | ||
# client: better-sqlite3 | ||
# connection: ':memory:' | ||
client: pg | ||
connection: | ||
host: ${POSTGRES_HOST} | ||
port: ${POSTGRES_POST} | ||
user: ${POSTGRES_USER} | ||
password: ${POSTGRES_PASSWORD} | ||
cache: | ||
store: memory | ||
cors: | ||
origin: http://localhost:3000 | ||
methods: [GET, HEAD, PATCH, POST, PUT, DELETE] | ||
credentials: true | ||
csp: | ||
connect-src: ["'self'", 'http:', 'https:'] | ||
# Content-Security-Policy directives follow the Helmet format: https://helmetjs.github.io/#reference | ||
# Default Helmet Content-Security-Policy values can be removed by setting the key to false | ||
reading: | ||
allow: | ||
- host: localhost | ||
|
||
auth: | ||
providers: | ||
guest: {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
{ "version": "1.33.0" } | ||
{ | ||
"version": "1.34.2" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.