Update elm-pages version in starter template.

This commit is contained in:
Dillon Kearns 2024-01-10 10:58:53 -08:00
parent e4a386738f
commit f72b251b24
5 changed files with 31 additions and 15 deletions

View File

@ -9,6 +9,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [10.0.3] - 2024-01-10
### Fixed
- Update elm-review version for an internally used rule to the latest Elm package to support newer elm-review NPM executable (fixes [#364](https://github.com/dillonkearns/elm-pages/issues/364)).
- Allow reading files with absolute paths (still reads relative path by default), see [#390](https://github.com/dillonkearns/elm-pages/issues/390).
- Fix `Scaffold.Route.preRender` - added an incorrect parameter that resulted in a compilation error in generated boilerplate.
### Changed
- Change `Scaffold.Route.preRender` to intelligently use `RouteBuilder.single` or `RouteBuilder.preRender` as appropriate
based on whether the `moduleName` to generate has any dynamic route segments in it. `Scaffold.Route.single` is therefore deprecated as obsolete and will be removed in a future release.
## [10.0.2] - 2023-09-07
### Fixed

View File

@ -9,6 +9,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
## [Unreleased]
## [3.0.11] - 2024-01-10
### Fixed
- Fix dependency versions in elm.json for starter template.
## [3.0.10] - 2024-01-10
### Fixed
@ -18,18 +24,15 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- Fix an error with scripts (`elm-pages run`) when run on Windows, see [#446](https://github.com/dillonkearns/elm-pages/issues/446).
- Remove `import FatalError` code changes in user-maintained files, see [#441](https://github.com/dillonkearns/elm-pages/issues/441).
- Update dependencies in starter template.
- Fix `Scaffold.Route.preRender` - added an incorrect parameter that resulted in a compilation error in generated boilerplate.
### Added
- Add `AddStaticRoute`
- Add `AddStaticRoute` in starter template
### Changed
- Update to Vite v5. [NodeJS version 18 or 20+ is now required](https://vitejs.dev/guide/migration#node-js-support).
- Update NPM dependencies to latest versions.
- Change `Scaffold.Route.preRender` to intelligently use `RouteBuilder.single` or `RouteBuilder.preRender` as appropriate
based on whether the `moduleName` to generate has any dynamic route segments in it. `Scaffold.Route.single` is therefore deprecated as obsolete and will be removed in a future release.
## [3.0.9] - 2023-10-24

View File

@ -1,3 +1,3 @@
export const compatibilityKey = 21;
export const packageVersion = "3.0.10";
export const packageVersion = "3.0.11";

View File

@ -11,10 +11,10 @@
"avh4/elm-color": "1.0.0",
"danfishgold/base64-bytes": "1.1.0",
"danyx23/elm-mimetype": "4.0.1",
"dillonkearns/elm-bcp47-language-tag": "1.0.1",
"dillonkearns/elm-bcp47-language-tag": "2.0.0",
"dillonkearns/elm-form": "3.0.0",
"dillonkearns/elm-markdown": "7.0.1",
"dillonkearns/elm-pages": "10.0.1",
"dillonkearns/elm-pages": "10.0.3",
"elm/browser": "1.0.2",
"elm/bytes": "1.0.8",
"elm/core": "1.0.5",
@ -31,13 +31,13 @@
"elm-community/result-extra": "2.4.0",
"jluckyiv/elm-utc-date-strings": "1.0.0",
"justinmimbs/date": "4.0.1",
"mdgriffith/elm-codegen": "3.0.0",
"miniBill/elm-codec": "2.0.0",
"mdgriffith/elm-codegen": "4.1.1",
"miniBill/elm-codec": "2.1.0",
"noahzgordon/elm-color-extra": "1.0.2",
"robinheghan/fnv1a": "1.0.0",
"rtfeldman/elm-css": "18.0.0",
"the-sett/elm-syntax-dsl": "6.0.2",
"turboMaCk/non-empty-list-alias": "1.3.1",
"turboMaCk/non-empty-list-alias": "1.4.0",
"vito/elm-ansi": "10.0.1"
},
"indirect": {
@ -49,17 +49,17 @@
"elm-community/basics-extra": "4.1.0",
"elm-community/maybe-extra": "5.3.0",
"fredcy/elm-parseint": "2.0.1",
"miniBill/elm-unicode": "1.0.3",
"miniBill/elm-unicode": "1.1.0",
"robinheghan/murmur3": "1.0.0",
"rtfeldman/elm-hex": "1.0.0",
"rtfeldman/elm-iso8601-date-strings": "1.1.4",
"stil4m/elm-syntax": "7.2.9",
"stil4m/elm-syntax": "7.3.2",
"stil4m/structured-writer": "1.0.3",
"the-sett/elm-pretty-printer": "3.0.0"
"the-sett/elm-pretty-printer": "3.1.0"
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
}
}
}

View File

@ -1,7 +1,7 @@
{
"name": "elm-pages",
"type": "module",
"version": "3.0.10",
"version": "3.0.11",
"homepage": "https://elm-pages.com",
"moduleResolution": "node",
"description": "Type-safe static sites, written in pure elm with your own custom elm-markup syntax.",