diff --git a/.changeset/pre.json b/.changeset/pre.json
index f598c9f725..cdcad84ba8 100644
--- a/.changeset/pre.json
+++ b/.changeset/pre.json
@@ -144,52 +144,100 @@
"@backstage/plugin-user-settings": "0.4.3",
"@backstage/plugin-xcmetrics": "0.2.24",
"@backstage/plugin-catalog-backend-module-gerrit": "0.0.0",
- "@backstage/plugin-techdocs-module-addons-contrib": "0.0.0"
+ "@backstage/plugin-techdocs-module-addons-contrib": "0.0.0",
+ "@backstage/plugin-adr": "0.0.0",
+ "@backstage/plugin-adr-backend": "0.0.0",
+ "@backstage/plugin-adr-common": "0.0.0",
+ "@internal/plugin-todo-list": "1.0.0",
+ "@internal/plugin-todo-list-backend": "1.0.0",
+ "@internal/plugin-todo-list-common": "1.0.0",
+ "@backstage/plugin-techdocs-addons-test-utils": "0.0.0"
},
"changesets": [
+ "afraid-insects-do",
+ "beige-panthers-dream",
+ "brave-starfishes-try",
"breezy-days-prove",
+ "bright-panthers-guess",
+ "chatty-forks-bathe",
+ "clever-trains-greet",
+ "cool-mice-sit",
"cool-ties-share",
"curly-parrots-applaud",
+ "cyan-boxes-double",
"dirty-eagles-hunt",
+ "early-crabs-help",
+ "early-lemons-add",
"eighty-chicken-retire",
+ "empty-mugs-bow",
+ "empty-poems-lick",
"fair-kings-retire",
+ "fair-pigs-mate",
+ "funny-lamps-turn",
"fuzzy-seahorses-teach",
"giant-cheetahs-thank",
+ "grumpy-panthers-peel",
"hip-adults-collect",
+ "hip-monkeys-hide",
"honest-kids-live",
"hot-peaches-give",
+ "hungry-goats-mate",
+ "kind-cats-clap",
"lazy-zebras-pay",
+ "loud-peaches-warn",
+ "lovely-houses-argue",
"mean-flowers-change",
+ "mean-owls-share",
+ "mean-seas-burn",
+ "metal-hairs-build",
"metal-pants-fly",
"moody-laws-boil",
"moody-suns-smell",
"nasty-humans-give",
+ "nasty-paws-move",
"new-beds-argue",
+ "nine-actors-fly",
+ "nine-geese-rest",
+ "odd-apples-smash",
"old-bikes-study",
+ "orange-elephants-laugh",
"perfect-penguins-rescue",
"pink-mayflies-rhyme",
+ "polite-planets-learn",
+ "renovate-05696d1",
+ "renovate-5970cc2",
+ "renovate-b063c4b",
"renovate-bf43c44",
+ "renovate-ca619fc",
"search-dry-wolves-join",
"search-heavy-llamas-worry",
"seven-deers-rule",
"shiny-students-approve",
+ "short-chicken-act",
"short-dodos-sparkle",
"short-flies-collect",
"silver-readers-deliver",
+ "six-buckets-tap",
"sixty-llamas-change",
+ "smart-ghosts-search",
"spotty-plums-rule",
"stale-pigs-reply",
"strong-mangos-sell",
"swift-bugs-share",
"swift-parrots-hammer",
+ "tall-parents-deny",
"tasty-drinks-teach",
"techdocs-changeset-not-found",
+ "techdocs-five-hundred-ml",
+ "techdocs-low-calorie-drink",
"techdocs-nice-boats-wonder",
"techdocs-quick-owls-smile",
"techdocs-touch-screen-wipes",
+ "techdocs-vitamin-well-reload",
"thick-bees-brush",
"tough-forks-carry",
"violet-steaks-knock",
+ "wicked-vans-press",
"wild-pigs-work",
"wise-emus-wait"
]
diff --git a/docs/releases/v1.2.0-next.1-changelog.md b/docs/releases/v1.2.0-next.1-changelog.md
new file mode 100644
index 0000000000..d7b843be48
--- /dev/null
+++ b/docs/releases/v1.2.0-next.1-changelog.md
@@ -0,0 +1,956 @@
+# Release v1.2.0-next.1
+
+## @backstage/test-utils@1.1.0-next.1
+
+### Minor Changes
+
+- 1da8b248c2: Added the options parameter to `renderWithEffects`, which if forwarded to the `render` function from `@testling-library/react`. Initially only the `wrapper` option is supported.
+- 1da8b248c2: Added `createTestAppWrapper`, which returns a component that can be used as the `wrapper` option for `render` or `renderWithEffects`.
+
+### Patch Changes
+
+- 1da8b248c2: Fixed `renderInTestApp` so that it is able to re-render the result without removing the app wrapping.
+- Updated dependencies
+ - @backstage/core-plugin-api@1.0.2-next.0
+ - @backstage/core-app-api@1.0.2-next.0
+ - @backstage/plugin-permission-react@0.4.1-next.0
+
+## @backstage/plugin-adr@0.1.0-next.0
+
+### Minor Changes
+
+- e73075a301: Implement ADR plugin
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/core-components@0.9.4-next.0
+ - @backstage/plugin-adr-common@0.1.0-next.0
+ - @backstage/core-plugin-api@1.0.2-next.0
+ - @backstage/plugin-catalog-react@1.1.0-next.1
+ - @backstage/integration-react@1.1.0-next.1
+
+## @backstage/plugin-adr-backend@0.1.0-next.0
+
+### Minor Changes
+
+- e73075a301: Implement ADR plugin
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/plugin-adr-common@0.1.0-next.0
+ - @backstage/backend-common@0.13.3-next.1
+
+## @backstage/plugin-adr-common@0.1.0-next.0
+
+### Minor Changes
+
+- e73075a301: Implement ADR plugin
+
+## @backstage/plugin-search-react@0.2.0-next.1
+
+### Minor Changes
+
+- bdbe620797: **BREAKING**: `SearchContextProviderForStorybook` and `SearchApiProviderForStorybook` has been deleted. New mock implementation of the `SearchApi` introduced. If you need to mock the api we recommend you to do the following:
+
+ ```tsx
+ import {
+ searchApiRef,
+ MockSearchApi,
+ SearchContextProvider,
+ } from '@backstage/plugin-search-react';
+ import { TestApiProvider } from '@backstage/test-utils';
+
+
+
+
+
+ ;
+ ```
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/core-plugin-api@1.0.2-next.0
+
+## @backstage/plugin-tech-insights-backend@0.4.0-next.1
+
+### Minor Changes
+
+- 3333e20b27: **BREAKING**: The `buildTechInsightsContext` function now takes an additional
+ field in its options argument: `tokenManager`. This is an instance of
+ `TokenManager`, which can be found in your backend initialization code's
+ `env`.
+
+ ```diff
+ const builder = buildTechInsightsContext({
+ logger: env.logger,
+ config: env.config,
+ database: env.database,
+ discovery: env.discovery,
+ scheduler: env.scheduler,
+ + tokenManager: env.tokenManager,
+ factRetrievers: [ /* ... */ ],
+ });
+ ```
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/backend-common@0.13.3-next.1
+ - @backstage/plugin-tech-insights-node@0.3.0-next.1
+
+## @backstage/plugin-tech-insights-node@0.3.0-next.1
+
+### Minor Changes
+
+- 58e2c46151: **BREAKING**: The `FactRetrieverContext` type now contains an additional
+ field: `tokenManager`.
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/backend-common@0.13.3-next.1
+
+## @backstage/plugin-techdocs-addons-test-utils@0.1.0-next.0
+
+### Minor Changes
+
+- 52fddad92d: Introducing a package with utilities to help test TechDocs Addons.
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/core-components@0.9.4-next.0
+ - @backstage/test-utils@1.1.0-next.1
+ - @backstage/core-plugin-api@1.0.2-next.0
+ - @backstage/plugin-catalog@1.2.0-next.1
+ - @backstage/plugin-search-react@0.2.0-next.1
+ - @backstage/plugin-techdocs-react@0.1.1-next.1
+ - @backstage/plugin-techdocs@1.1.1-next.1
+ - @backstage/integration-react@1.1.0-next.1
+ - @backstage/core-app-api@1.0.2-next.0
+
+## @backstage/app-defaults@1.0.2-next.0
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/core-components@0.9.4-next.0
+ - @backstage/core-plugin-api@1.0.2-next.0
+ - @backstage/core-app-api@1.0.2-next.0
+ - @backstage/plugin-permission-react@0.4.1-next.0
+
+## @backstage/backend-common@0.13.3-next.1
+
+### Patch Changes
+
+- 28b0e4ddef: Update types to match the new version of `@keyv/redis`
+
+## @backstage/cli@0.17.1-next.1
+
+### Patch Changes
+
+- 52fb9920ac: Fixed coverage configuration when using `BACKSTAGE_NEXT_TESTS`.
+- 6cd1f50ae1: Extended lint rule to prevents imports of stories or tests from production code.
+- 4d8736eded: Changed Rollup configuration for TypeScript definition plugin to ignore `css`,
+ `scss`, `sass`, `svg`, `eot`, `woff`, `woff2` and `ttf` files.
+- 2737777e02: Added the ability to help a user get started with a new organization
+
+## @backstage/core-app-api@1.0.2-next.0
+
+### Patch Changes
+
+- Updated dependencies
+ - @backstage/core-plugin-api@1.0.2-next.0
+
+## @backstage/core-components@0.9.4-next.0
+
+### Patch Changes
+
+- ac19f82936: Added ARIA landmark to Page component and added ARIA landmark