Version Packages (next)
This commit is contained in:
@@ -1,5 +1,20 @@
|
||||
# @backstage/backend-tasks
|
||||
|
||||
## 0.3.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- a83babdd63: Fixed the `initialDelay` parameter of tasks to properly make task workers
|
||||
_always_ wait before the first invocations on startup, not just the very first
|
||||
time that the task is ever created. This behavior is more in line with
|
||||
expectations. Callers to not need to update their code.
|
||||
|
||||
Also clarified in the doc comment for the field that this wait applies only on
|
||||
an individual worker level. That is, if you have a cluster of workers then each
|
||||
individual machine may postpone its first task invocation by the given amount of
|
||||
time to leave room for the service to settle, but _other_ workers may still
|
||||
continue to invoke the task on the regular cadence in the meantime.
|
||||
|
||||
## 0.3.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/backend-tasks",
|
||||
"description": "Common distributed task management library for Backstage backends",
|
||||
"version": "0.3.0-next.1",
|
||||
"version": "0.3.0-next.2",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"private": false,
|
||||
@@ -49,7 +49,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/backend-test-utils": "^0.1.23-next.1",
|
||||
"@backstage/cli": "^0.17.0-next.1",
|
||||
"@backstage/cli": "^0.17.0-next.2",
|
||||
"@types/cron": "^1.7.3",
|
||||
"wait-for-expect": "^3.0.2"
|
||||
},
|
||||
|
||||
@@ -1,5 +1,20 @@
|
||||
# @backstage/catalog-model
|
||||
|
||||
## 1.0.1-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- c12f8374d1: Added a connection between www-artist and artist-lookup components
|
||||
|
||||
<details>
|
||||
<summary>Screenshots</summary>
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
</details>
|
||||
|
||||
## 1.0.1-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/catalog-model",
|
||||
"description": "Types and validators that help describe the model of a Backstage Catalog",
|
||||
"version": "1.0.1-next.0",
|
||||
"version": "1.0.1-next.1",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
@@ -43,7 +43,7 @@
|
||||
"uuid": "^8.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/cli": "^0.17.0-next.1",
|
||||
"@backstage/cli": "^0.17.0-next.2",
|
||||
"@types/jest": "^26.0.7",
|
||||
"@types/json-schema": "^7.0.5",
|
||||
"@types/lodash": "^4.14.151",
|
||||
|
||||
@@ -1,5 +1,12 @@
|
||||
# @backstage/cli
|
||||
|
||||
## 0.17.0-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 6a341b2d87: build(deps): bump `@spotify/eslint-config-react` from 12.0.0 to 13.0.0
|
||||
- 4782f9e925: Fixed misleading log message during frontend plugin creation.
|
||||
|
||||
## 0.17.0-next.1
|
||||
|
||||
### Minor Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/cli",
|
||||
"description": "CLI for developing Backstage plugins and apps",
|
||||
"version": "0.17.0-next.1",
|
||||
"version": "0.17.0-next.2",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
@@ -125,7 +125,7 @@
|
||||
"@backstage/backend-common": "^0.13.2-next.1",
|
||||
"@backstage/config": "^1.0.0",
|
||||
"@backstage/core-app-api": "^1.0.1-next.0",
|
||||
"@backstage/core-components": "^0.9.3-next.0",
|
||||
"@backstage/core-components": "^0.9.3-next.1",
|
||||
"@backstage/core-plugin-api": "^1.0.0",
|
||||
"@backstage/dev-utils": "^1.0.1-next.0",
|
||||
"@backstage/test-utils": "^1.0.1-next.1",
|
||||
|
||||
@@ -1,5 +1,14 @@
|
||||
# @backstage/core-components
|
||||
|
||||
## 0.9.3-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 25b8e8d5b5: Add BackstageTab to overridableComponents so can override styles in a theme
|
||||
- a13604b8f7: Adding a name to the core-components Tab styles so can customise in the theme settings
|
||||
- 72f3dfd05a: Updated ProxiedSignInPageProps docs
|
||||
- 7741e47eae: `<Sidebar />` now accepts additional props `sidebarOptions` and `submenuOptions` to allow further customization
|
||||
|
||||
## 0.9.3-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/core-components",
|
||||
"description": "Core components used by Backstage plugins and apps",
|
||||
"version": "0.9.3-next.0",
|
||||
"version": "0.9.3-next.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public",
|
||||
@@ -79,7 +79,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@backstage/core-app-api": "^1.0.1-next.0",
|
||||
"@backstage/cli": "^0.17.0-next.1",
|
||||
"@backstage/cli": "^0.17.0-next.2",
|
||||
"@backstage/test-utils": "^1.0.1-next.1",
|
||||
"@testing-library/jest-dom": "^5.10.1",
|
||||
"@testing-library/react": "^12.1.3",
|
||||
|
||||
@@ -1,5 +1,11 @@
|
||||
# @backstage/create-app
|
||||
|
||||
## 0.4.25-next.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- e80cca164d: Tweaked `.eslintrc.js` files in the template to avoid having them apply during development. This change does not affect create apps.
|
||||
|
||||
## 0.4.25-next.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@backstage/create-app",
|
||||
"description": "A CLI that helps you create your own Backstage app",
|
||||
"version": "0.4.25-next.0",
|
||||
"version": "0.4.25-next.1",
|
||||
"private": false,
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
Reference in New Issue
Block a user