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

TINY-10275: Removed clipboard effects #134

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## 13.6.0 - 2023-10-16
### Removed
- Removed `/clipboard` effects. #TINY-10275

## Improved
## 13.6.0 - 2023-10-16

### Improved
- Urls like `/project/node_modules` and `/project/<package name>/node_modules` are now using node package resolve to serve files. #TINY-10281

## 13.5.0 - 2023-07-11
Expand Down
38 changes: 0 additions & 38 deletions modules/sample/src/test/ts/client/ClipboardTest.ts

This file was deleted.

Binary file removed modules/server/bin/wink.exe
Binary file not shown.
3 changes: 0 additions & 3 deletions modules/server/src/main/ts/bedrock/server/Apis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import { Browser } from 'webdriverio';
import { Attempt } from '../core/Attempt';
import * as Coverage from '../core/Coverage';
import * as Waiter from '../util/Waiter';
import * as ClipboardEffects from './ClipboardEffects';
import * as Controller from './Controller';
import { DriverMaster } from './DriverMaster';
import * as KeyEffects from './KeyEffects';
Expand Down Expand Up @@ -137,8 +136,6 @@ export const create = (master: DriverMaster | null, maybeDriver: Attempt<any, Br
c.recordDone(data.session, data.error);
return Promise.resolve();
}),
// This does not need the webdriver.
Routes.effect('POST', '/clipboard', ClipboardEffects.route(basedir, projectdir))
];

return {
Expand Down
35 changes: 0 additions & 35 deletions modules/server/src/main/ts/bedrock/server/ClipboardEffects.ts

This file was deleted.