Skip to content

Instantly share code, notes, and snippets.

@marcj
Last active July 19, 2022 19:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save marcj/a795b11f47d26721eaba539169a6a4f5 to your computer and use it in GitHub Desktop.
Save marcj/a795b11f47d26721eaba539169a6a4f5 to your computer and use it in GitHub Desktop.
From previous released tag to latest tag:
PREVIOUS=`git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1)`
CURREN_TAG=`git describe --abbrev=0 --tags`
git log --format="%h - %s <%an>" "$PREVIOUS..$CURREN_TAG"
Format:
git log --format="%h - %s <%an>" "1.2.0..master"
```
297f89e - scaleToFix makes now sure that the layer never overlaps the page dimensions <Marc J. Schmidt>
aebfdf7 - allow to choose multiple times the same file in image file input <Marc J. Schmidt>
f729f52 - fixed placeholder loading the right way <Marc J. Schmidt>
```
git log --date=short --format="%cd %h - %s" "$version..master"
```
2018-08-10 297f89e - scaleToFix makes now sure that the layer never overlaps the page dimensions
2018-08-10 aebfdf7 - allow to choose multiple times the same file in image file input
2018-08-10 f729f52 - fixed placeholder loading the right way
```
git log --date=short --format="%h - %s [%an]" "v1.0.1-alpha.73..master"
```
27f7ec2d - fix(framework): app:config now creates a table that does not overflow (#309) [Tim van Dam]
76aa7166 - fix(http): fix route resolving for routes taking no params (#306) [Char2s]
da9e415c - fix(http): do not use JSONResponse/HTMLResponse runtime types for serialisation [Marc J. Schmidt]
8b347fc7 - chore(type): add test for exported type string literals [Marc J. Schmidt]
291c96c0 - fix(type): same-type check for enum, fixes multiple enums in unions. [Marc J. Schmidt]
81d998c5 - chore(type): add test for camel case naming strategy. [Marc J. Schmidt]
3d8442e1 - Merge branch 'master' of github.com:deepkit/deepkit-framework [Marc J. Schmidt]
aa19caba - fix(type): support `readonly T` expression. [Marc J. Schmidt]
5d33aa03 - chore: add dark mode/white deepkit logo to README (#310) [Tim van Dam]
a8265b05 - fix(type): isFunction for minimised class expressions [Marc J. Schmidt]
c2400a65 - feature(type): support static reflection [Marc J. Schmidt]
20cb35fa - fix(type): correct use of readonly keyword on constructor properties [Marc J. Schmidt]
293a335a - fix(type-compiler): decorating export default async functions correctly [Marc J. Schmidt]
aefc2ac7 - fix(http): disable stream test [Marc J. Schmidt]
fe633da5 - fix(sql): delete query correctly serialises constraint [Marc J. Schmidt]
e56a5af5 - fix(framework): setup logger correctly in createTestingApp [Marc J. Schmidt]
```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment