@balena/odata-parser 3.0.0 → 3.0.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.
- package/.github/workflows/flowzone.yml +10 -3
- package/.versionbot/CHANGELOG.yml +12 -1
- package/CHANGELOG.md +5 -0
- package/package.json +2 -2
|
@@ -3,12 +3,19 @@ name: Flowzone
|
|
|
3
3
|
on:
|
|
4
4
|
pull_request:
|
|
5
5
|
types: [opened, synchronize, closed]
|
|
6
|
-
branches:
|
|
7
|
-
|
|
8
|
-
|
|
6
|
+
branches: [main, master]
|
|
7
|
+
# allow external contributions to use secrets within trusted code
|
|
8
|
+
pull_request_target:
|
|
9
|
+
types: [opened, synchronize, closed]
|
|
10
|
+
branches: [main, master]
|
|
9
11
|
|
|
10
12
|
jobs:
|
|
11
13
|
flowzone:
|
|
12
14
|
name: Flowzone
|
|
13
15
|
uses: product-os/flowzone/.github/workflows/flowzone.yml@master
|
|
16
|
+
# prevent duplicate workflows and only allow one `pull_request` or `pull_request_target` for
|
|
17
|
+
# internal or external contributions respectively
|
|
18
|
+
if: |
|
|
19
|
+
(github.event.pull_request.head.repo.full_name == github.repository && github.event_name == 'pull_request') ||
|
|
20
|
+
(github.event.pull_request.head.repo.full_name != github.repository && github.event_name == 'pull_request_target')
|
|
14
21
|
secrets: inherit
|
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
- commits:
|
|
2
|
+
- subject: Allow running CI on external PRs
|
|
3
|
+
hash: 875af25a9e8ba9ade051f76f4500f5146db675a7
|
|
4
|
+
body: ""
|
|
5
|
+
footer:
|
|
6
|
+
Change-type: patch
|
|
7
|
+
change-type: patch
|
|
8
|
+
author: Pagan Gazzard
|
|
9
|
+
version: 3.0.1
|
|
10
|
+
title: ""
|
|
11
|
+
date: 2023-09-25T10:45:56.276Z
|
|
1
12
|
- commits:
|
|
2
13
|
- subject: Use optional chaining operator
|
|
3
14
|
hash: 1fb39ef2497b964af0f2cbc953a3f0843936fe02
|
|
@@ -15,7 +26,7 @@
|
|
|
15
26
|
author: Pagan Gazzard
|
|
16
27
|
version: 3.0.0
|
|
17
28
|
title: ""
|
|
18
|
-
date: 2023-04-
|
|
29
|
+
date: 2023-04-26T14:57:49.416Z
|
|
19
30
|
- commits:
|
|
20
31
|
- subject: Update to peggy 3 and make us of the repetition operator
|
|
21
32
|
hash: 3d091133ca54dfba71c2bc0d17e60780fb1bda22
|
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to this project will be documented in this file
|
|
|
4
4
|
automatically by Versionist. DO NOT EDIT THIS FILE MANUALLY!
|
|
5
5
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
|
6
6
|
|
|
7
|
+
# v3.0.1
|
|
8
|
+
## (2023-09-25)
|
|
9
|
+
|
|
10
|
+
* Allow running CI on external PRs [Pagan Gazzard]
|
|
11
|
+
|
|
7
12
|
# v3.0.0
|
|
8
13
|
## (2023-04-26)
|
|
9
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@balena/odata-parser",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.1",
|
|
4
4
|
"description": "An OData parser written in OMeta",
|
|
5
5
|
"main": "odata-parser.js",
|
|
6
6
|
"scripts": {
|
|
@@ -41,6 +41,6 @@
|
|
|
41
41
|
"npm": ">=8.1.0"
|
|
42
42
|
},
|
|
43
43
|
"versionist": {
|
|
44
|
-
"publishedAt": "2023-
|
|
44
|
+
"publishedAt": "2023-09-25T10:45:56.431Z"
|
|
45
45
|
}
|
|
46
46
|
}
|