From 86111ba7ed3aaeec3cde84ac1bc4d42e2726bf06 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sat, 25 Jun 2022 17:27:42 +0200 Subject: [PATCH 1/3] Create collections.md From 77a64028f3e81a8dc9bb965943b573e09ab45725 Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sat, 25 Jun 2022 17:27:45 +0200 Subject: [PATCH 2/3] Update CHANGELOG.md From 0061627d0b8dad72067330e32372a04f530b5c6c Mon Sep 17 00:00:00 2001 From: Caen De Silva Date: Sat, 25 Jun 2022 17:30:56 +0200 Subject: [PATCH 3/3] v0.43.0-beta - 2022-06-25 - File-based Collections ## v0.43.0-beta - 2022-06-25 - File-based Collections ### Added - Added configuration option `hyde.media_extensions` to allow you to specify additional comma separated media file types. https://github.com/hydephp/develop/issues/39 - Adds a safer config option `hyde.output_directory` for customizing the output directory - Adds a file-based way to create and interact with collections, https://hydephp.com/docs/master/collections ### Removed - Removed the `--pretty` build command option which was deprecated in v0.25.x - Removed deprecated internal AssetManager trait which was replaced with the Asset facade ### Fixed - HydeRC: Fixes a bug in the auxiliary exception handler leading to unintentional recursion causing out of memory errors in both the browser and the PHP server. --- CHANGELOG.md | 32 ++++++++++++++++++++++++++------ package-lock.json | 4 ++-- package.json | 2 +- packages/hyde/composer.json | 2 +- 4 files changed, 30 insertions(+), 10 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aef5a1bd57f..0858b222b4c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,18 +22,22 @@ This serves two purposes: 2. At release time, you can move the Unreleased section changes into a new release version section. ### Added -- Added configuration option `hyde.media_extensions` to allow you to specify additional comma separated media file types. https://github.com/hydephp/develop/issues/39 -- Adds a safer config option `hyde.output_directory` for customizing the output directory -- Adds a file-based way to create and interact with collections, https://hydephp.com/docs/master/collections +- for new features. +### Changed +- for changes in existing functionality. + +### Deprecated +- for soon-to-be removed features. ### Removed -- Removed the `--pretty` build command option which was deprecated in v0.25.x -- Removed deprecated internal AssetManager trait which was replaced with the Asset facade +- for now removed features. ### Fixed -- HydeRC: Fixes a bug in the auxiliary exception handler leading to unintentional recursion causing out of memory errors in both the browser and the PHP server. +- for any bug fixes. +### Security +- in case of vulnerabilities. @@ -44,6 +48,22 @@ This serves two purposes: +## v0.43.0-beta - 2022-06-25 - File-based Collections + +### Added +- Added configuration option `hyde.media_extensions` to allow you to specify additional comma separated media file types. https://github.com/hydephp/develop/issues/39 +- Adds a safer config option `hyde.output_directory` for customizing the output directory +- Adds a file-based way to create and interact with collections, https://hydephp.com/docs/master/collections + + +### Removed +- Removed the `--pretty` build command option which was deprecated in v0.25.x +- Removed deprecated internal AssetManager trait which was replaced with the Asset facade + +### Fixed +- HydeRC: Fixes a bug in the auxiliary exception handler leading to unintentional recursion causing out of memory errors in both the browser and the PHP server. + + ## v0.42.0-beta - 2022-06-24 ### Added diff --git a/package-lock.json b/package-lock.json index 1684ce6972e..236983c5b5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "hyde", - "version": "0.42.0", + "version": "0.43.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "hyde", - "version": "0.42.0", + "version": "0.43.0", "license": "MIT", "devDependencies": { "@tailwindcss/typography": "^0.5.2", diff --git a/package.json b/package.json index fcdcaa40506..7bfad0e0109 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "dependencies": {}, "name": "hyde", "description": "Elegant and Powerful Static App Builder", - "version": "0.42.0", + "version": "0.43.0", "main": "hyde", "directories": { "test": "tests" diff --git a/packages/hyde/composer.json b/packages/hyde/composer.json index 54a0b874cb6..73f5729337f 100644 --- a/packages/hyde/composer.json +++ b/packages/hyde/composer.json @@ -21,7 +21,7 @@ ], "require": { "php": "^8.0", - "hyde/framework": "^0.42" + "hyde/framework": "^0.43" }, "require-dev": { "mockery/mockery": "^1.4.4",