@iebh/tera-fy 2.0.5 → 2.0.7
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 +57 -0
- package/api.md +585 -686
- package/dist/plugin.vue2.es2019.js +19 -48
- package/dist/terafy.es2019.js +3 -3
- package/dist/terafy.js +3 -3
- package/lib/projectFile.js +11 -1
- package/lib/syncro/entities.js +184 -0
- package/lib/syncro/keyed.js +295 -0
- package/lib/{syncro.js → syncro/syncro.js} +154 -206
- package/lib/terafy.client.js +4 -116
- package/lib/terafy.server.js +6 -77
- package/package.json +16 -15
- package/plugins/firebase.js +1 -1
- package/plugins/vue2.js +1 -141
- package/plugins/vue3.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.0.7](https://github.com/IEBH/TERA-fy/compare/v2.0.6...v2.0.7) (2025-02-26)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### chore
|
|
7
|
+
|
|
8
|
+
* Upstream NPM bump ([f599609](https://github.com/IEBH/TERA-fy/commit/f599609a50bd9540dbab8088054f23a94c8afd39))
|
|
9
|
+
|
|
10
|
+
### fix
|
|
11
|
+
|
|
12
|
+
* Corrected Syncro import path ([6f6a712](https://github.com/IEBH/TERA-fy/commit/6f6a712fb5ad49da328bd089a8bc0083079f1d7b))
|
|
13
|
+
|
|
14
|
+
### refactor
|
|
15
|
+
|
|
16
|
+
* Moved Syncro resources into a more logical location ([ba7e8a5](https://github.com/IEBH/TERA-fy/commit/ba7e8a578f228adaad29c07c641e2cb5563f57b6))
|
|
17
|
+
|
|
18
|
+
## [2.0.6](https://github.com/IEBH/TERA-fy/compare/v2.0.3...v2.0.6) (2025-02-26)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### chore
|
|
22
|
+
|
|
23
|
+
* Bump upstream NPMs to refactor away lodash ([b7b8f04](https://github.com/IEBH/TERA-fy/commit/b7b8f041c537e61a7a5f0aa92f372fc95e271dbd))
|
|
24
|
+
* Depreciate replaceProjectState() ([0e6193a](https://github.com/IEBH/TERA-fy/commit/0e6193aada48c4d1b0495ca8bd3a865dbd749544))
|
|
25
|
+
* Depreciate saveProjectState() ([591f8cd](https://github.com/IEBH/TERA-fy/commit/591f8cdd83b5964a5302aa7931679693a3e62762))
|
|
26
|
+
* Downgrade reflib to make compatible with Vue2/ES2019 ([7e16b67](https://github.com/IEBH/TERA-fy/commit/7e16b67b34137df1a89f92bdc04a075ed73386d6))
|
|
27
|
+
* NPM bump to fix issue with reflib importing a b0rked 3rd party dep ([cad0049](https://github.com/IEBH/TERA-fy/commit/cad00494d8a460b6a639a9c14fee8838053c8e0e))
|
|
28
|
+
* NPM bumps ([0d40612](https://github.com/IEBH/TERA-fy/commit/0d40612e2ffb0d40978c3f07f1ea865048bef0b7))
|
|
29
|
+
* Rebuild package-lock ([6a0e43c](https://github.com/IEBH/TERA-fy/commit/6a0e43cd2dbbd7af8b25ab331ab977e1646e4ab6))
|
|
30
|
+
|
|
31
|
+
### docs
|
|
32
|
+
|
|
33
|
+
* Minor inline doc corrections ([9dd5b1a](https://github.com/IEBH/TERA-fy/commit/9dd5b1a25b76340f7cb36b6d27e08656637b983e))
|
|
34
|
+
* Misc inline docs cleanup ([0faec5a](https://github.com/IEBH/TERA-fy/commit/0faec5a64eb98aa1553eb29e5fc9cc18685afdea))
|
|
35
|
+
|
|
36
|
+
### feat
|
|
37
|
+
|
|
38
|
+
* Added prototype SyncroKeyed class ([ecd6406](https://github.com/IEBH/TERA-fy/commit/ecd64061b672a012395b2f0a354b131d93fa7b0d))
|
|
39
|
+
* Move Syncro session tracking from Firebase -> Supabase + implement dirty tracking to prevent useless flushing ([758ca75](https://github.com/IEBH/TERA-fy/commit/758ca75129e97c71d4d7a787ef49ad076a031a30))
|
|
40
|
+
|
|
41
|
+
### fix
|
|
42
|
+
|
|
43
|
+
* Check activeFiles not null to prevent error when accessing .length on null ([717e0ab](https://github.com/IEBH/TERA-fy/commit/717e0ab4e55cd7f0b85e41431c02ea719601368b))
|
|
44
|
+
* Misc SyncroKeyed fixes - still not working with Vue but seems to function in JS Vanilla ([747cab2](https://github.com/IEBH/TERA-fy/commit/747cab2ef4a47c40f2b2e93ae7e0d62dee7414f7))
|
|
45
|
+
* More SyncroKeyed fixes ([79bd25c](https://github.com/IEBH/TERA-fy/commit/79bd25c3afc1f719a648887edb7049a5c7308e48))
|
|
46
|
+
* new setFirestoreState() usage ([2cdda0c](https://github.com/IEBH/TERA-fy/commit/2cdda0c3a9e567b25664e92c2a18e56f4f5b6850))
|
|
47
|
+
* Pass empty options in projectFile.setContents() to prevent error ([6e2fc8f](https://github.com/IEBH/TERA-fy/commit/6e2fc8f4e08bf75a783035ec402e42bb062c9205))
|
|
48
|
+
* Seperated original Supabase ID (UUID) into its own preserved ProjectFile field ([75fe3ca](https://github.com/IEBH/TERA-fy/commit/75fe3ca0063fe71d7042f3a2f48eebf9d41093b3))
|
|
49
|
+
|
|
50
|
+
### refactor
|
|
51
|
+
|
|
52
|
+
* Added throw when trying to save back libraries ([7df8e5d](https://github.com/IEBH/TERA-fy/commit/7df8e5d1af3a2b81ecb3d9cdfe6929169365ebae))
|
|
53
|
+
* Better logical flow when first populating document entity states ([70c9887](https://github.com/IEBH/TERA-fy/commit/70c98876660bbcadc74cddba956022a87bf559eb))
|
|
54
|
+
* Depreciate applyProjectStatePatch(), bindProjectState(), createProjectStatePatch(), subscribeProjectState() ([ecf53ab](https://github.com/IEBH/TERA-fy/commit/ecf53ab83f737eac016346662c14d12782408375))
|
|
55
|
+
* Make Syncro heartbeats a little less agressive ([5e748e6](https://github.com/IEBH/TERA-fy/commit/5e748e6c9c9ead7ff698a202dc80752d5af7b657))
|
|
56
|
+
* Minor tweaks to keep tera-fy happy ([d8bea73](https://github.com/IEBH/TERA-fy/commit/d8bea73c87ba124cb5ef1efd39389e614aa16205))
|
|
57
|
+
* Minor tweaks to keep tera-fy happy #2 ([a6db6e2](https://github.com/IEBH/TERA-fy/commit/a6db6e2e87adb45dcb14fa7dee8c7521a0ac8198)), closes [#2](https://github.com/IEBH/TERA-fy/issues/2)
|
|
58
|
+
* Seperated Syncro {get,set}FirebaseState() into their own methods ([135ca3b](https://github.com/IEBH/TERA-fy/commit/135ca3b139f2d85df739c9b810d5058765d9f2e9))
|
|
59
|
+
|
|
3
60
|
## [2.0.3](https://github.com/IEBH/TERA-fy/compare/v2.0.2...v2.0.3) (2025-02-19)
|
|
4
61
|
|
|
5
62
|
|