Skip to content

Commit 5d28102

Browse files
committed
HydePHP v1.4.0 - 2023-12-11
1 parent 9a34d94 commit 5d28102

File tree

3 files changed

+28
-16
lines changed

3 files changed

+28
-16
lines changed

CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,29 @@ HydePHP consists of two primary components, Hyde/Hyde and Hyde/Framework. Develo
1717

1818
<!-- CHANGELOG_START -->
1919

20+
## [1.4.0](https://github.com/hydephp/develop/releases/tag/1.4.0) - 2023-12-11
21+
### Added
22+
- Adds a new fancy output for the realtime compiler serve command in https://github.com/hydephp/develop/pull/1444
23+
- Added support for dot notation in the Yaml configuration files in https://github.com/hydephp/develop/pull/1478
24+
- Added a config option to customize automatic sidebar navigation group names in https://github.com/hydephp/develop/pull/1481
25+
- Added a new `hyde serve --open` option to automatically open the site in the browser in https://github.com/hydephp/develop/pull/1483
26+
27+
### Changed
28+
- The `docs.sidebar.footer` config option now accepts a Markdown string to replace the default footer in https://github.com/hydephp/develop/pull/1477
29+
- Links in the `sitemap.xml` file are now relative when a site URL is not set, instead of using the default localhost URL in https://github.com/hydephp/develop/pull/1479
30+
- Improves the portability of the realtime compiler to better support running through the standalone executable in https://github.com/hydephp/develop/pull/1488
31+
- Bumps realtime compiler version to v3.2 in https://github.com/hydephp/develop/pull/1489
32+
### Removed
33+
- Removed unhelpful boilerplate from the `hyde/hyde` `package.json` in https://github.com/hydephp/develop/pull/1436
34+
35+
### Fixed
36+
- Fixed dot notation in Yaml configuration not being expanded (https://github.com/hydephp/develop/issues/1471) in https://github.com/hydephp/develop/pull/1478
37+
### Internal
38+
39+
- Internal: Only inject custom app config location when missing from parent in https://github.com/hydephp/develop/pull/1485
40+
- Internal: Remove experimental Phar support from internal configuration loader in https://github.com/hydephp/develop/pull/1485
41+
42+
2043
## [1.3.0](https://github.com/hydephp/develop/releases/tag/1.3.0) - 2023-10-30
2144
### Added
2245
- Added support for setting custom content when calling source file creator actions directly in https://github.com/hydephp/develop/pull/1393

RELEASE_NOTES.md

+4-15
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,19 @@ This serves two purposes:
1010
2. At release time, you can move the Unreleased section changes into a new release version section.
1111

1212
### Added
13-
- Adds a new fancy output for the realtime compiler serve command in https://github.com/hydephp/develop/pull/1444
14-
- Added support for dot notation in the Yaml configuration files in https://github.com/hydephp/develop/pull/1478
15-
- Added a config option to customize automatic sidebar navigation group names in https://github.com/hydephp/develop/pull/1481
16-
- Added a new `hyde serve --open` option to automatically open the site in the browser in https://github.com/hydephp/develop/pull/1483
13+
- for new features.
1714

1815
### Changed
19-
- The `docs.sidebar.footer` config option now accepts a Markdown string to replace the default footer in https://github.com/hydephp/develop/pull/1477
20-
- Links in the `sitemap.xml` file are now relative when a site URL is not set, instead of using the default localhost URL in https://github.com/hydephp/develop/pull/1479
21-
- Improves the portability of the realtime compiler to better support running through the standalone executable in https://github.com/hydephp/develop/pull/1488
22-
- Bumps realtime compiler version to v3.2 in https://github.com/hydephp/develop/pull/1489
16+
- for changes in existing functionality.
2317

2418
### Deprecated
2519
- for soon-to-be removed features.
2620

2721
### Removed
28-
- Removed unhelpful boilerplate from the `hyde/hyde` `package.json` in https://github.com/hydephp/develop/pull/1436
22+
- for now removed features.
2923

3024
### Fixed
31-
- Fixed dot notation in Yaml configuration not being expanded (https://github.com/hydephp/develop/issues/1471) in https://github.com/hydephp/develop/pull/1478
25+
- for any bug fixes.
3226

3327
### Security
3428
- in case of vulnerabilities.
35-
36-
### Internal
37-
38-
- Internal: Only inject custom app config location when missing from parent in https://github.com/hydephp/develop/pull/1485
39-
- Internal: Remove experimental Phar support from internal configuration loader in https://github.com/hydephp/develop/pull/1485

packages/framework/src/Foundation/HydeKernel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ class HydeKernel implements SerializableContract
4949
use Serializable;
5050
use Macroable;
5151

52-
final public const VERSION = '1.3.4';
52+
final public const VERSION = '1.4.0';
5353

5454
protected static self $instance;
5555

0 commit comments

Comments
 (0)