Skip to content

Commit 0a10c62

Browse files
authored
Merge branch 'master' into dev/jorobich/update-sdks
2 parents 3f73918 + 78a5e81 commit 0a10c62

File tree

2 files changed

+19
-13
lines changed

2 files changed

+19
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# Changelog
22
All changes to the project will be documented in this file.
33

4+
## [1.39.14] - 2025-09-01
5+
* Update Roslyn to 4.14.0-3.25168.13 (PR: [#2664](https://github.com/OmniSharp/omnisharp-roslyn/pull/2664))
6+
47
## [1.39.13] - 2024-12-31
58
* Update Roslyn to 4.13.0-3.24620.4 (PR: [#2642](https://github.com/OmniSharp/omnisharp-roslyn/pull/2642))
69

azure-pipelines.yml

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ stages:
3939
jobs:
4040
- job: GitVersion
4141
pool:
42-
vmImage: "windows-2019"
42+
vmImage: "windows-latest"
4343
steps:
4444
- template: gitversion/store.yml@rsg
4545
parameters:
@@ -48,7 +48,7 @@ stages:
4848

4949
- job: CreateTag
5050
pool:
51-
vmImage: "ubuntu-latest"
51+
vmImage: "ubuntu-22.04"
5252
dependsOn: GitVersion
5353
steps:
5454
- checkout: self
@@ -82,7 +82,7 @@ stages:
8282
jobs:
8383
- job: GitVersion
8484
pool:
85-
vmImage: "windows-2019"
85+
vmImage: "windows-latest"
8686
steps:
8787
- template: gitversion/store.yml@rsg
8888
parameters:
@@ -114,6 +114,8 @@ stages:
114114
pool:
115115
vmImage: "ubuntu-22.04"
116116
dependsOn: GitVersion
117+
variables:
118+
CLR_OPENSSL_VERSION_OVERRIDE: 1.1
117119
steps:
118120
- template: ./.pipelines/init.yml
119121
parameters:
@@ -149,7 +151,7 @@ stages:
149151

150152
- job: Release
151153
pool:
152-
vmImage: "ubuntu-latest"
154+
vmImage: "windows-latest"
153155
dependsOn:
154156
- macOS
155157
- Linux
@@ -190,15 +192,16 @@ stages:
190192
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
191193
publishVstsFeed: Builds/omnisharp
192194
allowPackageConflicts: true
193-
- task: NuGetCommand@2
194-
displayName: "Push NuGet packages to nuget.org"
195-
inputs:
196-
command: push
197-
nuGetFeedType: external
198-
packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
199-
publishFeedCredentials: nuget.org
200-
allowPackageConflicts: true
201-
condition: and(succeeded(), eq(variables.IsOfficialRelease, true))
195+
# Re-enable once we have an updated PAT
196+
# - task: NuGetCommand@2
197+
# displayName: "Push NuGet packages to nuget.org"
198+
# inputs:
199+
# command: push
200+
# nuGetFeedType: external
201+
# packagesToPush: "$(System.ArtifactsDirectory)/nuget/**/*.nupkg"
202+
# publishFeedCredentials: nuget.org
203+
# allowPackageConflicts: true
204+
# condition: and(succeeded(), eq(variables.IsOfficialRelease, true))
202205
- task: GitHubRelease@1
203206
displayName: "GitHub release (edit)"
204207
inputs:

0 commit comments

Comments
 (0)