@gitkraken/provider-apis 0.25.8 → 0.25.10

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.25.10
4
+
5
+ - added customizable PR bucket ordering (groupPullRequestsIntoBuckets)
6
+
7
+ - fixed repo graphQLId normalization (GitHub)
8
+
9
+ ## 0.25.9
10
+
11
+ - fixed GraphQL errors (GitHub)
12
+
3
13
  ## 0.25.8
4
14
 
5
15
  - added `getReposForOrg` (GitHub)
@@ -8,6 +18,7 @@
8
18
  - fix null dereference error that sometimes happens when fetching issues (GitHub)
9
19
 
10
20
  This version of the package introduces code-splitting. There are three new entry points that you can import code from:
21
+
11
22
  ```
12
23
  // the main entry point exports everything in this package. this results in the largest bundle size when imported
13
24
  import { ... } from '@gitkraken/provider-apis';
@@ -26,12 +37,12 @@ import { ... } from '@gitkraken/provider-apis/providers';
26
37
  ```
27
38
 
28
39
  Table of bundle sizes for each entry point for v0.25.8:
29
- |Entry point |Parsed size|Gzipped size|
40
+ |Entry point |Parsed size|Gzipped size|
30
41
  |--------------------------------------------|-----------|------------|
31
- |@gitkraken/provider-apis |160 KB |36 KB |
32
- |@gitkraken/provider-apis/entity-identifiers |8.97 KB |1.42 KB |
33
- |@gitkraken/provider-apis/provider-utils |34 KB |9.21 KB |
34
- |@gitkraken/provider-apis/providers |142 KB |32 KB |
42
+ |@gitkraken/provider-apis |160 KB |36 KB |
43
+ |@gitkraken/provider-apis/entity-identifiers |8.97 KB |1.42 KB |
44
+ |@gitkraken/provider-apis/provider-utils |34 KB |9.21 KB |
45
+ |@gitkraken/provider-apis/providers |142 KB |32 KB |
35
46
 
36
47
  ## 0.25.7
37
48
 
package/dist/index.d.ts CHANGED
@@ -28,6 +28,7 @@ export * from './types/exportedTypes/issueProvider';
28
28
  export * from './types/exportedTypes/jira';
29
29
  export * from './types/exportedTypes/trello';
30
30
  export * from './types/exportedTypes/types';
31
+ export * from './providers/errors';
31
32
  declare const Utils: {
32
33
  azureDevOps: typeof AzureDevopsUtils;
33
34
  bitbucket: typeof BitbucketUtils;