Граф коммитов

207 Коммитов

Автор SHA1 Сообщение Дата
Freddy Kristiansen 0a70669cc7
bump version and fix release notes (#3750)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-11-11 21:53:54 +01:00
Freddy Kristiansen b7cd45a918
Increase Get-BcArtifactUrl Performance (#3739)
When looking for the latest version of the artifacts for a specific
country, we need to fetch all artifacts in the blob storage in order to
figure out what is latest. This fix uses an approximation of latest
version number (actually the one shipping in a month) and trying to
download that (or 2 prior versions)

Additional improvements we are looking at for future optimizations:

- Use OCI artifacts for artifacts storage instead of traditional blob
storage
- Restructure artifacts in more layers to allow for partial download of
what you need in various scenarios
- Create index if artifacts to allow for querying artifacts without
reading tags/annotations

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-11-04 13:03:11 +01:00
Freddy Kristiansen 031d1a5914
Support propagateDependencies during compile (#3725)
Fixes #3538

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-10-16 10:41:49 +02:00
Freddy Kristiansen 8e33c9e10b
Version number fixes (plus a few small bugs) (#3700)
Three version number fixes:

- Bump version
- As minimum, always use the generic tag version which was available
when shipping BcContainerHelper
- Add awareness of Windows 11 24H2
- Issue 3697 Running tests fails with 401 when running on a BC25 sandbox
container with AAD authentication

Fixes #3694 
Fixes #3697

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-10-04 14:08:37 +02:00
Freddy Kristiansen 81f7c6634e
bump to 6.0.25 (#3682)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-09-26 09:12:06 +02:00
Freddy Kristiansen 018def49df
bump + use prerel (#3677)
Bump version number + use pre-release altool when running AlCops (to be
able to get runtime version of nextmajor)

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-09-23 09:52:20 +02:00
Freddy Kristiansen f4cda4615c
Bump version to 6.0.23 (#3662)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-09-09 07:52:18 +02:00
Freddy Kristiansen 681ce4c230
Bump to 6.0.22 (#3656)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-09-06 14:48:48 +02:00
Freddy Kristiansen 95e12e18f5
Nuget (#3657)
Fix regression after
https://github.com/microsoft/navcontainerhelper/pull/3610

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-09-06 11:59:33 +02:00
Freddy Kristiansen 749e4304f0
bump version to 6.0.21 (#3616)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-08-20 06:44:46 +02:00
Freddy Kristiansen 0618f7ae9a
add trustServerCertificate if the parameter exists (#3579)
Fixes #3572

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-07-06 15:34:38 +02:00
Freddy Kristiansen d6b3daee66
Ps7bugs9 (#3561)
Fixes #3560
Fixes #3559

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-05-30 11:04:06 +02:00
Freddy Kristiansen b68af9f05f
issue #3525 (#3540)
Bump version number
Fixes #3525
Dumps free disk space on container exceptions
Increase download timeout on insider or no CDN

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-05-16 13:38:47 +02:00
Freddy Kristiansen 83b96ae8d9
bump to 6.0.17 (#3517)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-04-28 09:56:42 +02:00
Freddy Kristiansen 4b5caab4f5
Small bug fixes (#3480)
Bump version to 6.0.16
Fixes #3477
Fixes #3478

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-04-10 05:10:23 +02:00
Freddy Kristiansen 65337fc69d
Issue #3467 (#3468)
Fixes #3467

Issue 3467 Can't create a backup of a container with the
Backup-BCContainerDatabases commandlet
Use PowerShell 5 in places where invoke-sqlcmd or other functions from
the SqlServer PowerShell module are used

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-04-05 13:43:47 +02:00
Freddy Kristiansen dd0cf4cc63
issue #3465 (#3466)
Fixes #3465

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-04-05 07:06:02 +02:00
Freddy Kristiansen d3c2600f35
Issue 3452 + Bump (#3453)
Fixes #3452

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-29 14:28:51 +01:00
Freddy Kristiansen f5784320e5
bump version (#3422)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-15 14:58:11 +01:00
Freddy Kristiansen 40d0c89d0e
issue 3420 and 3411 (#3421)
Fixes #3420
Use process isolation on Windows Server 2022 by default

Fixes #3411 - best explained by the following code
```powershell
$json = '{"time": "2024-03-14T16:49:31.6130000Z"}'
$obj = $json | ConvertFrom-Json
$obj.time | Out-Host
$obj.time.GetType().Name | Out-Host
```
will return
```
2024-03-14T16:49:31.6130000Z
String
```
in PowerShell 5.1, and
```
Thursday, 14 March 2024 16.49.31
DateTime
```
in PowerShell 7

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-14 20:57:32 +01:00
Freddy Kristiansen 776debf875
bump to 6.0.10 (#3414)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-13 23:32:25 +01:00
Freddy Kristiansen 621a7b23d5
bump version (#3403)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-09 15:38:05 +01:00
Freddy Kristiansen 751a4d2d47
bump version to 6.0.8 (#3396)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-03-08 10:15:23 +01:00
Freddy Kristiansen b4b554d420
version bump (#3345)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-02-19 22:09:35 +01:00
Freddy Kristiansen 775d2b1a26
bump version (#3325)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-02-02 09:13:38 +01:00
Freddy Kristiansen 3fd808973d
bump version (#3298)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2024-01-19 15:11:29 +01:00
Freddy Kristiansen c083763791
NuGet changes (#3264)
Rename appinfo cache from AppInfo.json to cache_AppInfo.json (in order
for it to be picked up by .gitignore)
Proof of concept functionality for NuGet feeds:
- Add trusted feeds to ContainerHelper settings.
- Search all trusted feeds for packages in Get-BcNuGetPackage
- Some refactoring of NuGet code
- Allow searching for Earliest, Latest, Any or Exact version of NuGet
package
- Support NuGet Versioning schema

---------

Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-12-17 13:04:52 +01:00
Freddy Kristiansen 84a4a6cf5c
bump version to 6.0.3 (#3267)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-12-07 12:18:11 +01:00
Freddy Kristiansen c031b09253
bump version number (#3251)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-11-28 15:47:58 +01:00
Freddy Kristiansen 92311ffa10
fix accesstoken type (#3211)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-10-18 14:47:42 +02:00
Freddy Kristiansen b918ae1a80
Removal of Insider SAS Token (#3166)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-09-27 15:09:36 +02:00
Freddy Kristiansen 3017eb3f4d
Bcappsperf (#3192)
Co-authored-by: freddydk <freddydk@users.noreply.github.com>
2023-09-25 16:40:23 +02:00
freddydk 9452563409 bump version 2023-07-31 07:07:46 +02:00
freddydk f30c28c81c version bump 2023-07-07 18:27:06 +02:00
Freddy Kristiansen eae8e2c2b9 add excluderuntimepackages 2023-05-21 19:18:12 +02:00
Freddy Kristiansen 8b5876ebed version bump 2023-05-16 21:23:33 +02:00
Freddy Kristiansen c4fd3d89a7 doNotUseCdn 2023-05-10 08:15:00 +02:00
Freddy Kristiansen 3540a33c5a fix new-aadapps 2023-05-07 11:00:17 +02:00
Freddy Kristiansen 2a319d03be version 5.0.0 2023-05-06 09:16:20 +02:00
Freddy Kristiansen f57728c520 update version 2023-05-02 07:28:13 +02:00
freddydk 57389dc995 version bump 2023-04-05 08:14:24 +02:00
freddydk 50416ddbb8 bump version 2023-03-30 10:10:32 +02:00
freddydk 18d0fc2ea3 version bump 2023-02-05 06:25:55 +01:00
freddydk 5c713bc9e2 version bump and release notes 2023-02-02 19:48:34 +01:00
freddydk 38b4fe6f57 version 2023-02-02 16:02:15 +01:00
freddydk 579f689465 version bump 2023-02-02 06:46:02 +01:00
freddydk b0dc5b1337 Version bump 2023-01-11 09:37:05 +01:00
freddydk e705cd5cee version bump 2023-01-11 05:43:04 +01:00
freddydk ca48478e1f 4.0.9 2023-01-07 09:07:01 +01:00
freddydk 55bdb076c2 bump version 2022-12-07 11:44:41 +01:00