@adobe/helix-config-storage 1.0.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.
Files changed (82) hide show
  1. package/.eslintrc.cjs +16 -0
  2. package/.husky/pre-commit +1 -0
  3. package/.mocha-multi.json +6 -0
  4. package/.nycrc.json +10 -0
  5. package/.releaserc.cjs +16 -0
  6. package/CHANGELOG.md +877 -0
  7. package/CODE_OF_CONDUCT.md +74 -0
  8. package/CONTRIBUTING.md +74 -0
  9. package/LICENSE.txt +264 -0
  10. package/README.md +40 -0
  11. package/package.json +71 -0
  12. package/src/ValidationError.js +95 -0
  13. package/src/config-merge.js +145 -0
  14. package/src/config-store.js +359 -0
  15. package/src/config-validator.js +112 -0
  16. package/src/index.js +15 -0
  17. package/src/schemas/access-admin.schema.cjs +12 -0
  18. package/src/schemas/access-admin.schema.json +57 -0
  19. package/src/schemas/access-site.schema.cjs +12 -0
  20. package/src/schemas/access-site.schema.json +24 -0
  21. package/src/schemas/access.schema.cjs +12 -0
  22. package/src/schemas/access.schema.json +22 -0
  23. package/src/schemas/cdn-prod-akamai.schema.cjs +12 -0
  24. package/src/schemas/cdn-prod-akamai.schema.json +45 -0
  25. package/src/schemas/cdn-prod-cloudflare.schema.cjs +12 -0
  26. package/src/schemas/cdn-prod-cloudflare.schema.json +41 -0
  27. package/src/schemas/cdn-prod-cloudfront.schema.cjs +12 -0
  28. package/src/schemas/cdn-prod-cloudfront.schema.json +41 -0
  29. package/src/schemas/cdn-prod-fastly.schema.cjs +12 -0
  30. package/src/schemas/cdn-prod-fastly.schema.json +40 -0
  31. package/src/schemas/cdn-prod-managed.schema.cjs +12 -0
  32. package/src/schemas/cdn-prod-managed.schema.json +29 -0
  33. package/src/schemas/cdn.schema.cjs +12 -0
  34. package/src/schemas/cdn.schema.json +75 -0
  35. package/src/schemas/code.schema.cjs +12 -0
  36. package/src/schemas/code.schema.json +43 -0
  37. package/src/schemas/common.schema.cjs +12 -0
  38. package/src/schemas/common.schema.json +27 -0
  39. package/src/schemas/content-source-google.schema.cjs +12 -0
  40. package/src/schemas/content-source-google.schema.json +26 -0
  41. package/src/schemas/content-source-markup.schema.cjs +12 -0
  42. package/src/schemas/content-source-markup.schema.json +24 -0
  43. package/src/schemas/content-source-onedrive.schema.cjs +12 -0
  44. package/src/schemas/content-source-onedrive.schema.json +28 -0
  45. package/src/schemas/content.schema.cjs +12 -0
  46. package/src/schemas/content.schema.json +30 -0
  47. package/src/schemas/folders.schema.cjs +12 -0
  48. package/src/schemas/folders.schema.json +13 -0
  49. package/src/schemas/groups.schema.cjs +12 -0
  50. package/src/schemas/groups.schema.json +39 -0
  51. package/src/schemas/headers.schema.cjs +12 -0
  52. package/src/schemas/headers.schema.json +16 -0
  53. package/src/schemas/metadata-source.schema.cjs +12 -0
  54. package/src/schemas/metadata-source.schema.json +16 -0
  55. package/src/schemas/org.schema.cjs +12 -0
  56. package/src/schemas/org.schema.json +26 -0
  57. package/src/schemas/profile.schema.cjs +12 -0
  58. package/src/schemas/profile.schema.json +57 -0
  59. package/src/schemas/profiles.schema.cjs +12 -0
  60. package/src/schemas/profiles.schema.json +28 -0
  61. package/src/schemas/public.schema.cjs +12 -0
  62. package/src/schemas/public.schema.json +8 -0
  63. package/src/schemas/robots.schema.cjs +12 -0
  64. package/src/schemas/robots.schema.json +13 -0
  65. package/src/schemas/sidekick.schema.cjs +12 -0
  66. package/src/schemas/sidekick.schema.json +112 -0
  67. package/src/schemas/site.schema.cjs +12 -0
  68. package/src/schemas/site.schema.json +74 -0
  69. package/src/schemas/sites.schema.cjs +12 -0
  70. package/src/schemas/sites.schema.json +28 -0
  71. package/src/schemas/tokens.schema.cjs +12 -0
  72. package/src/schemas/tokens.schema.json +28 -0
  73. package/src/schemas/user.schema.cjs +12 -0
  74. package/src/schemas/user.schema.json +42 -0
  75. package/src/schemas/users.schema.cjs +12 -0
  76. package/src/schemas/users.schema.json +10 -0
  77. package/src/status-code-error.js +22 -0
  78. package/src/utils.js +223 -0
  79. package/types/org-config.d.ts +51 -0
  80. package/types/profile-config.d.ts +368 -0
  81. package/types/site-config.d.ts +375 -0
  82. package/validate-json-schemas.sh +32 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,877 @@
