@cocreate/api 1.22.3 → 1.22.5
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/automated.yml +5 -6
- package/CHANGELOG.md +14 -0
- package/package.json +7 -8
|
@@ -22,13 +22,13 @@ jobs:
|
|
|
22
22
|
runs-on: ubuntu-latest
|
|
23
23
|
steps:
|
|
24
24
|
- name: Checkout
|
|
25
|
-
uses: actions/checkout@
|
|
25
|
+
uses: actions/checkout@v4
|
|
26
26
|
- name: Setup Node.js
|
|
27
|
-
uses: actions/setup-node@
|
|
27
|
+
uses: actions/setup-node@v4
|
|
28
28
|
with:
|
|
29
|
-
node-version:
|
|
29
|
+
node-version: 22 # Required for the latest semantic-release plugins
|
|
30
30
|
- name: Semantic Release
|
|
31
|
-
uses: cycjimmy/semantic-release-action@
|
|
31
|
+
uses: cycjimmy/semantic-release-action@v4 # Update to v4 for better Node 20+ support
|
|
32
32
|
id: semantic
|
|
33
33
|
with:
|
|
34
34
|
extra_plugins: |
|
|
@@ -36,9 +36,8 @@ jobs:
|
|
|
36
36
|
@semantic-release/git
|
|
37
37
|
@semantic-release/github
|
|
38
38
|
env:
|
|
39
|
-
GITHUB_TOKEN: "${{ secrets.
|
|
39
|
+
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" # Use the built-in token if possible
|
|
40
40
|
NPM_TOKEN: "${{ secrets.NPM_TOKEN }}"
|
|
41
41
|
outputs:
|
|
42
42
|
new_release_published: "${{ steps.semantic.outputs.new_release_published }}"
|
|
43
43
|
new_release_version: "${{ steps.semantic.outputs.new_release_version }}"
|
|
44
|
-
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.22.5](https://github.com/CoCreate-app/CoCreate-api/compare/v1.22.4...v1.22.5) (2025-12-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update worklow ([45cb3bc](https://github.com/CoCreate-app/CoCreate-api/commit/45cb3bc8b3aa8328a7dbce98a2b908eb2ba14a2e))
|
|
7
|
+
|
|
8
|
+
## [1.22.4](https://github.com/CoCreate-app/CoCreate-api/compare/v1.22.3...v1.22.4) (2025-05-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* update [@cocreate](https://github.com/cocreate) dependencies ([e2a9d06](https://github.com/CoCreate-app/CoCreate-api/commit/e2a9d0684c50073d76823052062aae8375e70433))
|
|
14
|
+
|
|
1
15
|
## [1.22.3](https://github.com/CoCreate-app/CoCreate-api/compare/v1.22.2...v1.22.3) (2025-04-30)
|
|
2
16
|
|
|
3
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cocreate/api",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.5",
|
|
4
4
|
"description": "A simple api helper component in vanilla javascript used by JavaScript developers to create thirdparty api intergrations. CoCreate-api includes the client component and server side for api processing. Thirdparty apis can be accessible using HTML5 attributes and/or JavaScript API. ",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"thirdparty-api-intergration",
|
|
@@ -13,7 +13,6 @@
|
|
|
13
13
|
"cocreate-framework",
|
|
14
14
|
"no-code",
|
|
15
15
|
"low-code",
|
|
16
|
-
"collaborative-framework",
|
|
17
16
|
"realtime",
|
|
18
17
|
"realtime-framework",
|
|
19
18
|
"collaboration",
|
|
@@ -55,11 +54,11 @@
|
|
|
55
54
|
"webpack-log": "^3.0.1"
|
|
56
55
|
},
|
|
57
56
|
"dependencies": {
|
|
58
|
-
"@cocreate/actions": "^1.21.
|
|
59
|
-
"@cocreate/crud-client": "^1.34.
|
|
60
|
-
"@cocreate/element-prototype": "^1.29.
|
|
61
|
-
"@cocreate/render": "^1.45.
|
|
62
|
-
"@cocreate/socket-client": "^1.40.
|
|
63
|
-
"@cocreate/utils": "^1.
|
|
57
|
+
"@cocreate/actions": "^1.21.1",
|
|
58
|
+
"@cocreate/crud-client": "^1.34.2",
|
|
59
|
+
"@cocreate/element-prototype": "^1.29.1",
|
|
60
|
+
"@cocreate/render": "^1.45.2",
|
|
61
|
+
"@cocreate/socket-client": "^1.40.2",
|
|
62
|
+
"@cocreate/utils": "^1.39.0"
|
|
64
63
|
}
|
|
65
64
|
}
|