Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v1.34.0 #2537

Merged
merged 33 commits into from
Mar 5, 2023
Merged

v1.34.0 #2537

Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
66c6c21
Bump ws from 8.11.0 to 8.12.0
dependabot[bot] Jan 23, 2023
cf7baf9
Merge pull request #2461 from keesschollaart81/dependabot/npm_and_yar…
frenck Jan 23, 2023
44ece1d
Bump utf-8-validate from 5.0.10 to 6.0.1 (#2463)
dependabot[bot] Jan 23, 2023
60acf3d
Bump axios from 1.2.2 to 1.2.3 (#2465)
dependabot[bot] Jan 24, 2023
88a3330
Bump prettier from 2.8.1 to 2.8.3 (#2468)
dependabot[bot] Jan 25, 2023
e0c1abc
Bump axios from 1.2.3 to 1.2.4 in /src/language-service (#2471)
dependabot[bot] Jan 25, 2023
bec3f5f
Bump axios from 1.2.3 to 1.2.4 (#2472)
dependabot[bot] Jan 26, 2023
c4f0140
Bump axios from 1.2.4 to 1.2.5 in /src/language-service (#2474)
dependabot[bot] Jan 27, 2023
e188be2
Bump axios from 1.2.5 to 1.2.6 in /src/language-service (#2475)
dependabot[bot] Jan 30, 2023
2e24e82
Bump typescript from 4.9.4 to 4.9.5 in /src/language-service (#2479)
dependabot[bot] Jan 31, 2023
88f576e
Bump axios from 1.2.6 to 1.3.0 in /src/language-service (#2480)
dependabot[bot] Feb 1, 2023
a01f81f
Bump axios from 1.3.0 to 1.3.1 in /src/language-service (#2481)
dependabot[bot] Feb 2, 2023
774def7
Update range type option in conversation module (#2482)
michaelblight Feb 3, 2023
87db380
Bump axios from 1.3.1 to 1.3.2 in /src/language-service (#2486)
dependabot[bot] Feb 6, 2023
23df28c
Bump @types/node from 18.11.18 to 18.11.19 in /src/language-service (…
dependabot[bot] Feb 6, 2023
a873b72
Bump prettier from 2.8.3 to 2.8.4 in /src/language-service (#2490)
dependabot[bot] Feb 8, 2023
97d920f
Bump @types/node from 18.11.19 to 18.13.0 in /src/language-service (#…
dependabot[bot] Feb 8, 2023
fdb21a1
Bump axios from 1.3.2 to 1.3.3 in /src/language-service (#2495)
dependabot[bot] Feb 15, 2023
47c66d3
Bump ws from 8.12.0 to 8.12.1 in /src/language-service (#2494)
dependabot[bot] Feb 15, 2023
13d96f3
Bump axios from 1.3.3 to 1.3.4 in /src/language-service (#2506)
dependabot[bot] Feb 23, 2023
93afa12
Bump @types/node from 18.13.0 to 18.14.2 in /src/language-service (#2…
dependabot[bot] Feb 27, 2023
8b6b506
Bump utf-8-validate from 6.0.1 to 6.0.3 (#2514)
dependabot[bot] Feb 27, 2023
424a6c4
Bump lint-staged from 13.1.0 to 13.1.2 (#2519)
dependabot[bot] Mar 1, 2023
301e459
Bump rimraf from 3.0.2 to 4.2.0 (#2526)
dependabot[bot] Mar 5, 2023
a3410a1
Bump rimraf from 3.0.2 to 4.2.0 in /src/language-service (#2528)
dependabot[bot] Mar 5, 2023
7423d03
Bump typescript from 4.9.4 to 4.9.5 (#2520)
dependabot[bot] Mar 5, 2023
146de24
Add support for reloading ALL (#2530)
frenck Mar 5, 2023
4447f9f
Add author support to Blueprints (#2533)
frenck Mar 5, 2023
a9cdb3b
Fix enable_days -> enable_day (#2534)
frenck Mar 5, 2023
9eab0e6
Remove old style group snippets (#2535)
frenck Mar 5, 2023
2f672ea
Remove old style sensor snippets (#2536)
frenck Mar 5, 2023
440ecbd
Bump version to v1.34.0
frenck Mar 5, 2023
80d1e39
Bump version to v1.34.0
frenck Mar 5, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update range type option in conversation module (#2482)
Co-authored-by: Franck Nijhof <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Mark Spain <[email protected]>
Co-authored-by: Reinhard <[email protected]>
  • Loading branch information
5 people authored Feb 3, 2023
commit 774def791f3dfcd02b9d635af174365f7cb2cd6b
Original file line number Diff line number Diff line change
@@ -70,7 +70,7 @@ export interface CustomSentence {
}
| {
range: {
type: "number" | "percentage" | "temperature";
type?: "number" | "percentage" | "temperature";
from: number;
to: number;
};