Skip to content

Commit

Permalink
Merge pull request desktop#17306 from desktop/releases/3.3.0
Browse files Browse the repository at this point in the history
Release 3.3.0
  • Loading branch information
tidy-dev authored Aug 30, 2023
2 parents 0d03fac + c71dec4 commit d03d021
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"productName": "GitHub Desktop",
"bundleID": "com.github.GitHubClient",
"companyName": "GitHub, Inc.",
"version": "3.2.10-beta2",
"version": "3.3.0",
"main": "./main.js",
"repository": {
"type": "git",
Expand Down
4 changes: 2 additions & 2 deletions app/src/lib/feature-flag.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export function enablePullRequestQuickView(): boolean {
}

export function enableMoveStash(): boolean {
return enableBetaFeatures()
return true
}

export const enableCustomGitUserAgent = enableBetaFeatures
Expand All @@ -103,4 +103,4 @@ export function enableSectionList(): boolean {
return enableBetaFeatures()
}

export const enableRepoRulesBeta = enableBetaFeatures
export const enableRepoRulesBeta = () => true
13 changes: 13 additions & 0 deletions changelog.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
{
"releases": {
"3.3.0": [
"[New] Initial support for repository rules - #16707",
"[Fixed] Recreate stash after renaming branch - #16442",
"[Fixed] Fix loop creating a new repository that already exists, or trying to add a repository that doesn't exist - #17262",
"[Fixed] Allow cloning repositories that have git as a suffix - #17221",
"[Fixed] Fix accessibility semantics of root items of the app menu bar - #17254",
"[Fixed] Double clicking the checkbox of a changed file does not open that file in the external editor - #17229",
"[Fixed] Expand buttons in the diff are keyboard navigable. - #17212",
"[Improved] Improve light mode color contrast of lines added and deleted - #17206",
"[Improved] Dropdown select buttons have aria attributes - #17271",
"[Improved] Dropdown select button menu items are keyboard navigable and have aria attributes - #17271",
"[Improved] Prevent interrupting verbose announcements of branch count on branch dropdown open for screen reader users - #17225"
],
"3.2.10-beta2": [
"[Fixed] Fix loop creating a new repository that already exists, or trying to add a repository that doesn't exist - #17262",
"[Fixed] Allow cloning repositories that have git as suffix - #17221",
Expand Down

0 comments on commit d03d021

Please sign in to comment.