-
-
Notifications
You must be signed in to change notification settings - Fork 6
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: maraisr/diary
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.3.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: maraisr/diary
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.4.0
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 8 commits
- 13 files changed
- 1 contributor
Commits on Oct 10, 2022
-
Configuration menu - View commit details
-
Copy full SHA for 891fcd8 - Browse repository at this point
Copy the full SHA 891fcd8View commit details -
Configuration menu - View commit details
-
Copy full SHA for 9840e65 - Browse repository at this point
Copy the full SHA 9840e65View commit details -
Configuration menu - View commit details
-
Copy full SHA for 141b942 - Browse repository at this point
Copy the full SHA 141b942View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1319eaf - Browse repository at this point
Copy the full SHA 1319eafView commit details -
feat:
browserno longerenablesby default__*BREAKING CHANGE*__ In the past we enbaled anyting in the `DEBUG` localStorage key, this lead to some undesired behaviours when working with sandboxed iframes. Now we will let the you control this completely, as from what I can see the majority of folk I see, use it anyway. Still makes sense to run this for Node applications, which is left un touched. If you want the existing behaviour, just attached this before you start logging. ```ts import { enable } from 'diary'; enable(localStorage.DEBUG || 'a^'); ``` fixes: #15Configuration menu - View commit details
-
Copy full SHA for a4d95bc - Browse repository at this point
Copy the full SHA a4d95bcView commit details -
Configuration menu - View commit details
-
Copy full SHA for 974cadb - Browse repository at this point
Copy the full SHA 974cadbView commit details -
feat: simplify logging functions
__*BREAKING CHANGE*__ Log functions no longer require a message string in the first argument, this means reporters that used to tap into `extra` for the spread arguments you will now find this in the `messages` array. ```diff - const reporter: Reporter = ({ name, level, message, extra, ...rest }) + const reporter: Reporter = ({ name, level, messages, ...rest }) .. - console.log({ message, extra }); + const message = messages.shift(); + console.log({ message, extra: messages }); ``` fixes: #14Configuration menu - View commit details
-
Copy full SHA for 78334b3 - Browse repository at this point
Copy the full SHA 78334b3View commit details -
Configuration menu - View commit details
-
Copy full SHA for ba130e0 - Browse repository at this point
Copy the full SHA ba130e0View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v0.3.1...v0.4.0