Releases: fluent-labs/api
1.5.64: Process tokens into lowercase
We don't have definition results in uppercase, but users may type them in. Let's smarten this up by providing a definition service lookup key.
1.5.63: HSK difficulty level
Generalized interface for getting difficulties. Chose CEFR for setting difficulties in a way that can be shared across all languages.
1.5.62: Bump dorny/paths-filter from v2.7.0 to v2.8.0
Bumps dorny/paths-filter from v2.7.0 to v2.8.0.
Commits
7c0f15bUpdate CHANGELOGcbc3287Merge pull request #65 from dorny/add-count-outputa273049Add test for${FILTER_NAME}_countoutputc2766acAdd${FILTER_NAME}_countoutput363576bMerge pull request #61 from tun0/fix-groupingb1a097eRebuild dist/index.js2c79a82Fix grouping- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
1.5.61: Github actions was down yesterday. Let's redeploy
- Retest the PR
- Deploy when ready
1.5.60: Fall back to google cloud when language service fails
We don't want Google cloud to be our main source, but it's good to have as an alternative. It's better than an outage.
1.5.59: Readability changes in document service
- Words are returned in the query order.
- Definitions are not looked up when parsing a document.
- Definitions can be looked up in bulk.
1.5.58: Don't return unrelated words from some sources
Webster will try to be smart and give words we didn't ask for. Let's stop any source from doing that.
1.5.57: Properly implement cors
- Local and prod can connect to api
- Respond to
OPTIONSrequests
1.5.56: Switch domain and audience.
They are switched in environment variables
1.5.55: Authentication using Auth0
- Auth0 generates JWT tokens, which are sent by the frontend
- Backend validates them and sees what they are authorized for
- Tester endpoint for checking if auth is valid
Right now nothing is authenticated because nothing can generate tokens.