@adobe/helix-shared-config 11.0.10 → 11.0.12

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 CHANGED
@@ -1,3 +1,17 @@
1
+ # [@adobe/helix-shared-config-v11.0.12](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v11.0.11...@adobe/helix-shared-config-v11.0.12) (2025-01-04)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **deps:** update external fixes ([#1040](https://github.com/adobe/helix-shared/issues/1040)) ([5425a8a](https://github.com/adobe/helix-shared/commit/5425a8a6915279cf14c28630ad7cdb615414144d))
7
+
8
+ # [@adobe/helix-shared-config-v11.0.11](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v11.0.10...@adobe/helix-shared-config-v11.0.11) (2024-12-02)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * remove unused packages (deprecated with node 22) ([#1030](https://github.com/adobe/helix-shared/issues/1030)) ([92f6a47](https://github.com/adobe/helix-shared/commit/92f6a47bc97ef06cee8385c955ffec767fa58e2a))
14
+
1
15
  # [@adobe/helix-shared-config-v11.0.10](https://github.com/adobe/helix-shared/compare/@adobe/helix-shared-config-v11.0.9...@adobe/helix-shared-config-v11.0.10) (2024-11-23)
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@adobe/helix-shared-config",
3
- "version": "11.0.10",
3
+ "version": "11.0.12",
4
4
  "description": "Shared modules of the Helix Project - config",
5
5
  "main": "src/index.js",
6
6
  "types": "src/index.d.ts",
@@ -46,9 +46,7 @@
46
46
  "fs-extra": "11.2.0",
47
47
  "ignore": "6.0.2",
48
48
  "lru-cache": "11.0.2",
49
- "object-hash": "3.0.0",
50
- "uri-js": "4.4.1",
51
- "yaml": "2.6.1"
49
+ "yaml": "2.7.0"
52
50
  },
53
51
  "devDependencies": {
54
52
  "@adobe/helix-shared-wrap": "^1.0.5",
package/src/BaseConfig.js CHANGED
@@ -9,7 +9,7 @@
9
9
  * OF ANY KIND, either express or implied. See the License for the specific language
10
10
  * governing permissions and limitations under the License.
11
11
  */
12
- import fs from 'fs-extra';
12
+ import fs from 'fs/promises';
13
13
  import path from 'path';
14
14
  import YAML from 'yaml';
15
15
  import { GitUrl } from '@adobe/helix-shared-git';