@xwiki/cristal-wiki-config-default 0.24.0 → 0.25.0

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.
@@ -1,6 +1,6 @@
1
- import { CristalApp, WikiConfig } from '@xwiki/cristal-api';
2
- import { Configurations } from '@xwiki/cristal-configuration-api';
3
1
  import { WikiConfigProxy } from '@xwiki/cristal-wiki-config-api';
2
+ import { CristalApp, WikiConfig } from '@xwiki/platform-api';
3
+ import { Configurations } from '@xwiki/platform-configuration-api';
4
4
  import { Ref } from 'vue';
5
5
  /**
6
6
  * Default implementation for {@link WikiConfigProxy}.
@@ -1 +1 @@
1
- {"version":3,"file":"index.es.js","sources":["../src/defaultWikiConfigProxy.ts","../src/index.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { inject, injectable } from \"inversify\";\nimport { shallowRef, triggerRef } from \"vue\";\nimport type { CristalApp, WikiConfig } from \"@xwiki/cristal-api\";\nimport type { Configurations } from \"@xwiki/cristal-configuration-api\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\nimport type { Ref } from \"vue\";\n\n/**\n * Default implementation for {@link WikiConfigProxy}.\n * @since 0.18\n * @beta\n */\n@injectable()\nexport class DefaultWikiConfigProxy implements WikiConfigProxy {\n private configurationsRef: Ref<Map<string, WikiConfig>>;\n\n constructor(@inject(\"CristalApp\") private readonly cristalApp: CristalApp) {\n this.configurationsRef = shallowRef(\n this.cristalApp.getAvailableConfigurations(),\n );\n }\n\n getAvailableConfigurations(): Ref<Map<string, WikiConfig>> {\n return this.configurationsRef;\n }\n\n setAvailableConfigurations(config: Configurations): void {\n this.cristalApp.setAvailableConfigurations(config);\n triggerRef(this.configurationsRef);\n }\n\n deleteAvailableConfiguration(configName: string): void {\n this.cristalApp.deleteAvailableConfiguration(configName);\n triggerRef(this.configurationsRef);\n }\n}\n","/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { DefaultWikiConfigProxy } from \"./defaultWikiConfigProxy\";\nimport { Container } from \"inversify\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<WikiConfigProxy>(\"WikiConfigProxy\")\n .to(DefaultWikiConfigProxy)\n .inSingletonScope();\n }\n}\n"],"names":["DefaultWikiConfigProxy","cristalApp","shallowRef","config","triggerRef","configName","__decorateClass","injectable","__decorateParam","ComponentInit","container"],"mappings":";;;;;;;AAiCO,IAAMA,IAAN,MAAwD;AAAA,EAG7D,YAAmDC,GAAwB;AAAxB,SAAA,aAAAA,GACjD,KAAK,oBAAoBC;AAAA,MACvB,KAAK,WAAW,2BAAA;AAAA,IAA2B;AAAA,EAE/C;AAAA,EANQ;AAAA,EAQR,6BAA2D;AACzD,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,2BAA2BC,GAA8B;AACvD,SAAK,WAAW,2BAA2BA,CAAM,GACjDC,EAAW,KAAK,iBAAiB;AAAA,EACnC;AAAA,EAEA,6BAA6BC,GAA0B;AACrD,SAAK,WAAW,6BAA6BA,CAAU,GACvDD,EAAW,KAAK,iBAAiB;AAAA,EACnC;AACF;AAtBaJ,IAANM,EAAA;AAAA,EADNC,EAAA;AAAA,EAIcC,OAAO,YAAY,CAAA;AAAA,GAHrBR,CAAA;ACNN,MAAMS,EAAc;AAAA,EACzB,YAAYC,GAAsB;AAChC,IAAAA,EACG,KAAsB,iBAAiB,EACvC,GAAGV,CAAsB,EACzB,iBAAA;AAAA,EACL;AACF;"}
1
+ {"version":3,"file":"index.es.js","sources":["../src/defaultWikiConfigProxy.ts","../src/index.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { inject, injectable } from \"inversify\";\nimport { shallowRef, triggerRef } from \"vue\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\nimport type { CristalApp, WikiConfig } from \"@xwiki/platform-api\";\nimport type { Configurations } from \"@xwiki/platform-configuration-api\";\nimport type { Ref } from \"vue\";\n\n/**\n * Default implementation for {@link WikiConfigProxy}.\n * @since 0.18\n * @beta\n */\n@injectable()\nexport class DefaultWikiConfigProxy implements WikiConfigProxy {\n private configurationsRef: Ref<Map<string, WikiConfig>>;\n\n constructor(@inject(\"CristalApp\") private readonly cristalApp: CristalApp) {\n this.configurationsRef = shallowRef(\n this.cristalApp.getAvailableConfigurations(),\n );\n }\n\n getAvailableConfigurations(): Ref<Map<string, WikiConfig>> {\n return this.configurationsRef;\n }\n\n setAvailableConfigurations(config: Configurations): void {\n this.cristalApp.setAvailableConfigurations(config);\n triggerRef(this.configurationsRef);\n }\n\n deleteAvailableConfiguration(configName: string): void {\n this.cristalApp.deleteAvailableConfiguration(configName);\n triggerRef(this.configurationsRef);\n }\n}\n","/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { DefaultWikiConfigProxy } from \"./defaultWikiConfigProxy\";\nimport { Container } from \"inversify\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<WikiConfigProxy>(\"WikiConfigProxy\")\n .to(DefaultWikiConfigProxy)\n .inSingletonScope();\n }\n}\n"],"names":["DefaultWikiConfigProxy","cristalApp","shallowRef","config","triggerRef","configName","__decorateClass","injectable","__decorateParam","ComponentInit","container"],"mappings":";;;;;;;AAiCO,IAAMA,IAAN,MAAwD;AAAA,EAG7D,YAAmDC,GAAwB;AAAxB,SAAA,aAAAA,GACjD,KAAK,oBAAoBC;AAAA,MACvB,KAAK,WAAW,2BAAA;AAAA,IAA2B;AAAA,EAE/C;AAAA,EANQ;AAAA,EAQR,6BAA2D;AACzD,WAAO,KAAK;AAAA,EACd;AAAA,EAEA,2BAA2BC,GAA8B;AACvD,SAAK,WAAW,2BAA2BA,CAAM,GACjDC,EAAW,KAAK,iBAAiB;AAAA,EACnC;AAAA,EAEA,6BAA6BC,GAA0B;AACrD,SAAK,WAAW,6BAA6BA,CAAU,GACvDD,EAAW,KAAK,iBAAiB;AAAA,EACnC;AACF;AAtBaJ,IAANM,EAAA;AAAA,EADNC,EAAA;AAAA,EAIcC,OAAO,YAAY,CAAA;AAAA,GAHrBR,CAAA;ACNN,MAAMS,EAAc;AAAA,EACzB,YAAYC,GAAsB;AAChC,IAAAA,EACG,KAAsB,iBAAiB,EACvC,GAAGV,CAAsB,EACzB,iBAAA;AAAA,EACL;AACF;"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.umd.js","sources":["../src/defaultWikiConfigProxy.ts","../src/index.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { inject, injectable } from \"inversify\";\nimport { shallowRef, triggerRef } from \"vue\";\nimport type { CristalApp, WikiConfig } from \"@xwiki/cristal-api\";\nimport type { Configurations } from \"@xwiki/cristal-configuration-api\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\nimport type { Ref } from \"vue\";\n\n/**\n * Default implementation for {@link WikiConfigProxy}.\n * @since 0.18\n * @beta\n */\n@injectable()\nexport class DefaultWikiConfigProxy implements WikiConfigProxy {\n private configurationsRef: Ref<Map<string, WikiConfig>>;\n\n constructor(@inject(\"CristalApp\") private readonly cristalApp: CristalApp) {\n this.configurationsRef = shallowRef(\n this.cristalApp.getAvailableConfigurations(),\n );\n }\n\n getAvailableConfigurations(): Ref<Map<string, WikiConfig>> {\n return this.configurationsRef;\n }\n\n setAvailableConfigurations(config: Configurations): void {\n this.cristalApp.setAvailableConfigurations(config);\n triggerRef(this.configurationsRef);\n }\n\n deleteAvailableConfiguration(configName: string): void {\n this.cristalApp.deleteAvailableConfiguration(configName);\n triggerRef(this.configurationsRef);\n }\n}\n","/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { DefaultWikiConfigProxy } from \"./defaultWikiConfigProxy\";\nimport { Container } from \"inversify\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<WikiConfigProxy>(\"WikiConfigProxy\")\n .to(DefaultWikiConfigProxy)\n .inSingletonScope();\n }\n}\n"],"names":["DefaultWikiConfigProxy","cristalApp","shallowRef","config","triggerRef","configName","__decorateClass","injectable","__decorateParam","ComponentInit","container"],"mappings":"weAiCO,IAAMA,EAAN,KAAwD,CAG7D,YAAmDC,EAAwB,CAAxB,KAAA,WAAAA,EACjD,KAAK,kBAAoBC,EAAAA,WACvB,KAAK,WAAW,2BAAA,CAA2B,CAE/C,CANQ,kBAQR,4BAA2D,CACzD,OAAO,KAAK,iBACd,CAEA,2BAA2BC,EAA8B,CACvD,KAAK,WAAW,2BAA2BA,CAAM,EACjDC,EAAAA,WAAW,KAAK,iBAAiB,CACnC,CAEA,6BAA6BC,EAA0B,CACrD,KAAK,WAAW,6BAA6BA,CAAU,EACvDD,EAAAA,WAAW,KAAK,iBAAiB,CACnC,CACF,EAtBaJ,EAANM,EAAA,CADNC,aAAA,EAIcC,aAAO,YAAY,CAAA,CAAA,EAHrBR,CAAA,ECNN,MAAMS,CAAc,CACzB,YAAYC,EAAsB,CAChCA,EACG,KAAsB,iBAAiB,EACvC,GAAGV,CAAsB,EACzB,iBAAA,CACL,CACF"}
1
+ {"version":3,"file":"index.umd.js","sources":["../src/defaultWikiConfigProxy.ts","../src/index.ts"],"sourcesContent":["/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { inject, injectable } from \"inversify\";\nimport { shallowRef, triggerRef } from \"vue\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\nimport type { CristalApp, WikiConfig } from \"@xwiki/platform-api\";\nimport type { Configurations } from \"@xwiki/platform-configuration-api\";\nimport type { Ref } from \"vue\";\n\n/**\n * Default implementation for {@link WikiConfigProxy}.\n * @since 0.18\n * @beta\n */\n@injectable()\nexport class DefaultWikiConfigProxy implements WikiConfigProxy {\n private configurationsRef: Ref<Map<string, WikiConfig>>;\n\n constructor(@inject(\"CristalApp\") private readonly cristalApp: CristalApp) {\n this.configurationsRef = shallowRef(\n this.cristalApp.getAvailableConfigurations(),\n );\n }\n\n getAvailableConfigurations(): Ref<Map<string, WikiConfig>> {\n return this.configurationsRef;\n }\n\n setAvailableConfigurations(config: Configurations): void {\n this.cristalApp.setAvailableConfigurations(config);\n triggerRef(this.configurationsRef);\n }\n\n deleteAvailableConfiguration(configName: string): void {\n this.cristalApp.deleteAvailableConfiguration(configName);\n triggerRef(this.configurationsRef);\n }\n}\n","/**\n * See the LICENSE file distributed with this work for additional\n * information regarding copyright ownership.\n *\n * This is free software; you can redistribute it and/or modify it\n * under the terms of the GNU Lesser General Public License as\n * published by the Free Software Foundation; either version 2.1 of\n * the License, or (at your option) any later version.\n *\n * This software is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU\n * Lesser General Public License for more details.\n *\n * You should have received a copy of the GNU Lesser General Public\n * License along with this software; if not, write to the Free\n * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA\n * 02110-1301 USA, or see the FSF site: http://www.fsf.org.\n */\n\nimport { DefaultWikiConfigProxy } from \"./defaultWikiConfigProxy\";\nimport { Container } from \"inversify\";\nimport type { WikiConfigProxy } from \"@xwiki/cristal-wiki-config-api\";\n\n/**\n * @beta\n */\nexport class ComponentInit {\n constructor(container: Container) {\n container\n .bind<WikiConfigProxy>(\"WikiConfigProxy\")\n .to(DefaultWikiConfigProxy)\n .inSingletonScope();\n }\n}\n"],"names":["DefaultWikiConfigProxy","cristalApp","shallowRef","config","triggerRef","configName","__decorateClass","injectable","__decorateParam","ComponentInit","container"],"mappings":"weAiCO,IAAMA,EAAN,KAAwD,CAG7D,YAAmDC,EAAwB,CAAxB,KAAA,WAAAA,EACjD,KAAK,kBAAoBC,EAAAA,WACvB,KAAK,WAAW,2BAAA,CAA2B,CAE/C,CANQ,kBAQR,4BAA2D,CACzD,OAAO,KAAK,iBACd,CAEA,2BAA2BC,EAA8B,CACvD,KAAK,WAAW,2BAA2BA,CAAM,EACjDC,EAAAA,WAAW,KAAK,iBAAiB,CACnC,CAEA,6BAA6BC,EAA0B,CACrD,KAAK,WAAW,6BAA6BA,CAAU,EACvDD,EAAAA,WAAW,KAAK,iBAAiB,CACnC,CACF,EAtBaJ,EAANM,EAAA,CADNC,aAAA,EAIcC,aAAO,YAAY,CAAA,CAAA,EAHrBR,CAAA,ECNN,MAAMS,CAAc,CACzB,YAAYC,EAAsB,CAChCA,EACG,KAAsB,iBAAiB,EACvC,GAAGV,CAAsB,EACzB,iBAAA,CACL,CACF"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xwiki/cristal-wiki-config-default",
3
- "version": "0.24.0",
3
+ "version": "0.25.0",
4
4
  "license": "LGPL 2.1",
5
5
  "author": "XWiki Org Community <contact@xwiki.org>",
6
6
  "homepage": "https://cristal.xwiki.org/",
@@ -28,9 +28,9 @@
28
28
  "main": "./dist/index.es.js",
29
29
  "types": "./dist/index.d.ts",
30
30
  "dependencies": {
31
- "@xwiki/cristal-wiki-config-api": "0.24.0",
32
- "@xwiki/cristal-api": "0.24.0",
33
- "@xwiki/cristal-configuration-api": "0.24.0"
31
+ "@xwiki/platform-api": "18.0.0-1766398944",
32
+ "@xwiki/platform-configuration-api": "18.0.0-1766398944",
33
+ "@xwiki/cristal-wiki-config-api": "0.25.0"
34
34
  },
35
35
  "peerDependencies": {
36
36
  "inversify": "7.x",
@@ -38,11 +38,11 @@
38
38
  "vue": "3.x"
39
39
  },
40
40
  "devDependencies": {
41
- "inversify": "7.10.4",
41
+ "inversify": "7.10.6",
42
42
  "typescript": "5.9.3",
43
- "vite": "7.1.12",
44
- "vue": "3.5.22",
45
- "@xwiki/cristal-dev-config": "0.24.0"
43
+ "vite": "7.2.7",
44
+ "vue": "3.5.25",
45
+ "@xwiki/cristal-dev-config": "0.25.0"
46
46
  },
47
47
  "scripts": {
48
48
  "api-extractor:local": "api-extractor run --local",
@@ -20,9 +20,9 @@
20
20
 
21
21
  import { inject, injectable } from "inversify";
22
22
  import { shallowRef, triggerRef } from "vue";
23
- import type { CristalApp, WikiConfig } from "@xwiki/cristal-api";
24
- import type { Configurations } from "@xwiki/cristal-configuration-api";
25
23
  import type { WikiConfigProxy } from "@xwiki/cristal-wiki-config-api";
24
+ import type { CristalApp, WikiConfig } from "@xwiki/platform-api";
25
+ import type { Configurations } from "@xwiki/platform-configuration-api";
26
26
  import type { Ref } from "vue";
27
27
 
28
28
  /**
package/CHANGELOG.md DELETED
@@ -1,92 +0,0 @@
1
- # @xwiki/cristal-wiki-config-default
2
-
3
- ## 0.23.0
4
-
5
- ### Minor Changes
6
-
7
- - Cristal 0.23 Release
8
-
9
- ### Patch Changes
10
-
11
- - Updated dependencies
12
- - @xwiki/cristal-api@0.23.0
13
- - @xwiki/cristal-configuration-api@0.23.0
14
- - @xwiki/cristal-wiki-config-api@0.23.0
15
-
16
- ## 0.22.0
17
-
18
- ### Minor Changes
19
-
20
- - Cristal 0.22 Release
21
-
22
- ### Patch Changes
23
-
24
- - Updated dependencies
25
- - @xwiki/cristal-api@0.22.0
26
- - @xwiki/cristal-configuration-api@0.22.0
27
- - @xwiki/cristal-wiki-config-api@0.22.0
28
-
29
- ## 0.21.0
30
-
31
- ### Minor Changes
32
-
33
- - Cristal 0.21 Release
34
-
35
- ### Patch Changes
36
-
37
- - Updated dependencies
38
- - @xwiki/cristal-api@0.21.0
39
- - @xwiki/cristal-configuration-api@0.21.0
40
- - @xwiki/cristal-wiki-config-api@0.21.0
41
-
42
- ## 0.20.0
43
-
44
- ### Minor Changes
45
-
46
- - Cristal 0.20 Release
47
-
48
- ### Patch Changes
49
-
50
- - Updated dependencies
51
- - @xwiki/cristal-api@0.20.0
52
- - @xwiki/cristal-configuration-api@0.20.0
53
- - @xwiki/cristal-wiki-config-api@0.20.0
54
-
55
- ## 0.20.0-rc.0
56
-
57
- ### Minor Changes
58
-
59
- - Cristal 0.20-rc-1 Release
60
-
61
- ### Patch Changes
62
-
63
- - Updated dependencies
64
- - @xwiki/cristal-api@0.20.0-rc.0
65
- - @xwiki/cristal-configuration-api@0.20.0-rc.0
66
- - @xwiki/cristal-wiki-config-api@0.20.0-rc.0
67
-
68
- ## 0.19.0
69
-
70
- ### Minor Changes
71
-
72
- - 3eea53e: Cristal 0.19 Release
73
-
74
- ### Patch Changes
75
-
76
- - Updated dependencies [3eea53e]
77
- - @xwiki/cristal-api@0.19.0
78
- - @xwiki/cristal-configuration-api@0.19.0
79
- - @xwiki/cristal-wiki-config-api@0.19.0
80
-
81
- ## 0.18.0
82
-
83
- ### Minor Changes
84
-
85
- - Cristal 0.18 Release
86
-
87
- ### Patch Changes
88
-
89
- - Updated dependencies
90
- - @xwiki/cristal-api@0.18.0
91
- - @xwiki/cristal-configuration-api@0.18.0
92
- - @xwiki/cristal-wiki-config-api@0.18.0