Merge branch 'master' of github.com:spotify/backstage into mob/catalog-in-gql

* 'master' of github.com:spotify/backstage:
  CHANGELOG: link to things
  CHANGELOG: Fixed and
  Create CHANGELOG.md
  fix(catalog-backend): properly deduplicate location logs
  Update adding-templates.md
This commit is contained in:
blam
2020-08-06 16:36:35 +02:00
5 changed files with 133 additions and 8 deletions
+23
View File
@@ -0,0 +1,23 @@
# Backstage Changelog
This is a best-effort changelog where we manually collect breaking changes. It is not an exhaustive list of all changes or even features added.
If you encounter issues while upgrading to a newer version, don't hesitate to reach out on [Discord](https://discord.gg/EBHEGzX) or [open an issue](https://github.com/spotify/backstage/issues/new/choose)!
## Next Release
> Collect changes for the next release below
### @backstage/catalog-backend
- Fixed an issue with duplicated location logs. Applying the database migrations from this fix will clear the existing migration logs. https://github.com/spotify/backstage/pull/1836
## v0.1.1-alpha.17
### @backstage/techdocs-backend
- The techdocs backend now requires more configuration to be supplied when creating the router. See [packages/backend/src/plugins/techdocs.ts](https://github.com/spotify/backstage/blob/0201fd9b4a52429519dd59e9184106ba69456deb/packages/backend/src/plugins/techdocs.ts#L42) for an example. https://github.com/spotify/backstage/pull/1736
### @backstage/cli
- The `create-app` command was moved out from the CLI to a standalone package. It's now invoked with `npx @backstage/create-app` instead. https://github.com/spotify/backstage/pull/1745
@@ -10,11 +10,11 @@ A simple `template.yaml` definition might look something like this:
apiVersion: backstage.io/v1alpha1
kind: Template
metadata:
# unique name per namespace for the template
# unique name per namespace for the template
name: react-ssr-template
# title of the template
# title of the template
title: React SSR Template
# a description of the template
# a description of the template
description: Next.js application skeleton for creating isomorphic web applications.
# some tags to display in the frontend
tags:
@@ -23,11 +23,11 @@ metadata:
spec:
# which templater key to use in the templaters builder
templater: cookiecutter
# what does this template create
# what does this template create
type: website
# if the template is not in the current directory where this definition is kept then specfiy
# if the template is not in the current directory where this definition is kept then specfiy
path: './template'
# the schema for the form which is displayed in the frontend.
# the schema for the form which is displayed in the frontend.
# should follow JSON schema for forms: https://jsonforms.io/
schema:
required:
@@ -0,0 +1,75 @@
/*
* Copyright 2020 Spotify AB
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// @ts-check
/**
* @param {import('knex')} knex
*/
exports.up = function up(knex) {
return knex.schema
.dropTable('location_update_log')
.createTable('location_update_log', table => {
table.bigIncrements('id').primary(); // instead of uuid, so we can MAX it
table.enum('status', ['success', 'fail']).notNullable();
table.dateTime('created_at').defaultTo(knex.fn.now()).notNullable();
table.string('message');
table
.uuid('location_id')
.references('id')
.inTable('locations')
.onUpdate('CASCADE')
.onDelete('CASCADE');
table.string('entity_name').nullable();
}).raw(`
DROP VIEW location_update_log_latest;
`).raw(`
CREATE VIEW location_update_log_latest AS
SELECT t1.* FROM location_update_log t1
JOIN
(
SELECT location_id, MAX(id) AS MAXID
FROM location_update_log
GROUP BY location_id
) t2
ON t1.location_id = t2.location_id
AND t1.id = t2.MAXID
GROUP BY t1.location_id, t1.id
ORDER BY created_at DESC;
`);
};
/**
* @param {import('knex')} knex
*/
exports.down = function down(knex) {
return knex.schema.raw(`
DROP VIEW location_update_log_latest;
`).raw(`
CREATE VIEW location_update_log_latest AS
SELECT t1.* FROM location_update_log t1
JOIN
(
SELECT location_id, MAX(created_at) AS MAXDATE
FROM location_update_log
GROUP BY location_id
) t2
ON t1.location_id = t2.location_id
AND t1.created_at = t2.MAXDATE
GROUP BY t1.location_id, t1.id
ORDER BY created_at DESC;
`);
};
@@ -39,4 +39,33 @@ describe('DatabaseLocationsCatalog', () => {
expect.objectContaining({ data: location }),
]);
});
it('does not return duplicates of rows because of logs', async () => {
const location1 = {
id: 'dd12620d-0436-422f-93bd-929aa0788123',
type: 'valid_type',
target: 'valid_target1',
};
const location2 = {
id: '1a89c479-1a33-4f27-8927-6090ba488c42',
type: 'valid_type',
target: 'valid_target2',
};
await expect(catalog.addLocation(location1)).resolves.toEqual(location1);
await expect(catalog.addLocation(location2)).resolves.toEqual(location2);
await expect(
catalog.logUpdateSuccess(location1.id),
).resolves.toBeUndefined();
await expect(
catalog.logUpdateSuccess(location1.id),
).resolves.toBeUndefined();
const locations = await catalog.locations();
expect(locations.length).toBe(2);
expect(locations).toEqual(
expect.arrayContaining([
expect.objectContaining({ data: location1 }),
expect.objectContaining({ data: location2 }),
]),
);
});
});
@@ -29,7 +29,6 @@ import {
} from '@backstage/catalog-model';
import Knex from 'knex';
import lodash from 'lodash';
import { v4 as uuidv4 } from 'uuid';
import type { Logger } from 'winston';
import { buildEntitySearch } from './search';
import type {
@@ -347,7 +346,6 @@ export class CommonDatabase implements Database {
return this.database<DatabaseLocationUpdateLogEvent>(
'location_update_log',
).insert({
id: uuidv4(),
status,
location_id: locationId,
entity_name: entityName,