1
+ # 1.0.0 (2024-08-15)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add admin access config for admin scope ([#18](https://github.com/adobe/helix-config-storage/issues/18)) ([5a3a7ea](https://github.com/adobe/helix-config-storage/commit/5a3a7ea0220b9a8776c64cd5535de1b6cad420b7))
7
+ * add cloudfront cdn config to schema ([#114](https://github.com/adobe/helix-config-storage/issues/114)) ([3f12d26](https://github.com/adobe/helix-config-storage/commit/3f12d26c2b067435c6d9766c0f58b8aa51d43fb3))
8
+ * add config-admin role ([#126](https://github.com/adobe/helix-config-storage/issues/126)) ([baa2ba4](https://github.com/adobe/helix-config-storage/commit/baa2ba46c4a741b300c2cc0114654ac6c071bcad))
9
+ * add support for granular crud ([7f1eb43](https://github.com/adobe/helix-config-storage/commit/7f1eb434afbd809cd8fa11ba314815c0edb7cbb8)), closes [#38](https://github.com/adobe/helix-config-storage/issues/38)
10
+ * adjust regexp for modifiers map ([#55](https://github.com/adobe/helix-config-storage/issues/55)) ([b480fbb](https://github.com/adobe/helix-config-storage/commit/b480fbbe25215950660353aae65820c462df7004))
11
+ * allow to set public configuration ([#80](https://github.com/adobe/helix-config-storage/issues/80)) ([3a5b175](https://github.com/adobe/helix-config-storage/commit/3a5b175f1afc074edd398f5a75a0c271c91ddc72))
12
+ * always load default profile ([01597e1](https://github.com/adobe/helix-config-storage/commit/01597e1fefd09bac056123fb43f43b713e91044a)), closes [#138](https://github.com/adobe/helix-config-storage/issues/138)
13
+ * avoid NPE if org config is missing ([#124](https://github.com/adobe/helix-config-storage/issues/124)) ([a9efaab](https://github.com/adobe/helix-config-storage/commit/a9efaab5e6557b0d73406a0f78b6d2a2e0ba7b23))
14
+ * cleanup admin.access ([#66](https://github.com/adobe/helix-config-storage/issues/66)) ([28b1c28](https://github.com/adobe/helix-config-storage/commit/28b1c28a71894b98e7748f3c671e4a79879ae81b))
15
+ * config locations ([#27](https://github.com/adobe/helix-config-storage/issues/27)) ([675fde2](https://github.com/adobe/helix-config-storage/commit/675fde2f2beb8baa694b21bbc99e8d9bb128e5c4))
16
+ * consistent return from update ([bce73a1](https://github.com/adobe/helix-config-storage/commit/bce73a1b423397afa751c15bd67ecad164bc05e1))
17
+ * correct json schema ([#88](https://github.com/adobe/helix-config-storage/issues/88)) ([96c60e1](https://github.com/adobe/helix-config-storage/commit/96c60e1dc009dbaad6318a083a6914c7b0f62cc7))
18
+ * **deps:** now using @smithy/note-httphandler ([#49](https://github.com/adobe/helix-config-storage/issues/49)) ([a94c016](https://github.com/adobe/helix-config-storage/commit/a94c016fcc6c078346eee6051e52487133e23f03))
19
+ * **deps:** update @adobe/helix-shared-config@10.5.0 ([66271b9](https://github.com/adobe/helix-config-storage/commit/66271b9713486fdaa52ddaa13185741bb936f0b3))
20
+ * **deps:** update adobe fixes ([b87d6ee](https://github.com/adobe/helix-config-storage/commit/b87d6ee8e5c94d89f4a0623d465c953c39470204))
21
+ * **deps:** update adobe fixes ([df5fb5c](https://github.com/adobe/helix-config-storage/commit/df5fb5c1351958e9a8e0f13326ac23e7fef2aeb0))
22
+ * **deps:** update adobe fixes ([18b0246](https://github.com/adobe/helix-config-storage/commit/18b02460d1a052294211ea3b309736775b09890e))
23
+ * **deps:** update adobe fixes ([bec0972](https://github.com/adobe/helix-config-storage/commit/bec09726b13e015550dad2e7cd28b08b48cec80e))
24
+ * **deps:** update adobe fixes ([e62fa79](https://github.com/adobe/helix-config-storage/commit/e62fa79415c617ac250456ac03551fbae1f90766))
25
+ * **deps:** update adobe fixes ([cc232a3](https://github.com/adobe/helix-config-storage/commit/cc232a3291ffa3c23ffdee5166008abb5c10b8de))
26
+ * **deps:** update adobe fixes ([#99](https://github.com/adobe/helix-config-storage/issues/99)) ([e3127a7](https://github.com/adobe/helix-config-storage/commit/e3127a73b1e32ddd3a7a25b9898204dea3d92450))
27
+ * **deps:** update dependency @adobe/fetch to v4.1.4 ([2f4d326](https://github.com/adobe/helix-config-storage/commit/2f4d326a162bc6acb5e8b03f93c01bf236588ca3))
28
+ * **deps:** update dependency @adobe/fetch to v4.1.8 ([#101](https://github.com/adobe/helix-config-storage/issues/101)) ([8d67c76](https://github.com/adobe/helix-config-storage/commit/8d67c76552861caf4bf260b9288ab494b073b66c))
29
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.11 ([#17](https://github.com/adobe/helix-config-storage/issues/17)) ([ee13fbf](https://github.com/adobe/helix-config-storage/commit/ee13fbf36c4de16b445cab7fb54c65f1caf01236))
30
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.12 ([a8b29c9](https://github.com/adobe/helix-config-storage/commit/a8b29c9115a5391a311d375c8452e91d4b4e1777))
31
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.13 ([54038c6](https://github.com/adobe/helix-config-storage/commit/54038c66c1d6b30274a20c606e21df5af0754665))
32
+ * **deps:** update dependency @adobe/helix-shared-config to v10.4.0 ([21041af](https://github.com/adobe/helix-config-storage/commit/21041af3fae285c341ee8e748c29f405e7132351))
33
+ * **deps:** update dependency @adobe/helix-shared-config to v10.4.3 ([7ef6d67](https://github.com/adobe/helix-config-storage/commit/7ef6d67379bece150e974b3a7c223ed50856e198))
34
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.0 ([#115](https://github.com/adobe/helix-config-storage/issues/115)) ([0b0383b](https://github.com/adobe/helix-config-storage/commit/0b0383b485a63dac8ac25044a2a73e6f3edc0d6f))
35
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.1 ([53f1603](https://github.com/adobe/helix-config-storage/commit/53f1603debebaa747ab541427f4cff6047f056f8))
36
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.2 ([#119](https://github.com/adobe/helix-config-storage/issues/119)) ([9c82d74](https://github.com/adobe/helix-config-storage/commit/9c82d745bcbb9aac7588a216b6be634ddbffafe7))
37
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.3 ([c26b938](https://github.com/adobe/helix-config-storage/commit/c26b938d1524521dc596c277189ed3a9e420f452))
38
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.4 ([ae5c9dd](https://github.com/adobe/helix-config-storage/commit/ae5c9dd7712706ec86f2cf6191a4d5e85eb791c4))
39
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.2 ([8576838](https://github.com/adobe/helix-config-storage/commit/8576838602d87ba201b8ac64db8596399aa1ab95))
40
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.3 ([57786d2](https://github.com/adobe/helix-config-storage/commit/57786d222a5a6161957c5c57aa149b74000aea36))
41
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.4 ([359dd19](https://github.com/adobe/helix-config-storage/commit/359dd19c0bd5f87e0042fa43eda55ae184693322))
42
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.5 ([3fa7d3f](https://github.com/adobe/helix-config-storage/commit/3fa7d3f784ffc1ddc0f4f85b69dd850ed77e3fa1))
43
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.550.0 ([7bb24af](https://github.com/adobe/helix-config-storage/commit/7bb24af74c8f405e555e82eb4a53422f57c2089f))
44
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.554.0 ([#44](https://github.com/adobe/helix-config-storage/issues/44)) ([da0f561](https://github.com/adobe/helix-config-storage/commit/da0f56137c15bd551c9c18df47854884aada9e1c))
45
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.556.0 ([6bf3ce6](https://github.com/adobe/helix-config-storage/commit/6bf3ce60f6647b0bf3bd6629c4bd9d2db77f363e))
46
+ * **deps:** update dependency ajv to v8.14.0 ([c39e9d5](https://github.com/adobe/helix-config-storage/commit/c39e9d5b66b242e5d570194d5fa97a71c0bd7f66))
47
+ * **deps:** update dependency ajv to v8.17.1 ([45bd512](https://github.com/adobe/helix-config-storage/commit/45bd51267c9046b499bef0d9a00b745e561fa567))
48
+ * **deps:** update dependency jose to v5.4.1 ([2e8a7e1](https://github.com/adobe/helix-config-storage/commit/2e8a7e1beef771b7014fd51f27dc54103a544cd9))
49
+ * **deps:** update external fixes ([733d8ad](https://github.com/adobe/helix-config-storage/commit/733d8adf9ff74c72c82fbabf3eb1a57c370c2b38))
50
+ * **deps:** update external fixes ([16468a8](https://github.com/adobe/helix-config-storage/commit/16468a898a04da5a0a087f669a8e1922dae1257f))
51
+ * **deps:** update external fixes ([f7265f2](https://github.com/adobe/helix-config-storage/commit/f7265f2bd8f97b1df3a624e2f91f17b2573bb306))
52
+ * **deps:** update external fixes ([81e5007](https://github.com/adobe/helix-config-storage/commit/81e500707263690de2a8911398d64750eba91362))
53
+ * **deps:** update external fixes ([bc70567](https://github.com/adobe/helix-config-storage/commit/bc7056752e7fb64a6869ab7f135b65d635d3fac0))
54
+ * **deps:** update external fixes ([#43](https://github.com/adobe/helix-config-storage/issues/43)) ([5629ca4](https://github.com/adobe/helix-config-storage/commit/5629ca4484b463bfe368904fc2f17aee4590a7b2))
55
+ * do not load org config in resolveConfig ([ccedbfd](https://github.com/adobe/helix-config-storage/commit/ccedbfd4c7c465b842e25f9021fd5a06021e63d4))
56
+ * export config merge ([#111](https://github.com/adobe/helix-config-storage/issues/111)) ([25f9680](https://github.com/adobe/helix-config-storage/commit/25f9680f74e9dc90a5593d042b75aa0102ebf74d))
57
+ * export validation error ([#61](https://github.com/adobe/helix-config-storage/issues/61)) ([68f3d74](https://github.com/adobe/helix-config-storage/commit/68f3d7408ff88d440958fea009731878476f2888))
58
+ * fix schema ([#148](https://github.com/adobe/helix-config-storage/issues/148)) ([43e13d2](https://github.com/adobe/helix-config-storage/commit/43e13d26c1045001248fb3f002b53fcb71b820d0))
59
+ * fix schema and add validator ([#155](https://github.com/adobe/helix-config-storage/issues/155)) ([4235141](https://github.com/adobe/helix-config-storage/commit/42351418b61a1e83ee476d241875aa63fd520ae7))
60
+ * folders schema ([#105](https://github.com/adobe/helix-config-storage/issues/105)) ([94c0ec0](https://github.com/adobe/helix-config-storage/commit/94c0ec0ab8e981046f3849a4e545a759300813e5))
61
+ * include head surrogate key ([#137](https://github.com/adobe/helix-config-storage/issues/137)) ([02cc43a](https://github.com/adobe/helix-config-storage/commit/02cc43aa1a948c69a79f0256ebd90029cfe65f3a)), closes [#135](https://github.com/adobe/helix-config-storage/issues/135)
62
+ * include public config in pipeline ([#51](https://github.com/adobe/helix-config-storage/issues/51)) ([67e95b5](https://github.com/adobe/helix-config-storage/commit/67e95b56b96e68eba468543b41266b42df9b2ad2))
63
+ * initial release ([f633ec6](https://github.com/adobe/helix-config-storage/commit/f633ec6f052220ff7a36b8f4931c090d3ff97f82))
64
+ * legacy sites with apiKey but no allow must not authenticate ([#109](https://github.com/adobe/helix-config-storage/issues/109)) ([421575e](https://github.com/adobe/helix-config-storage/commit/421575eb9093820a824031695f26bbc568dd4505)), closes [#91](https://github.com/adobe/helix-config-storage/issues/91)
65
+ * properly hash global delivery token ([#78](https://github.com/adobe/helix-config-storage/issues/78)) ([6f352ba](https://github.com/adobe/helix-config-storage/commit/6f352ba9ed481f4d79bfb46750db3de81fb75966))
66
+ * refactor to separate imports ([#94](https://github.com/adobe/helix-config-storage/issues/94)) ([2678381](https://github.com/adobe/helix-config-storage/commit/26783813cf54740d10bb485ba98e442213effdf4))
67
+ * remove org users from site config ([#98](https://github.com/adobe/helix-config-storage/issues/98)) ([ec7be79](https://github.com/adobe/helix-config-storage/commit/ec7be790966d182917a0d3773acf35372ea4e0a1))
68
+ * respect only original-site ([#162](https://github.com/adobe/helix-config-storage/issues/162)) ([155c485](https://github.com/adobe/helix-config-storage/commit/155c4853ed9d3f16b455a181d1340e9a01690033))
69
+ * return created user ([#93](https://github.com/adobe/helix-config-storage/issues/93)) ([adc2079](https://github.com/adobe/helix-config-storage/commit/adc20791b1e55b3650cd9d873193077af4c50a7f))
70
+ * separate headers config ([#108](https://github.com/adobe/helix-config-storage/issues/108)) ([cef56df](https://github.com/adobe/helix-config-storage/commit/cef56df1245960f271b17c842ae379dd8ed660bb))
71
+ * support old configs without data ([#73](https://github.com/adobe/helix-config-storage/issues/73)) ([bfe92bf](https://github.com/adobe/helix-config-storage/commit/bfe92bf567af97317f69be0b43ed39cb4f1f33eb))
72
+ * tests ([8b04208](https://github.com/adobe/helix-config-storage/commit/8b042088e1c8afd6f9793ed12e33dae06bbc2dc6))
73
+ * trigger release ([404ad83](https://github.com/adobe/helix-config-storage/commit/404ad83057921ad5ada86873696ab8e031c4c037))
74
+ * use correct prefix ([#112](https://github.com/adobe/helix-config-storage/issues/112)) ([e194a57](https://github.com/adobe/helix-config-storage/commit/e194a571cfc5f059dbd4ac193052ddd824daa34b))
75
+ * use head from ref and return 404 if missing ([#47](https://github.com/adobe/helix-config-storage/issues/47)) ([61ab5b5](https://github.com/adobe/helix-config-storage/commit/61ab5b5b6758752c6c87cb64b02d10155a674ab6))
76
+ * use webcrypto for better support ([#82](https://github.com/adobe/helix-config-storage/issues/82)) ([0eb3a5b](https://github.com/adobe/helix-config-storage/commit/0eb3a5b3ddba9a809c617e09d40f7d6ba98e0663))
77
+
78
+
79
+ ### Features
80
+
81
+ * add client certification DN to access config ([#24](https://github.com/adobe/helix-config-storage/issues/24)) ([ec517e3](https://github.com/adobe/helix-config-storage/commit/ec517e39814f0006ba993dbcbeb06043743f8609)), closes [#21](https://github.com/adobe/helix-config-storage/issues/21)
82
+ * add cnd.prod.route ([04ef870](https://github.com/adobe/helix-config-storage/commit/04ef870efc8f9473d755c08573ccb2006010149a))
83
+ * add global token hash if needed ([#76](https://github.com/adobe/helix-config-storage/issues/76)) ([ac4a139](https://github.com/adobe/helix-config-storage/commit/ac4a139497a98302ef9627644f5b9918ee76c282))
84
+ * add json schemas and restructure content and code config ([#26](https://github.com/adobe/helix-config-storage/issues/26)) ([b38af40](https://github.com/adobe/helix-config-storage/commit/b38af40c8ee0812d946032ac6958c9debc30600b))
85
+ * add more meaningful errors ([#136](https://github.com/adobe/helix-config-storage/issues/136)) ([04bc71c](https://github.com/adobe/helix-config-storage/commit/04bc71c1d95489f383bdbcedaaefd78cdfd13818)), closes [#116](https://github.com/adobe/helix-config-storage/issues/116) [#130](https://github.com/adobe/helix-config-storage/issues/130)
86
+ * add site and profile lists ([#110](https://github.com/adobe/helix-config-storage/issues/110)) ([98c6a61](https://github.com/adobe/helix-config-storage/commit/98c6a6102578fb4695704e1be44f6e7321c46d4d)), closes [#84](https://github.com/adobe/helix-config-storage/issues/84) [#85](https://github.com/adobe/helix-config-storage/issues/85)
87
+ * add storage api ([#36](https://github.com/adobe/helix-config-storage/issues/36)) ([85475ce](https://github.com/adobe/helix-config-storage/commit/85475ce91ebc42bd6f8f85e2834b54d23b8db944))
88
+ * add support for org users storage and view ([0b65a1d](https://github.com/adobe/helix-config-storage/commit/0b65a1df91c4271a6c2ab99fb669381207141a24))
89
+ * add support for raw config ([#45](https://github.com/adobe/helix-config-storage/issues/45)) ([7e3eab3](https://github.com/adobe/helix-config-storage/commit/7e3eab3930ba33b9e04d502e2391e26580badbe6))
90
+ * add support for robots.txt ([#57](https://github.com/adobe/helix-config-storage/issues/57)) ([dedfec3](https://github.com/adobe/helix-config-storage/commit/dedfec38c0ff97953b71ea3d71a4547f981eb56d)), closes [#56](https://github.com/adobe/helix-config-storage/issues/56)
91
+ * add support to migrate jwt api keys ([#59](https://github.com/adobe/helix-config-storage/issues/59)) ([04adf04](https://github.com/adobe/helix-config-storage/commit/04adf04c975ee38840a56f81aac8a1609959298a))
92
+ * add surrogate keys ([#25](https://github.com/adobe/helix-config-storage/issues/25)) ([314c627](https://github.com/adobe/helix-config-storage/commit/314c62736bd0cf63616da9b46cbf9544b9210ae1))
93
+ * add token support ([d8e25f5](https://github.com/adobe/helix-config-storage/commit/d8e25f58ae8b083f9fa2970d84e5ab6f03c26372)), closes [#42](https://github.com/adobe/helix-config-storage/issues/42)
94
+ * add user groups and resolve for admin roles ([#120](https://github.com/adobe/helix-config-storage/issues/120)) ([a325138](https://github.com/adobe/helix-config-storage/commit/a325138650e20ef3bd662e6c3bf163c36ccb9334)), closes [#15](https://github.com/adobe/helix-config-storage/issues/15) [#121](https://github.com/adobe/helix-config-storage/issues/121)
95
+ * allow all role names ([#68](https://github.com/adobe/helix-config-storage/issues/68)) ([5b8f990](https://github.com/adobe/helix-config-storage/commit/5b8f990d66568bb960c157f5812e19108bb77f84))
96
+ * allow to specify access.site ([#129](https://github.com/adobe/helix-config-storage/issues/129)) ([83f7142](https://github.com/adobe/helix-config-storage/commit/83f714215903315158ccacbf3ecfdb14d9d97c31)), closes [#62](https://github.com/adobe/helix-config-storage/issues/62)
97
+ * also include ctx ([#140](https://github.com/adobe/helix-config-storage/issues/140)) ([6c29c54](https://github.com/adobe/helix-config-storage/commit/6c29c541ccacc6740d60f577889f5064ec6c29c4))
98
+ * calculate contentBusId on update ([#46](https://github.com/adobe/helix-config-storage/issues/46)) ([85724df](https://github.com/adobe/helix-config-storage/commit/85724dfa38738f75934d9b64cc9c01e53bd6c417))
99
+ * delivery token hashes for pipeline scope ([#79](https://github.com/adobe/helix-config-storage/issues/79)) ([371c771](https://github.com/adobe/helix-config-storage/commit/371c7718fb9592e526fcef2f76efbd0ed6a209f6))
100
+ * enforce original-site for admin config ([#157](https://github.com/adobe/helix-config-storage/issues/157)) ([366328f](https://github.com/adobe/helix-config-storage/commit/366328f8a918341d61239b7d32205eea1fa09f02))
101
+ * export config storage schemas ([#87](https://github.com/adobe/helix-config-storage/issues/87)) ([951230a](https://github.com/adobe/helix-config-storage/commit/951230a78d5a6e07bf20963f3887e24dfe2c950d))
102
+ * implement config library ([a4b7466](https://github.com/adobe/helix-config-storage/commit/a4b74669ebe95bd092784e6bdfd8996ec8dc0ec5))
103
+ * make ConfigStore.validate() overridable ([#139](https://github.com/adobe/helix-config-storage/issues/139)) ([6a85c7f](https://github.com/adobe/helix-config-storage/commit/6a85c7fbefb3687c8c4f8ae2117886507192aaac))
104
+ * move tokens from org to sites/profiles ([#151](https://github.com/adobe/helix-config-storage/issues/151)) ([4eb3073](https://github.com/adobe/helix-config-storage/commit/4eb3073386b951c88d5318d7511a41e0fb8a0eb5))
105
+ * refactor s3 loader abstraction ([#31](https://github.com/adobe/helix-config-storage/issues/31)) ([086cce5](https://github.com/adobe/helix-config-storage/commit/086cce51e76da932ed68acef095e262db0e50be5))
106
+ * refine roles ([#128](https://github.com/adobe/helix-config-storage/issues/128)) ([4550be1](https://github.com/adobe/helix-config-storage/commit/4550be179e6b0fe6bcc65742500bae6bb3c82486))
107
+ * remove old access config ([#77](https://github.com/adobe/helix-config-storage/issues/77)) ([20d9a25](https://github.com/adobe/helix-config-storage/commit/20d9a252eb5b399f2f6dc324830748cbacbae5c3))
108
+ * remove unused option and enforce scope ([#86](https://github.com/adobe/helix-config-storage/issues/86)) ([4c9d26d](https://github.com/adobe/helix-config-storage/commit/4c9d26d5579b289adb593b2ccfeae97d5ff5e3b6))
109
+ * return 404 for missing branch ([#33](https://github.com/adobe/helix-config-storage/issues/33)) ([b3ea0f4](https://github.com/adobe/helix-config-storage/commit/b3ea0f419f34ee0a94b02b9a67c06c64eec06d2d))
110
+ * simplify token cretion on empty org ([#74](https://github.com/adobe/helix-config-storage/issues/74)) ([327747a](https://github.com/adobe/helix-config-storage/commit/327747a4a34e4b3ae37f732e1631a40184190b8b))
111
+ * store tokens in org config ([#72](https://github.com/adobe/helix-config-storage/issues/72)) ([03a3a81](https://github.com/adobe/helix-config-storage/commit/03a3a812ef1ab3147ea73447dced740dfa48555a)), closes [#69](https://github.com/adobe/helix-config-storage/issues/69)
112
+ * support content overlay in content schema ([bb45473](https://github.com/adobe/helix-config-storage/commit/bb454730c20a882a9541f5e73a6b05d59391d250))
113
+ * support profile for site ([#67](https://github.com/adobe/helix-config-storage/issues/67)) ([55c09c9](https://github.com/adobe/helix-config-storage/commit/55c09c95919ec06f047393335bdbcbcc2d187eb2))
114
+ * trigger releaase ([0bfd949](https://github.com/adobe/helix-config-storage/commit/0bfd94974e6e70fdcddd0daf24d48552e074926d))
115
+ * trigger release ([514f88a](https://github.com/adobe/helix-config-storage/commit/514f88a8d4afeb67357d78d649d499df597944c2))
116
+ * update sidekick plugin schema ([bac329a](https://github.com/adobe/helix-config-storage/commit/bac329a15045ff49e4d58b1e7dc0289a97e6a67b))
117
+ * use helix-shared-storage ([#65](https://github.com/adobe/helix-config-storage/issues/65)) ([ec73aa6](https://github.com/adobe/helix-config-storage/commit/ec73aa63141422239cb022251645272beab2cf14))
118
+ * validate config ([e7011df](https://github.com/adobe/helix-config-storage/commit/e7011dfda45a13bc847e1df304a53c93c93434fb))
119
+
120
+
121
+ ### BREAKING CHANGES
122
+
123
+ * ConfigContext.withFetch() was removed
124
+ * replace HelixStorage with S3Loader
125
+
126
+ ## [3.13.2](https://github.com/adobe/helix-config/compare/v3.13.1...v3.13.2) (2024-08-15)
127
+
128
+
129
+ ### Bug Fixes
130
+
131
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.5 ([3fa7d3f](https://github.com/adobe/helix-config/commit/3fa7d3f784ffc1ddc0f4f85b69dd850ed77e3fa1))
132
+
133
+ ## [3.13.1](https://github.com/adobe/helix-config/compare/v3.13.0...v3.13.1) (2024-08-14)
134
+
135
+
136
+ ### Bug Fixes
137
+
138
+ * respect only original-site ([#162](https://github.com/adobe/helix-config/issues/162)) ([155c485](https://github.com/adobe/helix-config/commit/155c4853ed9d3f16b455a181d1340e9a01690033))
139
+
140
+ # [3.13.0](https://github.com/adobe/helix-config/compare/v3.12.0...v3.13.0) (2024-08-13)
141
+
142
+
143
+ ### Features
144
+
145
+ * support content overlay in content schema ([bb45473](https://github.com/adobe/helix-config/commit/bb454730c20a882a9541f5e73a6b05d59391d250))
146
+
147
+ # [3.12.0](https://github.com/adobe/helix-config/compare/v3.11.1...v3.12.0) (2024-07-31)
148
+
149
+
150
+ ### Features
151
+
152
+ * enforce original-site for admin config ([#157](https://github.com/adobe/helix-config/issues/157)) ([366328f](https://github.com/adobe/helix-config/commit/366328f8a918341d61239b7d32205eea1fa09f02))
153
+
154
+ ## [3.11.1](https://github.com/adobe/helix-config/compare/v3.11.0...v3.11.1) (2024-07-29)
155
+
156
+
157
+ ### Bug Fixes
158
+
159
+ * fix schema and add validator ([#155](https://github.com/adobe/helix-config/issues/155)) ([4235141](https://github.com/adobe/helix-config/commit/42351418b61a1e83ee476d241875aa63fd520ae7))
160
+
161
+ # [3.11.0](https://github.com/adobe/helix-config/compare/v3.10.1...v3.11.0) (2024-07-29)
162
+
163
+
164
+ ### Features
165
+
166
+ * update sidekick plugin schema ([bac329a](https://github.com/adobe/helix-config/commit/bac329a15045ff49e4d58b1e7dc0289a97e6a67b))
167
+
168
+ ## [3.10.1](https://github.com/adobe/helix-config/compare/v3.10.0...v3.10.1) (2024-07-27)
169
+
170
+
171
+ ### Bug Fixes
172
+
173
+ * **deps:** update adobe fixes ([b87d6ee](https://github.com/adobe/helix-config/commit/b87d6ee8e5c94d89f4a0623d465c953c39470204))
174
+
175
+ # [3.10.0](https://github.com/adobe/helix-config/compare/v3.9.4...v3.10.0) (2024-07-25)
176
+
177
+
178
+ ### Features
179
+
180
+ * move tokens from org to sites/profiles ([#151](https://github.com/adobe/helix-config/issues/151)) ([4eb3073](https://github.com/adobe/helix-config/commit/4eb3073386b951c88d5318d7511a41e0fb8a0eb5))
181
+
182
+ ## [3.9.4](https://github.com/adobe/helix-config/compare/v3.9.3...v3.9.4) (2024-07-23)
183
+
184
+
185
+ ### Bug Fixes
186
+
187
+ * fix schema ([#148](https://github.com/adobe/helix-config/issues/148)) ([43e13d2](https://github.com/adobe/helix-config/commit/43e13d26c1045001248fb3f002b53fcb71b820d0))
188
+
189
+ ## [3.9.3](https://github.com/adobe/helix-config/compare/v3.9.2...v3.9.3) (2024-07-22)
190
+
191
+
192
+ ### Bug Fixes
193
+
194
+ * trigger release ([404ad83](https://github.com/adobe/helix-config/commit/404ad83057921ad5ada86873696ab8e031c4c037))
195
+
196
+ ## [3.9.2](https://github.com/adobe/helix-config/compare/v3.9.1...v3.9.2) (2024-07-22)
197
+
198
+
199
+ ### Bug Fixes
200
+
201
+ * always load default profile ([01597e1](https://github.com/adobe/helix-config/commit/01597e1fefd09bac056123fb43f43b713e91044a)), closes [#138](https://github.com/adobe/helix-config/issues/138)
202
+
203
+ ## [3.9.1](https://github.com/adobe/helix-config/compare/v3.9.0...v3.9.1) (2024-07-19)
204
+
205
+
206
+ ### Bug Fixes
207
+
208
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.4 ([359dd19](https://github.com/adobe/helix-config/commit/359dd19c0bd5f87e0042fa43eda55ae184693322))
209
+
210
+ # [3.9.0](https://github.com/adobe/helix-config/compare/v3.8.0...v3.9.0) (2024-07-18)
211
+
212
+
213
+ ### Features
214
+
215
+ * also include ctx ([#140](https://github.com/adobe/helix-config/issues/140)) ([6c29c54](https://github.com/adobe/helix-config/commit/6c29c541ccacc6740d60f577889f5064ec6c29c4))
216
+
217
+ # [3.8.0](https://github.com/adobe/helix-config/compare/v3.7.1...v3.8.0) (2024-07-18)
218
+
219
+
220
+ ### Features
221
+
222
+ * make ConfigStore.validate() overridable ([#139](https://github.com/adobe/helix-config/issues/139)) ([6a85c7f](https://github.com/adobe/helix-config/commit/6a85c7fbefb3687c8c4f8ae2117886507192aaac))
223
+
224
+ ## [3.7.1](https://github.com/adobe/helix-config/compare/v3.7.0...v3.7.1) (2024-07-17)
225
+
226
+
227
+ ### Bug Fixes
228
+
229
+ * include head surrogate key ([#137](https://github.com/adobe/helix-config/issues/137)) ([02cc43a](https://github.com/adobe/helix-config/commit/02cc43aa1a948c69a79f0256ebd90029cfe65f3a)), closes [#135](https://github.com/adobe/helix-config/issues/135)
230
+
231
+ # [3.7.0](https://github.com/adobe/helix-config/compare/v3.6.3...v3.7.0) (2024-07-17)
232
+
233
+
234
+ ### Features
235
+
236
+ * add more meaningful errors ([#136](https://github.com/adobe/helix-config/issues/136)) ([04bc71c](https://github.com/adobe/helix-config/commit/04bc71c1d95489f383bdbcedaaefd78cdfd13818)), closes [#116](https://github.com/adobe/helix-config/issues/116) [#130](https://github.com/adobe/helix-config/issues/130)
237
+
238
+ ## [3.6.3](https://github.com/adobe/helix-config/compare/v3.6.2...v3.6.3) (2024-07-17)
239
+
240
+
241
+ ### Bug Fixes
242
+
243
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.3 ([57786d2](https://github.com/adobe/helix-config/commit/57786d222a5a6161957c5c57aa149b74000aea36))
244
+
245
+ ## [3.6.2](https://github.com/adobe/helix-config/compare/v3.6.1...v3.6.2) (2024-07-13)
246
+
247
+
248
+ ### Bug Fixes
249
+
250
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.4 ([ae5c9dd](https://github.com/adobe/helix-config/commit/ae5c9dd7712706ec86f2cf6191a4d5e85eb791c4))
251
+
252
+ ## [3.6.1](https://github.com/adobe/helix-config/compare/v3.6.0...v3.6.1) (2024-07-13)
253
+
254
+
255
+ ### Bug Fixes
256
+
257
+ * **deps:** update dependency ajv to v8.17.1 ([45bd512](https://github.com/adobe/helix-config/commit/45bd51267c9046b499bef0d9a00b745e561fa567))
258
+
259
+ # [3.6.0](https://github.com/adobe/helix-config/compare/v3.5.0...v3.6.0) (2024-07-11)
260
+
261
+
262
+ ### Features
263
+
264
+ * allow to specify access.site ([#129](https://github.com/adobe/helix-config/issues/129)) ([83f7142](https://github.com/adobe/helix-config/commit/83f714215903315158ccacbf3ecfdb14d9d97c31)), closes [#62](https://github.com/adobe/helix-config/issues/62)
265
+
266
+ # [3.5.0](https://github.com/adobe/helix-config/compare/v3.4.4...v3.5.0) (2024-07-10)
267
+
268
+
269
+ ### Features
270
+
271
+ * refine roles ([#128](https://github.com/adobe/helix-config/issues/128)) ([4550be1](https://github.com/adobe/helix-config/commit/4550be179e6b0fe6bcc65742500bae6bb3c82486))
272
+
273
+ ## [3.4.4](https://github.com/adobe/helix-config/compare/v3.4.3...v3.4.4) (2024-07-09)
274
+
275
+
276
+ ### Bug Fixes
277
+
278
+ * add config-admin role ([#126](https://github.com/adobe/helix-config/issues/126)) ([baa2ba4](https://github.com/adobe/helix-config/commit/baa2ba46c4a741b300c2cc0114654ac6c071bcad))
279
+
280
+ ## [3.4.3](https://github.com/adobe/helix-config/compare/v3.4.2...v3.4.3) (2024-07-08)
281
+
282
+
283
+ ### Bug Fixes
284
+
285
+ * avoid NPE if org config is missing ([#124](https://github.com/adobe/helix-config/issues/124)) ([a9efaab](https://github.com/adobe/helix-config/commit/a9efaab5e6557b0d73406a0f78b6d2a2e0ba7b23))
286
+
287
+ ## [3.4.2](https://github.com/adobe/helix-config/compare/v3.4.1...v3.4.2) (2024-07-06)
288
+
289
+
290
+ ### Bug Fixes
291
+
292
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.3 ([c26b938](https://github.com/adobe/helix-config/commit/c26b938d1524521dc596c277189ed3a9e420f452))
293
+
294
+ ## [3.4.1](https://github.com/adobe/helix-config/compare/v3.4.0...v3.4.1) (2024-07-06)
295
+
296
+
297
+ ### Bug Fixes
298
+
299
+ * **deps:** update external fixes ([733d8ad](https://github.com/adobe/helix-config/commit/733d8adf9ff74c72c82fbabf3eb1a57c370c2b38))
300
+
301
+ # [3.4.0](https://github.com/adobe/helix-config/compare/v3.3.8...v3.4.0) (2024-07-04)
302
+
303
+
304
+ ### Features
305
+
306
+ * add user groups and resolve for admin roles ([#120](https://github.com/adobe/helix-config/issues/120)) ([a325138](https://github.com/adobe/helix-config/commit/a325138650e20ef3bd662e6c3bf163c36ccb9334)), closes [#15](https://github.com/adobe/helix-config/issues/15) [#121](https://github.com/adobe/helix-config/issues/121)
307
+
308
+ ## [3.3.8](https://github.com/adobe/helix-config/compare/v3.3.7...v3.3.8) (2024-07-02)
309
+
310
+
311
+ ### Bug Fixes
312
+
313
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.2 ([#119](https://github.com/adobe/helix-config/issues/119)) ([9c82d74](https://github.com/adobe/helix-config/commit/9c82d745bcbb9aac7588a216b6be634ddbffafe7))
314
+
315
+ ## [3.3.7](https://github.com/adobe/helix-config/compare/v3.3.6...v3.3.7) (2024-06-29)
316
+
317
+
318
+ ### Bug Fixes
319
+
320
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.1 ([53f1603](https://github.com/adobe/helix-config/commit/53f1603debebaa747ab541427f4cff6047f056f8))
321
+
322
+ ## [3.3.6](https://github.com/adobe/helix-config/compare/v3.3.5...v3.3.6) (2024-06-29)
323
+
324
+
325
+ ### Bug Fixes
326
+
327
+ * **deps:** update external fixes ([16468a8](https://github.com/adobe/helix-config/commit/16468a898a04da5a0a087f669a8e1922dae1257f))
328
+
329
+ ## [3.3.5](https://github.com/adobe/helix-config/compare/v3.3.4...v3.3.5) (2024-06-24)
330
+
331
+
332
+ ### Bug Fixes
333
+
334
+ * **deps:** update dependency @adobe/helix-shared-config to v10.6.0 ([#115](https://github.com/adobe/helix-config/issues/115)) ([0b0383b](https://github.com/adobe/helix-config/commit/0b0383b485a63dac8ac25044a2a73e6f3edc0d6f))
335
+
336
+ ## [3.3.4](https://github.com/adobe/helix-config/compare/v3.3.3...v3.3.4) (2024-06-24)
337
+
338
+
339
+ ### Bug Fixes
340
+
341
+ * add cloudfront cdn config to schema ([#114](https://github.com/adobe/helix-config/issues/114)) ([3f12d26](https://github.com/adobe/helix-config/commit/3f12d26c2b067435c6d9766c0f58b8aa51d43fb3))
342
+
343
+ ## [3.3.3](https://github.com/adobe/helix-config/compare/v3.3.2...v3.3.3) (2024-06-22)
344
+
345
+
346
+ ### Bug Fixes
347
+
348
+ * **deps:** update dependency jose to v5.4.1 ([2e8a7e1](https://github.com/adobe/helix-config/commit/2e8a7e1beef771b7014fd51f27dc54103a544cd9))
349
+
350
+ ## [3.3.2](https://github.com/adobe/helix-config/compare/v3.3.1...v3.3.2) (2024-06-21)
351
+
352
+
353
+ ### Bug Fixes
354
+
355
+ * use correct prefix ([#112](https://github.com/adobe/helix-config/issues/112)) ([e194a57](https://github.com/adobe/helix-config/commit/e194a571cfc5f059dbd4ac193052ddd824daa34b))
356
+
357
+ ## [3.3.1](https://github.com/adobe/helix-config/compare/v3.3.0...v3.3.1) (2024-06-21)
358
+
359
+
360
+ ### Bug Fixes
361
+
362
+ * export config merge ([#111](https://github.com/adobe/helix-config/issues/111)) ([25f9680](https://github.com/adobe/helix-config/commit/25f9680f74e9dc90a5593d042b75aa0102ebf74d))
363
+
364
+ # [3.3.0](https://github.com/adobe/helix-config/compare/v3.2.15...v3.3.0) (2024-06-21)
365
+
366
+
367
+ ### Features
368
+
369
+ * add site and profile lists ([#110](https://github.com/adobe/helix-config/issues/110)) ([98c6a61](https://github.com/adobe/helix-config/commit/98c6a6102578fb4695704e1be44f6e7321c46d4d)), closes [#84](https://github.com/adobe/helix-config/issues/84) [#85](https://github.com/adobe/helix-config/issues/85)
370
+
371
+ ## [3.2.15](https://github.com/adobe/helix-config/compare/v3.2.14...v3.2.15) (2024-06-20)
372
+
373
+
374
+ ### Bug Fixes
375
+
376
+ * legacy sites with apiKey but no allow must not authenticate ([#109](https://github.com/adobe/helix-config/issues/109)) ([421575e](https://github.com/adobe/helix-config/commit/421575eb9093820a824031695f26bbc568dd4505)), closes [#91](https://github.com/adobe/helix-config/issues/91)
377
+
378
+ ## [3.2.14](https://github.com/adobe/helix-config/compare/v3.2.13...v3.2.14) (2024-06-20)
379
+
380
+
381
+ ### Bug Fixes
382
+
383
+ * separate headers config ([#108](https://github.com/adobe/helix-config/issues/108)) ([cef56df](https://github.com/adobe/helix-config/commit/cef56df1245960f271b17c842ae379dd8ed660bb))
384
+
385
+ ## [3.2.13](https://github.com/adobe/helix-config/compare/v3.2.12...v3.2.13) (2024-06-15)
386
+
387
+
388
+ ### Bug Fixes
389
+
390
+ * **deps:** update adobe fixes ([df5fb5c](https://github.com/adobe/helix-config/commit/df5fb5c1351958e9a8e0f13326ac23e7fef2aeb0))
391
+
392
+ ## [3.2.12](https://github.com/adobe/helix-config/compare/v3.2.11...v3.2.12) (2024-06-11)
393
+
394
+
395
+ ### Bug Fixes
396
+
397
+ * folders schema ([#105](https://github.com/adobe/helix-config/issues/105)) ([94c0ec0](https://github.com/adobe/helix-config/commit/94c0ec0ab8e981046f3849a4e545a759300813e5))
398
+
399
+ ## [3.2.11](https://github.com/adobe/helix-config/compare/v3.2.10...v3.2.11) (2024-06-09)
400
+
401
+
402
+ ### Bug Fixes
403
+
404
+ * **deps:** update adobe fixes ([18b0246](https://github.com/adobe/helix-config/commit/18b02460d1a052294211ea3b309736775b09890e))
405
+
406
+ ## [3.2.10](https://github.com/adobe/helix-config/compare/v3.2.9...v3.2.10) (2024-06-08)
407
+
408
+
409
+ ### Bug Fixes
410
+
411
+ * **deps:** update external fixes ([f7265f2](https://github.com/adobe/helix-config/commit/f7265f2bd8f97b1df3a624e2f91f17b2573bb306))
412
+
413
+ ## [3.2.9](https://github.com/adobe/helix-config/compare/v3.2.8...v3.2.9) (2024-06-07)
414
+
415
+
416
+ ### Bug Fixes
417
+
418
+ * **deps:** update dependency @adobe/fetch to v4.1.8 ([#101](https://github.com/adobe/helix-config/issues/101)) ([8d67c76](https://github.com/adobe/helix-config/commit/8d67c76552861caf4bf260b9288ab494b073b66c))
419
+
420
+ ## [3.2.8](https://github.com/adobe/helix-config/compare/v3.2.7...v3.2.8) (2024-06-07)
421
+
422
+
423
+ ### Bug Fixes
424
+
425
+ * **deps:** update dependency @adobe/fetch to v4.1.4 ([2f4d326](https://github.com/adobe/helix-config/commit/2f4d326a162bc6acb5e8b03f93c01bf236588ca3))
426
+
427
+ ## [3.2.7](https://github.com/adobe/helix-config/compare/v3.2.6...v3.2.7) (2024-06-06)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * **deps:** update @adobe/helix-shared-config@10.5.0 ([66271b9](https://github.com/adobe/helix-config/commit/66271b9713486fdaa52ddaa13185741bb936f0b3))
433
+
434
+ ## [3.2.6](https://github.com/adobe/helix-config/compare/v3.2.5...v3.2.6) (2024-06-04)
435
+
436
+
437
+ ### Bug Fixes
438
+
439
+ * **deps:** update adobe fixes ([#99](https://github.com/adobe/helix-config/issues/99)) ([e3127a7](https://github.com/adobe/helix-config/commit/e3127a73b1e32ddd3a7a25b9898204dea3d92450))
440
+
441
+ ## [3.2.5](https://github.com/adobe/helix-config/compare/v3.2.4...v3.2.5) (2024-06-04)
442
+
443
+
444
+ ### Bug Fixes
445
+
446
+ * remove org users from site config ([#98](https://github.com/adobe/helix-config/issues/98)) ([ec7be79](https://github.com/adobe/helix-config/commit/ec7be790966d182917a0d3773acf35372ea4e0a1))
447
+
448
+ ## [3.2.4](https://github.com/adobe/helix-config/compare/v3.2.3...v3.2.4) (2024-06-01)
449
+
450
+
451
+ ### Bug Fixes
452
+
453
+ * **deps:** update adobe fixes ([bec0972](https://github.com/adobe/helix-config/commit/bec09726b13e015550dad2e7cd28b08b48cec80e))
454
+
455
+ ## [3.2.3](https://github.com/adobe/helix-config/compare/v3.2.2...v3.2.3) (2024-06-01)
456
+
457
+
458
+ ### Bug Fixes
459
+
460
+ * **deps:** update dependency ajv to v8.14.0 ([c39e9d5](https://github.com/adobe/helix-config/commit/c39e9d5b66b242e5d570194d5fa97a71c0bd7f66))
461
+
462
+ ## [3.2.2](https://github.com/adobe/helix-config/compare/v3.2.1...v3.2.2) (2024-05-31)
463
+
464
+
465
+ ### Bug Fixes
466
+
467
+ * refactor to separate imports ([#94](https://github.com/adobe/helix-config/issues/94)) ([2678381](https://github.com/adobe/helix-config/commit/26783813cf54740d10bb485ba98e442213effdf4))
468
+
469
+ ## [3.2.1](https://github.com/adobe/helix-config/compare/v3.2.0...v3.2.1) (2024-05-30)
470
+
471
+
472
+ ### Bug Fixes
473
+
474
+ * return created user ([#93](https://github.com/adobe/helix-config/issues/93)) ([adc2079](https://github.com/adobe/helix-config/commit/adc20791b1e55b3650cd9d873193077af4c50a7f))
475
+
476
+ # [3.2.0](https://github.com/adobe/helix-config/compare/v3.1.2...v3.2.0) (2024-05-29)
477
+
478
+
479
+ ### Features
480
+
481
+ * add support for org users storage and view ([0b65a1d](https://github.com/adobe/helix-config/commit/0b65a1df91c4271a6c2ab99fb669381207141a24))
482
+
483
+ ## [3.1.2](https://github.com/adobe/helix-config/compare/v3.1.1...v3.1.2) (2024-05-22)
484
+
485
+
486
+ ### Bug Fixes
487
+
488
+ * **deps:** update dependency @adobe/helix-shared-storage to v1.0.2 ([8576838](https://github.com/adobe/helix-config/commit/8576838602d87ba201b8ac64db8596399aa1ab95))
489
+
490
+ ## [3.1.1](https://github.com/adobe/helix-config/compare/v3.1.0...v3.1.1) (2024-05-17)
491
+
492
+
493
+ ### Bug Fixes
494
+
495
+ * correct json schema ([#88](https://github.com/adobe/helix-config/issues/88)) ([96c60e1](https://github.com/adobe/helix-config/commit/96c60e1dc009dbaad6318a083a6914c7b0f62cc7))
496
+
497
+ # [3.1.0](https://github.com/adobe/helix-config/compare/v3.0.0...v3.1.0) (2024-05-16)
498
+
499
+
500
+ ### Features
501
+
502
+ * export config storage schemas ([#87](https://github.com/adobe/helix-config/issues/87)) ([951230a](https://github.com/adobe/helix-config/commit/951230a78d5a6e07bf20963f3887e24dfe2c950d))
503
+
504
+ # [3.0.0](https://github.com/adobe/helix-config/compare/v2.18.2...v3.0.0) (2024-05-16)
505
+
506
+
507
+ ### Features
508
+
509
+ * remove unused option and enforce scope ([#86](https://github.com/adobe/helix-config/issues/86)) ([4c9d26d](https://github.com/adobe/helix-config/commit/4c9d26d5579b289adb593b2ccfeae97d5ff5e3b6))
510
+
511
+
512
+ ### BREAKING CHANGES
513
+
514
+ * ConfigContext.withFetch() was removed
515
+
516
+ ## [2.18.2](https://github.com/adobe/helix-config/compare/v2.18.1...v2.18.2) (2024-05-13)
517
+
518
+
519
+ ### Bug Fixes
520
+
521
+ * use webcrypto for better support ([#82](https://github.com/adobe/helix-config/issues/82)) ([0eb3a5b](https://github.com/adobe/helix-config/commit/0eb3a5b3ddba9a809c617e09d40f7d6ba98e0663))
522
+
523
+ ## [2.18.1](https://github.com/adobe/helix-config/compare/v2.18.0...v2.18.1) (2024-05-09)
524
+
525
+
526
+ ### Bug Fixes
527
+
528
+ * allow to set public configuration ([#80](https://github.com/adobe/helix-config/issues/80)) ([3a5b175](https://github.com/adobe/helix-config/commit/3a5b175f1afc074edd398f5a75a0c271c91ddc72))
529
+
530
+ # [2.18.0](https://github.com/adobe/helix-config/compare/v2.17.0...v2.18.0) (2024-05-09)
531
+
532
+
533
+ ### Features
534
+
535
+ * delivery token hashes for pipeline scope ([#79](https://github.com/adobe/helix-config/issues/79)) ([371c771](https://github.com/adobe/helix-config/commit/371c7718fb9592e526fcef2f76efbd0ed6a209f6))
536
+
537
+ # [2.17.0](https://github.com/adobe/helix-config/compare/v2.16.1...v2.17.0) (2024-05-08)
538
+
539
+
540
+ ### Features
541
+
542
+ * remove old access config ([#77](https://github.com/adobe/helix-config/issues/77)) ([20d9a25](https://github.com/adobe/helix-config/commit/20d9a252eb5b399f2f6dc324830748cbacbae5c3))
543
+
544
+ ## [2.16.1](https://github.com/adobe/helix-config/compare/v2.16.0...v2.16.1) (2024-05-08)
545
+
546
+
547
+ ### Bug Fixes
548
+
549
+ * properly hash global delivery token ([#78](https://github.com/adobe/helix-config/issues/78)) ([6f352ba](https://github.com/adobe/helix-config/commit/6f352ba9ed481f4d79bfb46750db3de81fb75966))
550
+
551
+ # [2.16.0](https://github.com/adobe/helix-config/compare/v2.15.1...v2.16.0) (2024-05-07)
552
+
553
+
554
+ ### Features
555
+
556
+ * add global token hash if needed ([#76](https://github.com/adobe/helix-config/issues/76)) ([ac4a139](https://github.com/adobe/helix-config/commit/ac4a139497a98302ef9627644f5b9918ee76c282))
557
+
558
+ ## [2.15.1](https://github.com/adobe/helix-config/compare/v2.15.0...v2.15.1) (2024-05-07)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * do not load org config in resolveConfig ([ccedbfd](https://github.com/adobe/helix-config/commit/ccedbfd4c7c465b842e25f9021fd5a06021e63d4))
564
+
565
+ # [2.15.0](https://github.com/adobe/helix-config/compare/v2.14.0...v2.15.0) (2024-05-07)
566
+
567
+
568
+ ### Features
569
+
570
+ * support profile for site ([#67](https://github.com/adobe/helix-config/issues/67)) ([55c09c9](https://github.com/adobe/helix-config/commit/55c09c95919ec06f047393335bdbcbcc2d187eb2))
571
+
572
+ # [2.14.0](https://github.com/adobe/helix-config/compare/v2.13.1...v2.14.0) (2024-05-07)
573
+
574
+
575
+ ### Features
576
+
577
+ * simplify token cretion on empty org ([#74](https://github.com/adobe/helix-config/issues/74)) ([327747a](https://github.com/adobe/helix-config/commit/327747a4a34e4b3ae37f732e1631a40184190b8b))
578
+
579
+ ## [2.13.1](https://github.com/adobe/helix-config/compare/v2.13.0...v2.13.1) (2024-05-07)
580
+
581
+
582
+ ### Bug Fixes
583
+
584
+ * support old configs without data ([#73](https://github.com/adobe/helix-config/issues/73)) ([bfe92bf](https://github.com/adobe/helix-config/commit/bfe92bf567af97317f69be0b43ed39cb4f1f33eb))
585
+
586
+ # [2.13.0](https://github.com/adobe/helix-config/compare/v2.12.2...v2.13.0) (2024-05-07)
587
+
588
+
589
+ ### Features
590
+
591
+ * store tokens in org config ([#72](https://github.com/adobe/helix-config/issues/72)) ([03a3a81](https://github.com/adobe/helix-config/commit/03a3a812ef1ab3147ea73447dced740dfa48555a)), closes [#69](https://github.com/adobe/helix-config/issues/69)
592
+
593
+ ## [2.12.2](https://github.com/adobe/helix-config/compare/v2.12.1...v2.12.2) (2024-05-04)
594
+
595
+
596
+ ### Bug Fixes
597
+
598
+ * **deps:** update adobe fixes ([e62fa79](https://github.com/adobe/helix-config/commit/e62fa79415c617ac250456ac03551fbae1f90766))
599
+
600
+ ## [2.12.1](https://github.com/adobe/helix-config/compare/v2.12.0...v2.12.1) (2024-05-04)
601
+
602
+
603
+ ### Bug Fixes
604
+
605
+ * **deps:** update external fixes ([81e5007](https://github.com/adobe/helix-config/commit/81e500707263690de2a8911398d64750eba91362))
606
+
607
+ # [2.12.0](https://github.com/adobe/helix-config/compare/v2.11.1...v2.12.0) (2024-05-01)
608
+
609
+
610
+ ### Features
611
+
612
+ * allow all role names ([#68](https://github.com/adobe/helix-config/issues/68)) ([5b8f990](https://github.com/adobe/helix-config/commit/5b8f990d66568bb960c157f5812e19108bb77f84))
613
+
614
+ ## [2.11.1](https://github.com/adobe/helix-config/compare/v2.11.0...v2.11.1) (2024-04-30)
615
+
616
+
617
+ ### Bug Fixes
618
+
619
+ * cleanup admin.access ([#66](https://github.com/adobe/helix-config/issues/66)) ([28b1c28](https://github.com/adobe/helix-config/commit/28b1c28a71894b98e7748f3c671e4a79879ae81b))
620
+
621
+ # [2.11.0](https://github.com/adobe/helix-config/compare/v2.10.4...v2.11.0) (2024-04-29)
622
+
623
+
624
+ ### Features
625
+
626
+ * use helix-shared-storage ([#65](https://github.com/adobe/helix-config/issues/65)) ([ec73aa6](https://github.com/adobe/helix-config/commit/ec73aa63141422239cb022251645272beab2cf14))
627
+
628
+ ## [2.10.4](https://github.com/adobe/helix-config/compare/v2.10.3...v2.10.4) (2024-04-27)
629
+
630
+
631
+ ### Bug Fixes
632
+
633
+ * **deps:** update dependency @adobe/helix-shared-config to v10.4.3 ([7ef6d67](https://github.com/adobe/helix-config/commit/7ef6d67379bece150e974b3a7c223ed50856e198))
634
+
635
+ ## [2.10.3](https://github.com/adobe/helix-config/compare/v2.10.2...v2.10.3) (2024-04-27)
636
+
637
+
638
+ ### Bug Fixes
639
+
640
+ * **deps:** update external fixes ([bc70567](https://github.com/adobe/helix-config/commit/bc7056752e7fb64a6869ab7f135b65d635d3fac0))
641
+
642
+ ## [2.10.2](https://github.com/adobe/helix-config/compare/v2.10.1...v2.10.2) (2024-04-26)
643
+
644
+
645
+ ### Bug Fixes
646
+
647
+ * export validation error ([#61](https://github.com/adobe/helix-config/issues/61)) ([68f3d74](https://github.com/adobe/helix-config/commit/68f3d7408ff88d440958fea009731878476f2888))
648
+
649
+ ## [2.10.1](https://github.com/adobe/helix-config/compare/v2.10.0...v2.10.1) (2024-04-26)
650
+
651
+
652
+ ### Bug Fixes
653
+
654
+ * consistent return from update ([bce73a1](https://github.com/adobe/helix-config/commit/bce73a1b423397afa751c15bd67ecad164bc05e1))
655
+
656
+ # [2.10.0](https://github.com/adobe/helix-config/compare/v2.9.0...v2.10.0) (2024-04-26)
657
+
658
+
659
+ ### Features
660
+
661
+ * add support to migrate jwt api keys ([#59](https://github.com/adobe/helix-config/issues/59)) ([04adf04](https://github.com/adobe/helix-config/commit/04adf04c975ee38840a56f81aac8a1609959298a))
662
+
663
+ # [2.9.0](https://github.com/adobe/helix-config/compare/v2.8.0...v2.9.0) (2024-04-25)
664
+
665
+
666
+ ### Features
667
+
668
+ * add token support ([d8e25f5](https://github.com/adobe/helix-config/commit/d8e25f58ae8b083f9fa2970d84e5ab6f03c26372)), closes [#42](https://github.com/adobe/helix-config/issues/42)
669
+
670
+ # [2.8.0](https://github.com/adobe/helix-config/compare/v2.7.1...v2.8.0) (2024-04-24)
671
+
672
+
673
+ ### Features
674
+
675
+ * add support for robots.txt ([#57](https://github.com/adobe/helix-config/issues/57)) ([dedfec3](https://github.com/adobe/helix-config/commit/dedfec38c0ff97953b71ea3d71a4547f981eb56d)), closes [#56](https://github.com/adobe/helix-config/issues/56)
676
+
677
+ ## [2.7.1](https://github.com/adobe/helix-config/compare/v2.7.0...v2.7.1) (2024-04-24)
678
+
679
+
680
+ ### Bug Fixes
681
+
682
+ * adjust regexp for modifiers map ([#55](https://github.com/adobe/helix-config/issues/55)) ([b480fbb](https://github.com/adobe/helix-config/commit/b480fbbe25215950660353aae65820c462df7004))
683
+
684
+ # [2.7.0](https://github.com/adobe/helix-config/compare/v2.6.0...v2.7.0) (2024-04-23)
685
+
686
+
687
+ ### Features
688
+
689
+ * trigger releaase ([0bfd949](https://github.com/adobe/helix-config/commit/0bfd94974e6e70fdcddd0daf24d48552e074926d))
690
+ * trigger release ([514f88a](https://github.com/adobe/helix-config/commit/514f88a8d4afeb67357d78d649d499df597944c2))
691
+
692
+ # [2.6.0](https://github.com/adobe/helix-config/compare/v2.5.5...v2.6.0) (2024-04-23)
693
+
694
+
695
+ ### Features
696
+
697
+ * validate config ([e7011df](https://github.com/adobe/helix-config/commit/e7011dfda45a13bc847e1df304a53c93c93434fb))
698
+
699
+ ## [2.5.5](https://github.com/adobe/helix-config/compare/v2.5.4...v2.5.5) (2024-04-20)
700
+
701
+
702
+ ### Bug Fixes
703
+
704
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.556.0 ([6bf3ce6](https://github.com/adobe/helix-config/commit/6bf3ce60f6647b0bf3bd6629c4bd9d2db77f363e))
705
+
706
+ ## [2.5.4](https://github.com/adobe/helix-config/compare/v2.5.3...v2.5.4) (2024-04-18)
707
+
708
+
709
+ ### Bug Fixes
710
+
711
+ * include public config in pipeline ([#51](https://github.com/adobe/helix-config/issues/51)) ([67e95b5](https://github.com/adobe/helix-config/commit/67e95b56b96e68eba468543b41266b42df9b2ad2))
712
+
713
+ ## [2.5.3](https://github.com/adobe/helix-config/compare/v2.5.2...v2.5.3) (2024-04-17)
714
+
715
+
716
+ ### Bug Fixes
717
+
718
+ * **deps:** now using @smithy/note-httphandler ([#49](https://github.com/adobe/helix-config/issues/49)) ([a94c016](https://github.com/adobe/helix-config/commit/a94c016fcc6c078346eee6051e52487133e23f03))
719
+
720
+ ## [2.5.2](https://github.com/adobe/helix-config/compare/v2.5.1...v2.5.2) (2024-04-17)
721
+
722
+
723
+ ### Bug Fixes
724
+
725
+ * **deps:** update adobe fixes ([cc232a3](https://github.com/adobe/helix-config/commit/cc232a3291ffa3c23ffdee5166008abb5c10b8de))
726
+
727
+ ## [2.5.1](https://github.com/adobe/helix-config/compare/v2.5.0...v2.5.1) (2024-04-16)
728
+
729
+
730
+ ### Bug Fixes
731
+
732
+ * use head from ref and return 404 if missing ([#47](https://github.com/adobe/helix-config/issues/47)) ([61ab5b5](https://github.com/adobe/helix-config/commit/61ab5b5b6758752c6c87cb64b02d10155a674ab6))
733
+
734
+ # [2.5.0](https://github.com/adobe/helix-config/compare/v2.4.0...v2.5.0) (2024-04-16)
735
+
736
+
737
+ ### Features
738
+
739
+ * calculate contentBusId on update ([#46](https://github.com/adobe/helix-config/issues/46)) ([85724df](https://github.com/adobe/helix-config/commit/85724dfa38738f75934d9b64cc9c01e53bd6c417))
740
+
741
+ # [2.4.0](https://github.com/adobe/helix-config/compare/v2.3.4...v2.4.0) (2024-04-15)
742
+
743
+
744
+ ### Features
745
+
746
+ * add support for raw config ([#45](https://github.com/adobe/helix-config/issues/45)) ([7e3eab3](https://github.com/adobe/helix-config/commit/7e3eab3930ba33b9e04d502e2391e26580badbe6))
747
+
748
+ ## [2.3.4](https://github.com/adobe/helix-config/compare/v2.3.3...v2.3.4) (2024-04-15)
749
+
750
+
751
+ ### Bug Fixes
752
+
753
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.554.0 ([#44](https://github.com/adobe/helix-config/issues/44)) ([da0f561](https://github.com/adobe/helix-config/commit/da0f56137c15bd551c9c18df47854884aada9e1c))
754
+
755
+ ## [2.3.3](https://github.com/adobe/helix-config/compare/v2.3.2...v2.3.3) (2024-04-11)
756
+
757
+
758
+ ### Bug Fixes
759
+
760
+ * **deps:** update external fixes ([#43](https://github.com/adobe/helix-config/issues/43)) ([5629ca4](https://github.com/adobe/helix-config/commit/5629ca4484b463bfe368904fc2f17aee4590a7b2))
761
+
762
+ ## [2.3.2](https://github.com/adobe/helix-config/compare/v2.3.1...v2.3.2) (2024-04-08)
763
+
764
+
765
+ ### Bug Fixes
766
+
767
+ * add support for granular crud ([7f1eb43](https://github.com/adobe/helix-config/commit/7f1eb434afbd809cd8fa11ba314815c0edb7cbb8)), closes [#38](https://github.com/adobe/helix-config/issues/38)
768
+
769
+ ## [2.3.1](https://github.com/adobe/helix-config/compare/v2.3.0...v2.3.1) (2024-04-06)
770
+
771
+
772
+ ### Bug Fixes
773
+
774
+ * **deps:** update dependency @aws-sdk/client-s3 to v3.550.0 ([7bb24af](https://github.com/adobe/helix-config/commit/7bb24af74c8f405e555e82eb4a53422f57c2089f))
775
+
776
+ # [2.3.0](https://github.com/adobe/helix-config/compare/v2.2.0...v2.3.0) (2024-04-04)
777
+
778
+
779
+ ### Features
780
+
781
+ * add storage api ([#36](https://github.com/adobe/helix-config/issues/36)) ([85475ce](https://github.com/adobe/helix-config/commit/85475ce91ebc42bd6f8f85e2834b54d23b8db944))
782
+
783
+ # [2.2.0](https://github.com/adobe/helix-config/compare/v2.1.0...v2.2.0) (2024-03-28)
784
+
785
+
786
+ ### Features
787
+
788
+ * add cnd.prod.route ([04ef870](https://github.com/adobe/helix-config/commit/04ef870efc8f9473d755c08573ccb2006010149a))
789
+
790
+ # [2.1.0](https://github.com/adobe/helix-config/compare/v2.0.0...v2.1.0) (2024-03-27)
791
+
792
+
793
+ ### Features
794
+
795
+ * return 404 for missing branch ([#33](https://github.com/adobe/helix-config/issues/33)) ([b3ea0f4](https://github.com/adobe/helix-config/commit/b3ea0f419f34ee0a94b02b9a67c06c64eec06d2d))
796
+
797
+ # [2.0.0](https://github.com/adobe/helix-config/compare/v1.3.3...v2.0.0) (2024-03-14)
798
+
799
+
800
+ ### Features
801
+
802
+ * refactor s3 loader abstraction ([#31](https://github.com/adobe/helix-config/issues/31)) ([086cce5](https://github.com/adobe/helix-config/commit/086cce51e76da932ed68acef095e262db0e50be5))
803
+
804
+
805
+ ### BREAKING CHANGES
806
+
807
+ * replace HelixStorage with S3Loader
808
+
809
+ ## [1.3.3](https://github.com/adobe/helix-config/compare/v1.3.2...v1.3.3) (2024-03-14)
810
+
811
+
812
+ ### Bug Fixes
813
+
814
+ * **deps:** update dependency @adobe/helix-shared-config to v10.4.0 ([21041af](https://github.com/adobe/helix-config/commit/21041af3fae285c341ee8e748c29f405e7132351))
815
+
816
+ ## [1.3.2](https://github.com/adobe/helix-config/compare/v1.3.1...v1.3.2) (2024-03-10)
817
+
818
+
819
+ ### Bug Fixes
820
+
821
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.13 ([54038c6](https://github.com/adobe/helix-config/commit/54038c66c1d6b30274a20c606e21df5af0754665))
822
+
823
+ ## [1.3.1](https://github.com/adobe/helix-config/compare/v1.3.0...v1.3.1) (2024-03-08)
824
+
825
+
826
+ ### Bug Fixes
827
+
828
+ * config locations ([#27](https://github.com/adobe/helix-config/issues/27)) ([675fde2](https://github.com/adobe/helix-config/commit/675fde2f2beb8baa694b21bbc99e8d9bb128e5c4))
829
+
830
+ # [1.3.0](https://github.com/adobe/helix-config/compare/v1.2.0...v1.3.0) (2024-03-08)
831
+
832
+
833
+ ### Features
834
+
835
+ * add surrogate keys ([#25](https://github.com/adobe/helix-config/issues/25)) ([314c627](https://github.com/adobe/helix-config/commit/314c62736bd0cf63616da9b46cbf9544b9210ae1))
836
+
837
+ # [1.2.0](https://github.com/adobe/helix-config/compare/v1.1.0...v1.2.0) (2024-03-08)
838
+
839
+
840
+ ### Features
841
+
842
+ * add json schemas and restructure content and code config ([#26](https://github.com/adobe/helix-config/issues/26)) ([b38af40](https://github.com/adobe/helix-config/commit/b38af40c8ee0812d946032ac6958c9debc30600b))
843
+
844
+ # [1.1.0](https://github.com/adobe/helix-config/compare/v1.0.3...v1.1.0) (2024-03-04)
845
+
846
+
847
+ ### Features
848
+
849
+ * add client certification DN to access config ([#24](https://github.com/adobe/helix-config/issues/24)) ([ec517e3](https://github.com/adobe/helix-config/commit/ec517e39814f0006ba993dbcbeb06043743f8609)), closes [#21](https://github.com/adobe/helix-config/issues/21)
850
+
851
+ ## [1.0.3](https://github.com/adobe/helix-config/compare/v1.0.2...v1.0.3) (2024-03-02)
852
+
853
+
854
+ ### Bug Fixes
855
+
856
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.12 ([a8b29c9](https://github.com/adobe/helix-config/commit/a8b29c9115a5391a311d375c8452e91d4b4e1777))
857
+
858
+ ## [1.0.2](https://github.com/adobe/helix-config/compare/v1.0.1...v1.0.2) (2024-02-08)
859
+
860
+
861
+ ### Bug Fixes
862
+
863
+ * add admin access config for admin scope ([#18](https://github.com/adobe/helix-config/issues/18)) ([5a3a7ea](https://github.com/adobe/helix-config/commit/5a3a7ea0220b9a8776c64cd5535de1b6cad420b7))
864
+
865
+ ## [1.0.1](https://github.com/adobe/helix-config/compare/v1.0.0...v1.0.1) (2024-02-07)
866
+
867
+
868
+ ### Bug Fixes
869
+
870
+ * **deps:** update dependency @adobe/helix-shared-config to v10.3.11 ([#17](https://github.com/adobe/helix-config/issues/17)) ([ee13fbf](https://github.com/adobe/helix-config/commit/ee13fbf36c4de16b445cab7fb54c65f1caf01236))
871
+
872
+ # 1.0.0 (2024-02-07)
873
+
874
+
875
+ ### Features
876
+
877
+ * implement config library ([a4b7466](https://github.com/adobe/helix-config/commit/a4b74669ebe95bd092784e6bdfd8996ec8dc0ec5))