@cocreate/text 1.20.1 → 1.20.3

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.
@@ -8,7 +8,11 @@ jobs:
8
8
  runs-on: ubuntu-latest
9
9
  steps:
10
10
  - name: Checkout
11
- uses: actions/checkout@v2
11
+ uses: actions/checkout@v3
12
+ - name: setup nodejs
13
+ uses: actions/setup-node@v3
14
+ with:
15
+ node-version: 16
12
16
  - name: Jaid/action-sync-node-meta
13
17
  uses: jaid/action-sync-node-meta@v1.4.0
14
18
  with:
@@ -19,6 +23,10 @@ jobs:
19
23
  steps:
20
24
  - name: Checkout
21
25
  uses: actions/checkout@v3
26
+ - name: setup nodejs
27
+ uses: actions/setup-node@v3
28
+ with:
29
+ node-version: 16
22
30
  - name: Semantic Release
23
31
  uses: cycjimmy/semantic-release-action@v3
24
32
  id: semantic
@@ -41,11 +49,11 @@ jobs:
41
49
  VERSION: "${{ needs.release.outputs.new_release_version }}"
42
50
  steps:
43
51
  - name: Checkout
44
- uses: actions/checkout@v2
52
+ uses: actions/checkout@v3
45
53
  - name: setup nodejs
46
- uses: actions/setup-node@v2
54
+ uses: actions/setup-node@v3
47
55
  with:
48
- node-version: 14.15.4
56
+ node-version: 16
49
57
  - name: yarn install
50
58
  run: >
51
59
  echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
@@ -77,7 +85,11 @@ jobs:
77
85
  runs-on: ubuntu-latest
78
86
  steps:
79
87
  - name: Checkout
80
- uses: actions/checkout@v2
88
+ uses: actions/checkout@v3
89
+ - name: setup nodejs
90
+ uses: actions/setup-node@v3
91
+ with:
92
+ node-version: 16
81
93
 
82
94
  - name: update documentation
83
95
  uses: CoCreate-app/CoCreate-docs@master
@@ -18,11 +18,11 @@ jobs:
18
18
 
19
19
  steps:
20
20
  - name: Checkout
21
- uses: actions/checkout@v2
21
+ uses: actions/checkout@v3
22
22
  - name: setup nodejs
23
- uses: actions/setup-node@v2
23
+ uses: actions/setup-node@v3
24
24
  with:
25
- node-version: 14.15.4
25
+ node-version: 16
26
26
  - name: yarn install
27
27
  run: >
28
28
  echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## [1.20.3](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.2...v1.20.3) (2023-04-24)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated worrkflows to v3 and node version 16 ([3cee5b0](https://github.com/CoCreate-app/CoCreate-text/commit/3cee5b0f9969bb3453080933e2beb98e1bb2b0c0))
7
+ * workflow node version updated 16 ([3372b44](https://github.com/CoCreate-app/CoCreate-text/commit/3372b4458d0789c2bfbcf1483b678618ab6db1bd))
8
+
9
+ ## [1.20.2](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.1...v1.20.2) (2023-04-24)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * bump [@cocreate](https://github.com/cocreate) dependencies ([000164c](https://github.com/CoCreate-app/CoCreate-text/commit/000164c1cdc15bab3086b91d1369cd322dc1fde4))
15
+
1
16
  ## [1.20.1](https://github.com/CoCreate-app/CoCreate-text/compare/v1.20.0...v1.20.1) (2023-04-24)
2
17
 
3
18
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cocreate/text",
3
- "version": "1.20.1",
3
+ "version": "1.20.3",
4
4
  "description": "A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API.",
5
5
  "keywords": [
6
6
  "text",
@@ -59,15 +59,15 @@
59
59
  "webpack-log": "^3.0.1"
60
60
  },
61
61
  "dependencies": {
62
- "@cocreate/actions": "^1.6.5",
63
- "@cocreate/crdt": "^1.17.5",
64
- "@cocreate/crud-client": "^1.19.5",
65
- "@cocreate/cursors": "^1.15.5",
66
- "@cocreate/docs": "^1.6.5",
67
- "@cocreate/hosting": "^1.8.5",
68
- "@cocreate/observer": "^1.6.5",
69
- "@cocreate/selection": "^1.5.5",
70
- "@cocreate/utils": "^1.19.5",
71
- "@cocreate/uuid": "^1.3.5"
62
+ "@cocreate/actions": "^1.8.2",
63
+ "@cocreate/crdt": "^1.18.2",
64
+ "@cocreate/crud-client": "^1.19.9",
65
+ "@cocreate/cursors": "^1.16.2",
66
+ "@cocreate/docs": "^1.7.1",
67
+ "@cocreate/hosting": "^1.9.2",
68
+ "@cocreate/observer": "^1.7.1",
69
+ "@cocreate/selection": "^1.6.1",
70
+ "@cocreate/utils": "^1.20.1",
71
+ "@cocreate/uuid": "^1.4.1"
72
72
  }
73
73
  }