Files
backstage/packages/config/CHANGELOG.md
T
github-actions[bot] d397eb470f Version Packages
2021-05-06 08:25:18 +00:00

689 B

@backstage/config

0.1.5

Patch Changes

  • d8b81fd28: Bump json-schema dependency from 0.2.5 to 0.3.0.

0.1.4

Patch Changes

  • 0434853a5: Reformulate the json types to break type recursion

0.1.3

Patch Changes

  • a1f5e6545: Adds an optional type to config.get & config.getOptional. This avoids the need for casting. For example:

    const config = useApi(configApiRef);
    
    const myConfig = config.get<SomeTypeDefinition>('myPlugin.complexConfig');
    // vs
    const myConfig config.get('myPlugin.complexConfig') as SomeTypeDefinition;
    

0.1.2

Patch Changes