Skip to content
This repository has been archived by the owner on Dec 27, 2024. It is now read-only.

Commit

Permalink
Update internal dependencies (#465)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] authored Oct 13, 2024
1 parent cfda065 commit 832e007
Show file tree
Hide file tree
Showing 17 changed files with 112 additions and 64 deletions.
22 changes: 0 additions & 22 deletions .changeset/clever-rings-protect.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/mean-ducks-hammer.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/strange-pants-own.md

This file was deleted.

17 changes: 0 additions & 17 deletions .changeset/thin-jars-glow.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/twelve-glasses-grin.md

This file was deleted.

28 changes: 28 additions & 0 deletions plugins/announcements-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @procore-oss/backstage-plugin-announcements-backend

## 0.10.4

### Patch Changes

- a16f8f9: Fixes an issue with the announcements count returning the incorrect value when filters are applied.

For example, if there are 2 total announcements in the database, and you request a `max` of 1 announcement, the count would still return 2.

```ts
// before
{
count: 2,
announcements: [mostRecentAnnouncement]
}


// after
{
count: 1,
announcements: [mostRecentAnnouncement]
}
```

- cfda065: Adds the ability to activate and deactivate an announcement. This should not be a breaking change. All existing announcements will backfill to `active: true`.
- Updated dependencies [cfda065]
- @procore-oss/backstage-plugin-announcements-common@0.2.8
- @procore-oss/backstage-plugin-search-backend-module[email protected]

## 0.10.3

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/announcements-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@procore-oss/backstage-plugin-announcements-backend",
"version": "0.10.3",
"version": "0.10.4",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
Expand Down
16 changes: 16 additions & 0 deletions plugins/announcements-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @procore-oss/backstage-plugin-announcements-common

## 0.2.8

### Patch Changes

- cfda065: Adds the ability to filter to only show active announcements

This should not be a breaking change. The `<AnnouncementsPage />` component now accepts an optional `hideInactive` prop that will hide inactive announcements. The default behavior is to show all announcements, or in other words, `hideInactive: false`.

```tsx
<AnnouncementsPage
title="Announcements"
...
hideInactive
/>
```

## 0.2.7

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/announcements-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@procore-oss/backstage-plugin-announcements-common",
"version": "0.2.7",
"version": "0.2.8",
"main": "src/index.ts",
"types": "src/index.ts",
"description": "Common functionalities for the announcements plugin",
Expand Down
7 changes: 7 additions & 0 deletions plugins/announcements-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @procore-oss/backstage-plugin-announcements-node

## 0.3.3

### Patch Changes

- Updated dependencies [cfda065]
- @procore-oss/backstage-plugin-announcements-common@0.2.8

## 0.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/announcements-node/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@procore-oss/backstage-plugin-announcements-node",
"description": "Node.js library for the announcements plugin",
"version": "0.3.2",
"version": "0.3.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
Expand Down
19 changes: 19 additions & 0 deletions plugins/announcements-react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# @procore-oss/backstage-plugin-announcements-react

## 0.4.7

### Patch Changes

- cfda065: Adds the ability to filter to only show active announcements

This should not be a breaking change. The `<AnnouncementsPage />` component now accepts an optional `hideInactive` prop that will hide inactive announcements. The default behavior is to show all announcements, or in other words, `hideInactive: false`.

```tsx
<AnnouncementsPage
title="Announcements"
...
hideInactive
/>
```

- Updated dependencies [cfda065]
- @procore-oss/backstage-plugin-announcements-common@0.2.8

## 0.4.6

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/announcements-react/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@procore-oss/backstage-plugin-announcements-react",
"description": "Web library for the announcements plugin",
"version": "0.4.6",
"version": "0.4.7",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
Expand Down
28 changes: 28 additions & 0 deletions plugins/announcements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @procore-oss/backstage-plugin-announcements

## 0.11.2

### Patch Changes

- e3b9e01: Add the ability to hide the context menu via a `hideContextMenu` boolean property.

The menu to access creating categories now includes a link to access the admin portal. However, the menu appears by default on the announcements page, and you may not want it visible to end users. Permissions are in place once a user lands on the admin portal, but it would be better to hide the menu altogether.

- cfda065: Adds the ability to filter to only show active announcements

This should not be a breaking change. The `<AnnouncementsPage />` component now accepts an optional `hideInactive` prop that will hide inactive announcements. The default behavior is to show all announcements, or in other words, `hideInactive: false`.

```tsx
<AnnouncementsPage
title="Announcements"
...
hideInactive
/>
```

- 977774e: Add a link from the context menu to admin portal, so users can leverage feature without the need to import a separate component.

It is still possible to import the `AnnouncementsAdminPortal` component and use it as before.

- Updated dependencies [cfda065]
- @procore-oss/backstage-plugin-announcements-common@0.2.8
- @procore-oss/backstage-plugin-announcements-react@0.4.7

## 0.11.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/announcements/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@procore-oss/backstage-plugin-announcements",
"version": "0.11.1",
"version": "0.11.2",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
Expand Down
8 changes: 8 additions & 0 deletions plugins/search-backend-module-announcements/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @procore-oss/backstage-plugin-search-backend-module-announcements

## 0.3.3

### Patch Changes

- Updated dependencies [cfda065]
- @procore-oss/backstage-plugin-announcements-common@0.2.8
- @procore-oss/backstage-plugin-announcements-node@0.3.3

## 0.3.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion plugins/search-backend-module-announcements/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@procore-oss/backstage-plugin-search-backend-module-announcements",
"description": "The announcements backend module for the search plugin.",
"version": "0.3.2",
"version": "0.3.3",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "MIT",
Expand Down

0 comments on commit 832e007

Please sign in to comment.