Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Feb 28, 2024
1 parent 11886c6 commit 9c67f8d
Show file tree
Hide file tree
Showing 18 changed files with 85 additions and 77 deletions.
11 changes: 0 additions & 11 deletions .changeset/brave-rocks-hide.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/chatty-countries-bathe.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/eighty-needles-complain.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/flat-ducks-punch.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/large-singers-learn.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/orange-owls-share.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/poor-queens-clean.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/shiny-foxes-teach.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/sweet-dancers-juggle.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tasty-vans-hunt.md

This file was deleted.

36 changes: 36 additions & 0 deletions plugins/s3-viewer-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,41 @@
# @spreadshirt/backstage-plugin-s3-viewer-backend

## 0.8.0

### Minor Changes

- d7091b6: Add support to the [new backend system](https://backstage.io/docs/backend-system/).

Follow the instructions in the [README.md](https://github.com/spreadshirt/backstage-plugin-s3/blob/main/plugins/s3-viewer-backend/README.md#new-backend-system)

**DEPRECATION**: The method `setRefreshInterval` has been deprecated in favor of the usage of the configuration file to schedule the refresh.
From now on, the schedule should be set using the `app-config.yaml` file. This method will be kept for some time as a fallback if the schedule
has not been set via the configuration file.

- 5bc27f0: Support overriding the default middleware used in the s3 backend. **NOTE** that
the custom middleware will _only_ be used if the `s3.permissionMiddleware` is set to `true`.

Also loosen up a little bit how the middleware has to be defined. Before it was required
to receive a `Config` and the `appEnv`, but now it's up to the user to decide which parameters
they need. This might require some breaking changes in your code, but we don't expect many people
needing to use this customization.

- 692b6ec: **BREAKING**: Some interfaces are now part of the `@spreadshirt/backstage-plugin-s3-viewer-node` package. If you were
using them, switch to this new package.
- 84db8bf: **BREAKING**: Moved some types that were part of this package to `@spreadshirt/backstage-plugin-s3-viewer-common`.
If you were using any of these types, please import them using `@spreadshirt/backstage-plugin-s3-viewer-common`:
`BucketDetailsFilter`, `BucketDetailsFilters`, `S3Platform`, `BucketCredentials`, `AllowedBuckets`

### Patch Changes

- 0940010: Import new types from `@spreadshirt/backstage-plugin-s3-viewer-common`
- Updated dependencies [c947924]
- Updated dependencies [84db8bf]
- Updated dependencies [5bc27f0]
- Updated dependencies [58ccb15]
- @spreadshirt/backstage-plugin-s3-viewer-node@0.1.0
- @spreadshirt/backstage-plugin-s3-viewer-common@0.4.0

## 0.7.6

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions plugins/s3-viewer-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spreadshirt/backstage-plugin-s3-viewer-backend",
"version": "0.7.6",
"version": "0.8.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -44,8 +44,8 @@
"@backstage/plugin-permission-common": "^0.7.12",
"@backstage/plugin-permission-node": "^0.7.21",
"@backstage/types": "^1.1.1",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.3.9",
"@spreadshirt/backstage-plugin-s3-viewer-node": "0.0.0",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.4.0",
"@spreadshirt/backstage-plugin-s3-viewer-node": "0.1.0",
"@types/express": "*",
"cookie-parser": "^1.4.5",
"cross-fetch": "^4.0.0",
Expand Down
12 changes: 12 additions & 0 deletions plugins/s3-viewer-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @spreadshirt/backstage-plugin-s3-viewer-common

## 0.4.0

### Minor Changes

- 84db8bf: **BREAKING**: Moved some types that were part of `@spreadshirt/backstage-plugin-s3-viewer-backend` to this package.
If you were using any of these types, please import them using `@spreadshirt/backstage-plugin-s3-viewer-common`:
`BucketDetailsFilter`, `BucketDetailsFilters`, `S3Platform`, `BucketCredentials`, `AllowedBuckets`

### Patch Changes

- 58ccb15: Make sure the new `s3-viewer` API endpoint is used for the cookie instead of the old `s3`

## 0.3.9

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/s3-viewer-common/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@spreadshirt/backstage-plugin-s3-viewer-common",
"description": "Common functionalities for the s3-viewer plugin",
"version": "0.3.9",
"version": "0.4.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down
17 changes: 17 additions & 0 deletions plugins/s3-viewer-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# @spreadshirt/backstage-plugin-s3-viewer-node

## 0.1.0

### Minor Changes

- c947924: Initial release. This package contains several interfaces as well as the extension point needed for the new backend system

### Patch Changes

- 5bc27f0: Add `setPermissionMiddleware` method to the extension point interface.

This method will allow users to override the default middleware when enabled.

- Updated dependencies [84db8bf]
- Updated dependencies [58ccb15]
- @spreadshirt/backstage-plugin-s3-viewer-common@0.4.0
4 changes: 2 additions & 2 deletions plugins/s3-viewer-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@spreadshirt/backstage-plugin-s3-viewer-node",
"description": "Node.js library for the s3-viewer plugin",
"version": "0.0.0",
"version": "0.1.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -37,7 +37,7 @@
],
"dependencies": {
"@backstage/backend-plugin-api": "^0.6.10",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.3.9",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.4.0",
"@types/express": "*",
"express": "^4.17.1",
"stream": "^0.0.2"
Expand Down
12 changes: 12 additions & 0 deletions plugins/s3-viewer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,17 @@
# @spreadshirt/backstage-plugin-s3-viewer

## 0.5.0

### Minor Changes

- 58ccb15: Updated base API to the new backend plugin, which is `s3-viewer` instead of `s3`. No breaking changes expected.

### Patch Changes

- Updated dependencies [84db8bf]
- Updated dependencies [58ccb15]
- @spreadshirt/backstage-plugin-s3-viewer-common@0.4.0

## 0.4.9

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions plugins/s3-viewer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@spreadshirt/backstage-plugin-s3-viewer",
"version": "0.4.9",
"version": "0.5.0",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",
Expand Down Expand Up @@ -36,7 +36,7 @@
"@material-ui/core": "^4.12.2",
"@material-ui/icons": "^4.9.1",
"@material-ui/lab": "^4.0.0-alpha.61",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.3.9",
"@spreadshirt/backstage-plugin-s3-viewer-common": "^0.4.0",
"react-use": "^17.2.4"
},
"peerDependencies": {
Expand Down

0 comments on commit 9c67f8d

Please sign in to comment.