Skip to content
Open

v4 #124

Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
b121350
Update README.md
TwitchBronBron Nov 6, 2023
e3746e3
Merge branch 'master' into v4
MilapNaik Nov 17, 2023
fa8db4e
Merge branch 'master' into v4
MilapNaik Nov 29, 2023
67684d4
Adding individual interfaces (#126)
MilapNaik Dec 1, 2023
2ab649e
Merge branch 'master' into v4
TwitchBronBron Dec 1, 2023
d4c1583
Fix tests
TwitchBronBron Dec 1, 2023
63d3b7e
Remove retain staging folder which was deprecated (#130)
MilapNaik Dec 4, 2023
94492b9
Don't normalize file patterns (#131)
MilapNaik Dec 14, 2023
7a629e1
Bug with {src;dest} object handling (#135)
MilapNaik Jan 17, 2024
8af51a1
Add cli commands (#139)
MilapNaik Feb 6, 2024
4dfe850
Eliminate top index functions (#144)
MilapNaik Feb 6, 2024
e59ac91
Add cli commands and rename roku-deploy functions, reorganize functio…
TwitchBronBron Mar 20, 2024
ab389e0
Throw exceptions on missing options (#156)
MilapNaik Mar 26, 2024
9ba9034
Upgrade typescript & other packages (#157)
MilapNaik Apr 1, 2024
d29e26f
Add cwd option (#158)
MilapNaik Apr 16, 2024
1872508
Prep build.yml for alpha releases
TwitchBronBron Apr 16, 2024
54549ac
Update changelog for v4.0.0-alpha.0
TwitchBronBron Apr 16, 2024
2d04a45
4.0.0-alpha.0
TwitchBronBron Apr 16, 2024
b738829
Small tweaks to zip
TwitchBronBron Apr 16, 2024
9275636
Merge master to v4 (#163)
MilapNaik Apr 30, 2024
0ec11a7
Change documentation (#162)
MilapNaik May 1, 2024
ebfbe98
Update files array (#164)
MilapNaik May 6, 2024
8aa6800
merge master for github architecture latest changes
MilapNaik May 6, 2024
0534143
No changes made:
MilapNaik May 7, 2024
3b783e3
Enhanced logging levels (#168)
MilapNaik May 15, 2024
3479249
Add new v4 section and table of contents (#166)
MilapNaik May 16, 2024
3b04164
Update changelog for v4.0.0-alpha.1
TwitchBronBron May 17, 2024
bf28184
4.0.0-alpha.1
TwitchBronBron May 17, 2024
4fa9b5c
forgot apostrophe in readme
MilapNaik May 17, 2024
14b7eed
Add interactive remote mode (#169)
triwav Jun 10, 2024
785390b
Fix some issues in the readme
TwitchBronBron Aug 9, 2024
331e5cc
Merge branch 'master' into v4-merge-1
MilapNaik Apr 28, 2025
9dc1794
Update logger
MilapNaik Apr 29, 2025
ee86dd5
package lock fixes
chrisdp Apr 29, 2025
7770203
V4 merge 1 (#188)
TwitchBronBron Apr 29, 2025
46baa63
Merge branch 'master' into vb-merge-2
MilapNaik May 6, 2025
b93b688
V4 merge 2 (#191)
TwitchBronBron May 6, 2025
7cfc1a1
Increment version to 4.0.0-alpha.2
rokucommunity-bot[bot] Jun 2, 2025
8ee5235
Update CHANGELOG.md
TwitchBronBron Jun 2, 2025
80d183a
4.0.0-alpha.2 (#195)
TwitchBronBron Jun 2, 2025
e024d31
Merge branch 'master' into v4-merge-3
MilapNaik Jun 18, 2025
6a9d680
fix package lock
MilapNaik Jun 18, 2025
1aa552e
master into v4 - merge 3 (#199)
TwitchBronBron Jun 23, 2025
dd01c01
New args for commands (#202)
MilapNaik Nov 18, 2025
e36a627
V4 merge master (#228)
MilapNaik Jan 29, 2026
a829291
Merge branch 'master' of https://github.com/rokucommunity/roku-deploy…
TwitchBronBron Feb 23, 2026
2299fd5
Remove duplicate `setUserAgentIfMissing` tests
TwitchBronBron Feb 23, 2026
b9a1e3b
Remove duplicate `plugin_swup` tests
TwitchBronBron Feb 23, 2026
99f1f57
Fix appType tests
TwitchBronBron Feb 23, 2026
1c8e6bb
remove commented-out code
TwitchBronBron Feb 23, 2026
d6e89ba
Merge master 2 (#231)
TwitchBronBron Feb 23, 2026
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
11 changes: 9 additions & 2 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ module.exports = {
project: './tsconfig.json'
},
plugins: [
'@typescript-eslint'
'@typescript-eslint',
'import'
],
extends: [
'eslint:all',
Expand All @@ -23,6 +24,7 @@ module.exports = {
'@typescript-eslint/explicit-member-accessibility': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/init-declarations': 'off',
'@typescript-eslint/lines-around-comment': 'off',
'@typescript-eslint/member-ordering': 'off',
"@typescript-eslint/naming-convention": 'off',
'@typescript-eslint/no-base-to-string': 'off',
Expand Down Expand Up @@ -51,6 +53,9 @@ module.exports = {
'error',
'always'
],
'@typescript-eslint/parameter-properties': 'off',
'@typescript-eslint/prefer-nullish-coalescing': 'off',
"@typescript-eslint/prefer-optional-chain": 'off',
'@typescript-eslint/prefer-readonly': 'off',
'@typescript-eslint/prefer-readonly-parameter-types': 'off',
'@typescript-eslint/promise-function-async': 'off',
Expand All @@ -64,6 +69,7 @@ module.exports = {
'@typescript-eslint/require-array-sort-compare': 'off',
'@typescript-eslint/restrict-plus-operands': 'off',
'@typescript-eslint/restrict-template-expressions': 'off',
'@typescript-eslint/sort-type-constituents': 'off',
'@typescript-eslint/sort-type-union-intersection-members': 'off',
'@typescript-eslint/space-before-function-paren': 'off',
'@typescript-eslint/strict-boolean-expressions': 'off',
Expand All @@ -89,11 +95,11 @@ module.exports = {
'function-paren-newline': 'off',
'guard-for-in': 'off',
'id-length': 'off',
'import/no-duplicates': 'error',
'indent': 'off',
'init-declarations': 'off',
'line-comment-position': 'off',
'linebreak-style': 'off',
'lines-around-comment': 'off',
'lines-between-class-members': 'off',
'max-classes-per-file': 'off',
'max-depth': 'off',
Expand All @@ -111,6 +117,7 @@ module.exports = {
'no-constant-condition': 'off',
'no-console': 'off',
'no-continue': 'off',
'no-duplicate-imports': 'off',
'no-else-return': 'off',
'no-empty': 'off',
'no-implicit-coercion': 'off',
Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
node_modules
node_modules*
dist
out
.DS_Store
.tmp
.roku-deploy-staging
coverage
.nyc_output
*.zip
*.zip
36 changes: 32 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,38 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0



## [4.0.0-alpha.2](https://github.com/rokucommunity/roku-deploy/compare/4.0.0-alpha.1...v4.0.0-alpha.2) - 2025-06-02
### Added
- Add interactive remote mode ([#169](https://github.com/rokucommunity/roku-deploy/pull/169))



## [4.0.0-alpha.1](https://github.com/rokucommunity/roku-deploy/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) - 2024-05-17
### Changed
- Enhanced logging levels ([#168](https://github.com/rokucommunity/roku-deploy/pull/168))
- Update files array ([#164](https://github.com/rokucommunity/roku-deploy/pull/164))
- Change documentation ([#162](https://github.com/rokucommunity/roku-deploy/pull/162))



## [4.0.0-alpha.0](https://github.com/rokucommunity/roku-deploy/compare/v3.11.1...v4.0.0-alpha.0) - 2024-04-16
### Added
- individual interfaces for every rokuDeploy function ([#126](https://github.com/rokucommunity/roku-deploy/pull/126))
- cli commands ([#139](https://github.com/rokucommunity/roku-deploy/pull/139))
- cli commands and rename roku-deploy functions, reorganize functions ([#142](https://github.com/rokucommunity/roku-deploy/pull/142))
- cwd option ([#158](https://github.com/rokucommunity/roku-deploy/pull/158))
### Changed
- don't normalize file patterns ([#131](https://github.com/rokucommunity/roku-deploy/pull/131))
- Throw exceptions on missing options ([#156](https://github.com/rokucommunity/roku-deploy/pull/156))
- upgrade typescript & other packages ([#157](https://github.com/rokucommunity/roku-deploy/pull/157))
### Fixed
- bug with `{src;dest}` object handling ([#135](https://github.com/rokucommunity/roku-deploy/pull/135))
### Removed
- removed deprecated `retainStagingFolder` property ([#130](https://github.com/rokucommunity/roku-deploy/pull/130))
- eliminate top index functions ([#144](https://github.com/rokucommunity/roku-deploy/pull/144))



## [3.16.1](https://github.com/rokucommunity/roku-deploy/compare/3.16.0...v3.16.1) - 2025-12-05
### Added
- Add ecpSettingMode to device-info interface ([#225](https://github.com/rokucommunity/roku-deploy/pull/225))
Expand Down Expand Up @@ -532,7 +564,3 @@ chore: Update package.json repository to support provenance (#218)
## [1.0.0](https://github.com/RokuCommunity/roku-deploy/compare/v0.2.1...v1.0.0) - 2018-12-18
### Added
- support for negated globs




Loading
Loading