Skip to content

Commit d730d68

Browse files
committed
v0.61.0-beta - 2022-08-17
1 parent c9d238d commit d730d68

File tree

5 files changed

+46
-25
lines changed

5 files changed

+46
-25
lines changed

CHANGELOG.md

+33
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,39 @@ HydePHP consists of two primary components, Hyde/Hyde and Hyde/Framework. Develo
1515

1616
<!-- CHANGELOG_START -->
1717

18+
## [v0.61.0-beta](https://github.com/hydephp/develop/releases/tag/v0.61.0-beta) - 2022-08-17
19+
20+
### About
21+
22+
Creates a new foundation class, the FileCollection. Which like the other foundation collections, discovers all the files. Running this part of the autodiscovery will further enrich the Hyde Kernel, and allow greater insight into the application. The end user experience should not be affected by this.
23+
24+
### Added
25+
- Adds a new FileCollection class to hold all discovered source and asset files
26+
- Adds a new File model as an object-oriented way of representing a project file
27+
28+
### Changed
29+
- Move class PageCollection into Foundation namespace
30+
- Move class RouteCollection into Foundation namespace
31+
32+
### Fixed
33+
- Fix [#424](https://github.com/hydephp/develop/issues/424) AbstractMarkdownPage save method should use Hyde::path()
34+
35+
### Upgrade guide
36+
37+
#### Collection namespace change
38+
39+
> You only need to do this if you have written custom code that uses the old namespace.
40+
41+
To upgrade the moved collection namespaces, simply replace the following namespace imports:
42+
43+
```diff
44+
-use Hyde\Framework\PageCollection;
45+
+use Hyde\Framework\Foundation\PageCollection;
46+
-use Hyde\Framework\RouteCollection;
47+
+use Hyde\Framework\Foundation\RouteCollection;
48+
```
49+
50+
1851
## [v0.60.0-beta](https://github.com/hydephp/develop/releases/tag/v0.60.0-beta) - 2022-08-12
1952

2053
### About

RELEASE_NOTES.md

+9-21
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,18 @@
22

33
### About
44

5-
Creates a new foundation class, the FileCollection. Which like the other foundation collections, discovers all the files. Running this part of the autodiscovery will further enrich the Hyde Kernel, and allow greater insight into the application. The end user experience should not be affected by this.
5+
Keep an Unreleased section at the top to track upcoming changes.
6+
7+
This serves two purposes:
8+
9+
1. People can see what changes they might expect in upcoming releases
10+
2. At release time, you can move the Unreleased section changes into a new release version section.
611

712
### Added
8-
- Adds a new FileCollection class to hold all discovered source and asset files
9-
- Adds a new File model as an object-oriented way of representing a project file
13+
- for new features.
1014

1115
### Changed
12-
- Move class PageCollection into Foundation namespace
13-
- Move class RouteCollection into Foundation namespace
16+
- for changes in existing functionality.
1417

1518
### Deprecated
1619
- for soon-to-be removed features.
@@ -19,22 +22,7 @@ Creates a new foundation class, the FileCollection. Which like the other foundat
1922
- for now removed features.
2023

2124
### Fixed
22-
- Fix [#424](https://github.com/hydephp/develop/issues/424) AbstractMarkdownPage save method should use Hyde::path()
25+
- for any bug fixes.
2326

2427
### Security
2528
- in case of vulnerabilities.
26-
27-
### Upgrade guide
28-
29-
#### Collection namespace change
30-
31-
> You only need to do this if you have written custom code that uses the old namespace.
32-
33-
To upgrade the moved collection namespaces, simply replace the following namespace imports:
34-
35-
```diff
36-
-use Hyde\Framework\PageCollection;
37-
+use Hyde\Framework\Foundation\PageCollection;
38-
-use Hyde\Framework\RouteCollection;
39-
+use Hyde\Framework\Foundation\RouteCollection;
40-
```

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
},
88
"name": "hyde",
99
"description": "Elegant and Powerful Static App Builder",
10-
"version": "0.60.0",
10+
"version": "0.61.0",
1111
"main": "hyde",
1212
"directories": {
1313
"test": "tests"

packages/hyde/composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
],
2222
"require": {
2323
"php": "^8.0",
24-
"hyde/framework": "^0.60",
24+
"hyde/framework": "^0.61",
2525
"laravel-zero/framework": "^9.1"
2626
},
2727
"require-dev": {

0 commit comments

Comments
 (0)