Files
backstage/plugins/search-backend-module-pg/CHANGELOG.md
T
github-actions[bot] b2f4e97add Version Packages (next)
2022-12-13 16:56:03 +00:00

14 KiB

@backstage/plugin-search-backend-module-pg

0.4.3-next.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.17.0-next.3
    • @backstage/config@1.0.5-next.1
    • @backstage/plugin-search-backend-node@1.1.0-next.3
    • @backstage/plugin-search-common@1.2.0-next.3

0.4.3-next.2

Patch Changes

  • c507aee8a2: Ensured typescript type checks in migration files.
  • Updated dependencies
    • @backstage/plugin-search-backend-node@1.1.0-next.2
    • @backstage/backend-common@0.17.0-next.2
    • @backstage/plugin-search-common@1.2.0-next.2
    • @backstage/config@1.0.5-next.1

0.4.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.17.0-next.1
    • @backstage/plugin-search-backend-node@1.0.5-next.1
    • @backstage/config@1.0.5-next.1
    • @backstage/plugin-search-common@1.1.2-next.1

0.4.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-search-backend-node@1.0.5-next.0
    • @backstage/backend-common@0.16.1-next.0
    • @backstage/config@1.0.5-next.0
    • @backstage/plugin-search-common@1.1.2-next.0

0.4.2

Patch Changes

  • Updated dependencies

0.4.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.16.0-next.1
    • @backstage/plugin-search-backend-node@1.0.4-next.1
    • @backstage/config@1.0.4-next.0
    • @backstage/plugin-search-common@1.1.1-next.0

0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.16.0-next.0
    • @backstage/plugin-search-backend-node@1.0.4-next.0
    • @backstage/config@1.0.4-next.0
    • @backstage/plugin-search-common@1.1.1-next.0

0.4.1

Patch Changes

  • a799972bb1: The search engine has been updated to take advantage of the pageLimit property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page.
  • Updated dependencies

0.4.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.15.2-next.2
    • @backstage/plugin-search-backend-node@1.0.3-next.2
    • @backstage/plugin-search-common@1.1.0-next.2
    • @backstage/config@1.0.3-next.2

0.4.1-next.1

Patch Changes

  • a799972bb1: The search engine has been updated to take advantage of the pageLimit property on search queries. If none is provided, the search engine will continue to use its default value of 25 results per page.
  • Updated dependencies
    • @backstage/backend-common@0.15.2-next.1
    • @backstage/plugin-search-common@1.1.0-next.1
    • @backstage/plugin-search-backend-node@1.0.3-next.1
    • @backstage/config@1.0.3-next.1

0.4.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.15.2-next.0
    • @backstage/config@1.0.3-next.0
    • @backstage/plugin-search-backend-node@1.0.3-next.0
    • @backstage/plugin-search-common@1.0.2-next.0

0.4.0

Minor Changes

  • 8872cc735d: Fixed a bug in search-backend-module-pg where it ignores the skip migration database options when using the database.

    To use this new implementation you need to create the instance of DatabaseDocumentStore using the PluginDatabaseManager instead of Knex;

    import { DatabaseManager, getRootLogger, loadBackendConfig } from '@backstage/backend-common';
    import { DatabaseDocumentStore } from '@backstage/plugin-search-backend-module-pg';
    
    const config = await loadBackendConfig({ argv: process.argv, logger: getRootLogger() });
    const databaseManager = DatabaseManager.fromConfig(config, { migrations: { skip: true } });
    const databaseDocumentStore = await DatabaseDocumentStore.create(databaseManager);
    

Patch Changes

  • d669d89206: Minor API signatures cleanup
  • Updated dependencies

0.4.0-next.2

Patch Changes

0.4.0-next.1

Patch Changes

0.4.0-next.0

Minor Changes

  • 8872cc735d: Fixed a bug in search-backend-module-pg where it ignores the skip migration database options when using the database.

    To use this new implementation you need to create the instance of DatabaseDocumentStore using the PluginDatabaseManager instead of Knex;

    import { DatabaseManager, getRootLogger, loadBackendConfig } from '@backstage/backend-common';
    import { DatabaseDocumentStore } from '@backstage/plugin-search-backend-module-pg';
    
    const config = await loadBackendConfig({ argv: process.argv, logger: getRootLogger() });
    const databaseManager = DatabaseManager.fromConfig(config, { migrations: { skip: true } });
    const databaseDocumentStore = await DatabaseDocumentStore.create(databaseManager);
    

Patch Changes

  • Updated dependencies

0.3.6

