@backstage/backend-app-api 0.4.0 → 0.4.1-next.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of @backstage/backend-app-api might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.4.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 482dae5de1c: Updated link to docs.
8
+ - 915e46622cf: Add support for `NotImplementedError`, properly returning 501 as status code.
9
+ - Updated dependencies
10
+ - @backstage/plugin-permission-node@0.7.6-next.1
11
+ - @backstage/errors@1.1.5-next.0
12
+ - @backstage/backend-common@0.18.3-next.1
13
+ - @backstage/config-loader@1.1.9-next.0
14
+ - @backstage/plugin-auth-node@0.2.12-next.1
15
+ - @backstage/backend-plugin-api@0.4.1-next.1
16
+ - @backstage/backend-tasks@0.4.4-next.1
17
+ - @backstage/cli-common@0.1.12-next.0
18
+ - @backstage/config@1.0.7-next.0
19
+ - @backstage/types@1.0.2
20
+
21
+ ## 0.4.1-next.0
22
+
23
+ ### Patch Changes
24
+
25
+ - 928a12a9b3: Internal refactor of `/alpha` exports.
26
+ - Updated dependencies
27
+ - @backstage/backend-tasks@0.4.4-next.0
28
+ - @backstage/backend-plugin-api@0.4.1-next.0
29
+ - @backstage/backend-common@0.18.3-next.0
30
+ - @backstage/cli-common@0.1.11
31
+ - @backstage/config@1.0.6
32
+ - @backstage/config-loader@1.1.8
33
+ - @backstage/errors@1.1.4
34
+ - @backstage/types@1.0.2
35
+ - @backstage/plugin-auth-node@0.2.12-next.0
36
+ - @backstage/plugin-permission-node@0.7.6-next.0
37
+
3
38
  ## 0.4.0
4
39
 
5
40
  ### Minor Changes
package/README.md CHANGED
@@ -16,5 +16,5 @@ yarn add --cwd packages/backend @backstage/backend-app-api
16
16
  ## Documentation
17
17
 
18
18
  - [Backstage Readme](https://github.com/backstage/backstage/blob/master/README.md)
19
- - [Backstage Documentation](https://github.com/backstage/backstage/blob/master/docs/README.md)
19
+ - [Backstage Documentation](https://backstage.io/docs)
20
20
  - [Backstage Backend System](https://backstage.io/docs/backend-system/)
package/dist/index.cjs.js CHANGED
@@ -747,6 +747,8 @@ function getStatusCode(error) {
747
747
  return 404;
748
748
  case errors.ConflictError.name:
749
749
  return 409;
750
+ case errors.NotImplementedError.name:
751
+ return 501;
750
752
  }
751
753
  return 500;
752
754
  }