Skip to content

Commit

Permalink
allow to undo tags merge strategy
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarotero committed Sep 27, 2024
1 parent 2d75fa2 commit 9bea786
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,10 @@ Go to the `v1` branch to see the changelog of Lume 1.
## [2.3.3] - Unreleased
### Added
- Basic auth middleware: Added `errorMessage` option.
- Added "none" merge strategy to reset a previously defined strategy.

### Fixed
- When using special value `git created` for `date` variable, it will fall back to `git modified` first, then filesystem last modified date.
- When using special value `git created` for `date` variable, it will fall back to `git modified` first, then filesystem last modified date #667.
- Updated dependencies: `linkedom`, `sass`, `satori`, `terser`, `liquidjs`, `tailwind`, `date-fns`, `std`, `esbuild`, `preact`, `lightningcss`, `postcss`, `remark-rehype`, `react` types, `unocss`.

## [2.3.2] - 2024-09-10
Expand Down
2 changes: 1 addition & 1 deletion core/utils/merge_data.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
export type MergeStrategy = "array" | "stringArray" | "object";
export type MergeStrategy = "array" | "stringArray" | "object" | "none";

interface DataToMerge {
mergedKeys?: Record<string, MergeStrategy>;
Expand Down

0 comments on commit 9bea786

Please sign in to comment.