Patch Changes

0.3.6-next.0

Patch Changes

0.3.5

Patch Changes

  • 423e3d8e95: DEPRECATED: PgSearchEngine static from has been deprecated and will be removed in a future release. Use static fromConfig method to instantiate.

    Added support for highlighting matched terms in search result data

  • 679b32172e: Updated dependency knex to ^2.0.0.

  • 886e99b8e7: Now imports SearchEngine interface from @backstage/plugin-search-common instead of @backstage/plugin-search-backend-node

  • Updated dependencies

0.3.5-next.2

Patch Changes

  • 423e3d8e95: DEPRECATED: PgSearchEngine static from has been deprecated and will be removed in a future release. Use static fromConfig method to instantiate.

    Added support for highlighting matched terms in search result data

  • 679b32172e: Updated dependency knex to ^2.0.0.

  • Updated dependencies

0.3.5-next.1

Patch Changes

  • Updated dependencies

0.3.5-next.0

Patch Changes

0.3.4

Patch Changes

  • 915700f64f: The provided search engine now adds a pagination-aware rank value to all results.
  • Updated dependencies

0.3.4-next.2

Patch Changes

  • Updated dependencies

0.3.4-next.1

Patch Changes

  • Updated dependencies

0.3.4-next.0

Patch Changes

0.3.3

Patch Changes

  • 71d3432710: Search Engines will now index documents in batches of 1000 instead of 100 (under the hood). This may result in your Backstage backend consuming slightly more memory during index runs, but should dramatically improve indexing performance for large document sets.
  • Updated dependencies

0.3.3-next.1

Patch Changes

  • 71d3432710: Search Engines will now index documents in batches of 1000 instead of 100 (under the hood). This may result in your Backstage backend consuming slightly more memory during index runs, but should dramatically improve indexing performance for large document sets.
  • Updated dependencies

0.3.3-next.0

Patch Changes

0.3.2

Patch Changes

  • 62ee65422c: Use new IndexableResultSet type as return type of query method in SearchEngine implementation.
  • Updated dependencies

0.3.2-next.1

Patch Changes

0.3.2-next.0

Patch Changes

  • 62ee65422c: Use new IndexableResultSet type as return type of query method in SearchEngine implementation.
  • Updated dependencies

0.3.1

Patch Changes

  • 3e54f6c436: Use @backstage/plugin-search-common package instead of @backstage/search-common.
  • Updated dependencies

0.3.1-next.0

Patch Changes

  • 3e54f6c436: Use @backstage/plugin-search-common package instead of @backstage/search-common.
  • Updated dependencies

0.3.0

Minor Changes

  • 022507c860: BREAKING

    The PgSearchEngine implements the new stream-based indexing process expected by the latest @backstage/plugin-search-backend-node.

    When updating to this version, you must also update to the latest version of @backstage/plugin-search-backend-node. Check this upgrade guide for further details.

Patch Changes

0.2.9

Patch Changes

0.2.8

Patch Changes

  • Fix for the previous release with missing type declarations.
  • Updated dependencies

0.2.7

Patch Changes

0.2.6

Patch Changes

0.2.6-next.0

Patch Changes

0.2.5

Patch Changes

0.2.5-next.0

Patch Changes

0.2.4

Patch Changes

0.2.4-next.0

Patch Changes

0.2.3

Patch Changes

0.2.2

Patch Changes

  • dcd1a0c3f4: Minor improvement to the API reports, by not unpacking arguments directly
  • Updated dependencies
    • @backstage/backend-common@0.9.13

0.2.1

Patch Changes

  • febddedcb2: Bump lodash to remediate SNYK-JS-LODASH-590103 security vulnerability
  • Updated dependencies
    • @backstage/backend-common@0.9.4

0.2.0

Minor Changes

  • a13f21cdc: Implement optional pageCursor based paging in search.

    To use paging in your app, add a <SearchResultPager /> to your SearchPage.tsx.

Patch Changes

  • Updated dependencies
    • @backstage/search-common@0.2.0
    • @backstage/plugin-search-backend-node@0.4.2
    • @backstage/backend-common@0.9.1

0.1.3

Patch Changes

  • 80c562039: Sanitize special characters before building search query for postgres
  • Updated dependencies
    • @backstage/backend-common@0.9.0

0.1.2

Patch Changes

  • ee99798da: Correct version requirements on postgres from 11 to 12. Postgres 12 is required due the use of generated columns.
  • Updated dependencies
    • @backstage/backend-common@0.8.10

0.1.1

Patch Changes