8f083f8d4cf91f5eb8b67674eea3e9be0179d2ef
6924
Commits
| Author | SHA1 | Message | Date | |
|---|---|---|---|---|
|
|
8f083f8d4c |
Move JS deps to devDependencies (#10155)
Many of these dependencies are only used in development. |
||
|
|
4c365caa9d |
Add SLA to monthly accounting, and shift creation time back (#10169)
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [ ] Documented any API changes (docs/Using-Fleet/REST-API.md or docs/Contributing/API-for-contributors.md) - [ ] Documented any permissions changes - [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for new osquery data ingestion features. - [ ] Added/updated tests - [ ] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [ ] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [ ] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)). |
||
|
|
69c52595a3 |
Update 4.28.0 release post (#10166)
Changes: - Fixed the `articleImageUrl` meta value of the 4.28.0 release notes - Replaced a link to an image - replaced links to youtube videos with embedded video players |
||
|
|
f8eea0ad59 |
Create 4.28.0 release notes (#10153)
Issue: https://github.com/fleetdm/fleet/issues/9913 # Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [ ] Documented any API changes (docs/Using-Fleet/REST-API.md or docs/Contributing/API-for-contributors.md) - [ ] Documented any permissions changes - [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for new osquery data ingestion features. - [ ] Added/updated tests - [ ] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [ ] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [ ] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)). --------- Co-authored-by: Jarod Reyes <jarodreyes@gmail.com> |
||
|
|
e971f4510b |
Remove contents:write from build-orbit action (#10156)
This is no longer needed since we use the upload action rather than draft GitHub release. |
||
|
|
145f143dde |
Bump github.com/getsentry/sentry-go from 0.12.0 to 0.18.0 (#9793)
Bumps [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) from 0.12.0 to 0.18.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/releases">github.com/getsentry/sentry-go's releases</a>.</em></p> <blockquote> <h2>0.18.0</h2> <p>The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.18.0. This release contains initial support for <a href="https://opentelemetry.io/">OpenTelemetry</a> and various other bug fixes and improvements.</p> <p><strong>Note</strong>: This is the last release supporting Go 1.17.</p> <h3>Features</h3> <ul> <li> <p>Initial support for <a href="https://opentelemetry.io/">OpenTelemetry</a>. You can now send all your OpenTelemetry spans to Sentry.</p> <p>Install the <code>otel</code> module</p> <pre lang="bash"><code>go get github.com/getsentry/sentry-go \ github.com/getsentry/sentry-go/otel </code></pre> <p>Configure the Sentry and OpenTelemetry SDKs</p> <pre lang="go"><code>import ( "go.opentelemetry.io/otel" sdktrace "go.opentelemetry.io/otel/sdk/trace" "github.com/getsentry/sentry-go" "github.com/getsentry/sentry-go/otel" // ... ) <p>// Initlaize the Sentry SDK sentry.Init(sentry.ClientOptions{ Dsn: "<strong>DSN</strong>", EnableTracing: true, TracesSampleRate: 1.0, })</p> <p>// Set up the Sentry span processor tp := sdktrace.NewTracerProvider( sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()), // ... ) otel.SetTracerProvider(tp)</p> <p>// Set up the Sentry propagator otel.SetTextMapPropagator(sentryotel.NewSentryPropagator()) </code></pre></p> <p>You can read more about using OpenTelemetry with Sentry in our <a href="https://docs.sentry.io/platforms/go/performance/instrumentation/opentelemetry/">docs</a>.</p> </li> </ul> <h3>Bug Fixes</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md">github.com/getsentry/sentry-go's changelog</a>.</em></p> <blockquote> <h2>0.18.0</h2> <p>The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.18.0. This release contains initial support for <a href="https://opentelemetry.io/">OpenTelemetry</a> and various other bug fixes and improvements.</p> <p><strong>Note</strong>: This is the last release supporting Go 1.17.</p> <h3>Features</h3> <ul> <li> <p>Initial support for <a href="https://opentelemetry.io/">OpenTelemetry</a>. You can now send all your OpenTelemetry spans to Sentry.</p> <p>Install the <code>otel</code> module</p> <pre lang="bash"><code>go get github.com/getsentry/sentry-go \ github.com/getsentry/sentry-go/otel </code></pre> <p>Configure the Sentry and OpenTelemetry SDKs</p> <pre lang="go"><code>import ( "go.opentelemetry.io/otel" sdktrace "go.opentelemetry.io/otel/sdk/trace" "github.com/getsentry/sentry-go" "github.com/getsentry/sentry-go/otel" // ... ) <p>// Initlaize the Sentry SDK sentry.Init(sentry.ClientOptions{ Dsn: "<strong>DSN</strong>", EnableTracing: true, TracesSampleRate: 1.0, })</p> <p>// Set up the Sentry span processor tp := sdktrace.NewTracerProvider( sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()), // ... ) otel.SetTracerProvider(tp)</p> <p>// Set up the Sentry propagator otel.SetTextMapPropagator(sentryotel.NewSentryPropagator()) </code></pre></p> <p>You can read more about using OpenTelemetry with Sentry in our <a href="https://docs.sentry.io/platforms/go/performance/instrumentation/opentelemetry/">docs</a>.</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/getsentry/sentry-go/commit/4b97c8e66159e9da864d79c502e4cbf59eb38031"><code>4b97c8e</code></a> release: 0.18.0</li> <li><a href="https://github.com/getsentry/sentry-go/commit/79724631e3ad22e2c3a167dfa13936e4e4a6d5d0"><code>7972463</code></a> fix(release): Bump root module version in submodules (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/576">#576</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/612c16704968c81c84c2479cd9d74b4373a0e62a"><code>612c167</code></a> fix(build): Tidy otel submodule (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/575">#575</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/3ec394335539ae0d0de0e87c012c5a845ce8849f"><code>3ec3943</code></a> doc: Prepare 0.18.0 (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/572">#572</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/bb6e2bdbf0d32bf4645ab8a29fed6f3183ddfee7"><code>bb6e2bd</code></a> fix(otel): Use vendored bagggage implementation in propagator (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/573">#573</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/3964ecefd0682870f9e1891cf85231db52be6c07"><code>3964ece</code></a> fix(baggage): Update baggage parsing and encoding in vendored otel package (#...</li> <li><a href="https://github.com/getsentry/sentry-go/commit/ef3a838eef937b2d67445dbe70a3fae83e4ec718"><code>ef3a838</code></a> test: Add Codecov configuration file (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/569">#569</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/de904d6e9788a7e2c165bd4ec4dec06ea43c38b5"><code>de904d6</code></a> fix(otel): Require otel 1.11.0 and higher (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/567">#567</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/d0a2aa3ebdba03d70bf5228c585cae1f2a800424"><code>d0a2aa3</code></a> fix: Create a frozen DSC when calling ToBaggage (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/566">#566</a>)</li> <li><a href="https://github.com/getsentry/sentry-go/commit/fb7618028bababd9197569610a87e59bdacb037e"><code>fb76180</code></a> release: Update .craft.yml to be ready for otel submodule release (<a href="https://github-redirect.dependabot.com/getsentry/sentry-go/issues/565">#565</a>)</li> <li>Additional commits viewable in <a href="https://github.com/getsentry/sentry-go/compare/v0.12.0...v0.18.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
5f95975a05 |
Bump jsonwebtoken from 8.5.1 to 9.0.0 in /ee/tools/license (#9109)
Bumps [jsonwebtoken](https://github.com/auth0/node-jsonwebtoken) from 8.5.1 to 9.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/auth0/node-jsonwebtoken/blob/master/CHANGELOG.md">jsonwebtoken's changelog</a>.</em></p> <blockquote> <h2>9.0.0 - 2022-12-21</h2> <p><strong>Breaking changes: See <a href="https://github.com/auth0/node-jsonwebtoken/wiki/Migration-Notes:-v8-to-v9">Migration from v8 to v9</a></strong></p> <h3>Breaking changes</h3> <ul> <li>Removed support for Node versions 11 and below.</li> <li>The verify() function no longer accepts unsigned tokens by default. ([834503079514b72264fd13023a3b8d648afd6a16]<a href="https://github.com/auth0/node-jsonwebtoken/commit/834503079514b72264fd13023a3b8d648afd6a16">https://github.com/auth0/node-jsonwebtoken/commit/834503079514b72264fd13023a3b8d648afd6a16</a>)</li> <li>RSA key size must be 2048 bits or greater. ([ecdf6cc6073ea13a7e71df5fad043550f08d0fa6]<a href="https://github.com/auth0/node-jsonwebtoken/commit/ecdf6cc6073ea13a7e71df5fad043550f08d0fa6">https://github.com/auth0/node-jsonwebtoken/commit/ecdf6cc6073ea13a7e71df5fad043550f08d0fa6</a>)</li> <li>Key types must be valid for the signing / verification algorithm</li> </ul> <h3>Security fixes</h3> <ul> <li>security: fixes <code>Arbitrary File Write via verify function</code> - CVE-2022-23529</li> <li>security: fixes <code>Insecure default algorithm in jwt.verify() could lead to signature validation bypass</code> - CVE-2022-23540</li> <li>security: fixes <code>Insecure implementation of key retrieval function could lead to Forgeable Public/Private Tokens from RSA to HMAC</code> - CVE-2022-23541</li> <li>security: fixes <code>Unrestricted key type could lead to legacy keys usage</code> - CVE-2022-23539</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/e1fa9dcc12054a8681db4e6373da1b30cf7016e3"><code>e1fa9dc</code></a> Merge pull request from GHSA-8cf7-32gw-wr33</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/5eaedbf2b01676d952336e73b4d2efba847d2d1b"><code>5eaedbf</code></a> chore(ci): remove github test actions job (<a href="https://github-redirect.dependabot.com/auth0/node-jsonwebtoken/issues/861">#861</a>)</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/cd4163eb1407aab0b3148f91b0b9c26276b96c6b"><code>cd4163e</code></a> chore(ci): configure Github Actions jobs for Tests & Security Scanning (<a href="https://github-redirect.dependabot.com/auth0/node-jsonwebtoken/issues/856">#856</a>)</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/ecdf6cc6073ea13a7e71df5fad043550f08d0fa6"><code>ecdf6cc</code></a> fix!: Prevent accidental use of insecure key sizes & misconfiguration of secr...</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/834503079514b72264fd13023a3b8d648afd6a16"><code>8345030</code></a> fix(sign&verify)!: Remove default <code>none</code> support from <code>sign</code> and <code>verify</code> met...</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/7e6a86b1c25e5fd05733c52c118848341aba1c4e"><code>7e6a86b</code></a> Upload OpsLevel YAML (<a href="https://github-redirect.dependabot.com/auth0/node-jsonwebtoken/issues/849">#849</a>)</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/74d5719bd03993fcf71e3b176621f133eb6138c0"><code>74d5719</code></a> docs: update references vercel/ms references (<a href="https://github-redirect.dependabot.com/auth0/node-jsonwebtoken/issues/770">#770</a>)</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/d71e383862fc735991fd2e759181480f066bf138"><code>d71e383</code></a> docs: document "invalid token" error</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/37650031fd0bac1a5b0d682bbfcf8c1705917aa9"><code>3765003</code></a> docs: fix spelling in README.md: Peak -> Peek (<a href="https://github-redirect.dependabot.com/auth0/node-jsonwebtoken/issues/754">#754</a>)</li> <li><a href="https://github.com/auth0/node-jsonwebtoken/commit/a46097e962621ab2ba718d1da6025cdeba3597c8"><code>a46097e</code></a> docs: make decode impossible to discover before verify</li> <li>Additional commits viewable in <a href="https://github.com/auth0/node-jsonwebtoken/compare/v8.5.1...v9.0.0">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~julien.wollscheid">julien.wollscheid</a>, a new releaser for jsonwebtoken since your current version.</p> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/fleetdm/fleet/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
9192d5ce91 |
Bump github.com/docker/docker from 20.10.17+incompatible to 23.0.1+incompatible (#9792)
Bumps [github.com/docker/docker](https://github.com/docker/docker) from 20.10.17+incompatible to 23.0.1+incompatible. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/docker/docker/releases">github.com/docker/docker's releases</a>.</em></p> <blockquote> <h2>v23.0.1</h2> <h2>23.0.1</h2> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/milestone/73?closed=1">docker/cli, 23.0.1 milestone</a></li> <li><a href="https://github.com/moby/moby/milestone/113?closed=1">moby/moby, 23.0.1 milestone</a></li> </ul> <h3>Bug fixes and enhancements</h3> <ul> <li>Fix containers not starting if the kernel has AppArmor enabled, but <code>apparmor_parser</code> is not available. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44942">moby/moby#44942</a></li> <li>Fix BuildKit-enabled builds with inline caching causing the daemon to crash. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44944">moby/moby#44944</a></li> <li>Fix BuildKit improperly loading cached layers created by previous versions. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44959">moby/moby#44959</a></li> <li>Fix an issue where <code>ipvlan</code> networks created prior to upgrading would prevent the daemon from starting. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44937">moby/moby#44937</a></li> <li>Fix the <code>overlay2</code> storage driver failing early in <code>metacopy</code> testing when initialized on an unsupported backing filesystem. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44922">moby/moby#44922</a></li> <li>Fix <code>exec</code> exit events being misinterpreted as container exits under some runtimes, such as Kata Containers. <a href="https://github-redirect.dependabot.com/moby/moby/pull/44892">moby/moby#44892</a></li> <li>Improve the error message returned by the CLI when recieving a truncated JSON response caused by the API hanging up mid-request. <a href="https://github-redirect.dependabot.com/docker/cli/pull/4004">docker/cli#4004</a></li> <li>Fix an incorrect CLI exit code when attempting to execute a directory with a <code>runc</code> compiled using Go 1.20. <a href="https://github-redirect.dependabot.com/docker/cli/pull/4004">docker/cli#4004</a></li> <li>Fix mishandling the size argument to <code>--device-write-bps</code> as a path. <a href="https://github-redirect.dependabot.com/docker/cli/pull/4004">docker/cli#4004</a></li> </ul> <h3>Packaging</h3> <ul> <li>Add <code>/etc/docker</code> to RPM and DEB packaging. <a href="https://github-redirect.dependabot.com/docker/docker-ce-packaging/pull/842">docker/docker-ce-packaging#842</a> <ul> <li>Not all use cases will benefit; if you depend on this, you should explicitly <code>mkdir -p /etc/docker</code>.</li> </ul> </li> <li>Upgrade Compose to <code>v2.16.0</code>. <a href="https://github-redirect.dependabot.com/docker/docker-ce-packaging/pull/844">docker/docker-ce-packaging#844</a></li> </ul> <h2>v23.0.0</h2> <h2>23.0.0</h2> <p>For more information about:</p> <ul> <li>Deprecated and removed features, see <a href="https://github.com/docker/cli/blob/v23.0.0/docs/deprecated.md">Deprecated Engine Features</a>.</li> <li>Changes to the Engine API, see <a href="https://github.com/moby/moby/blob/v23.0.0/docs/api/version-history.md">Engine API version history</a>.</li> </ul> <p>For a full list of pull requests and changes in this release, refer to the relevant GitHub milestones:</p> <ul> <li><a href="https://github.com/docker/cli/milestone/51?closed=1">docker/cli, 23.0.0 milestone</a></li> <li><a href="https://github.com/moby/moby/milestone/91?closed=1">moby/moby, 23.0.0 milestone</a></li> </ul> <h3>New</h3> <ul> <li>Set Buildx and BuildKit as the default builder on Linux. <a href="https://github-redirect.dependabot.com/moby/moby/pull/43992">moby/moby#43992</a> <ul> <li>Alias <code>docker build</code> to <code>docker buildx build</code>. <a href="https://github-redirect.dependabot.com/docker/cli/pull/3314">docker/cli#3314</a></li> <li>The legacy builder can still be used by explicitly setting <code>DOCKER_BUILDKIT=0</code>.</li> <li>There are differences in how BuildKit and the legacy builder handle multi-stage builds. For more information, see <a href="https://github.com/docker/docker/build/building/multi-stage.md#differences-between-legacy-builder-and-buildkit">Multi-stage builds</a>.</li> </ul> </li> <li>Add support for pulling <code>zstd</code> compressed layers. <a href="https://github-redirect.dependabot.com/moby/moby/pull/41759">moby/moby#41759</a>, <a href="https://github-redirect.dependabot.com/moby/moby/pull/42862">moby/moby#42862</a></li> <li>Add support for alternate OCI runtimes on Linux, compatible with the containerd runtime v2 API. <a href="https://github-redirect.dependabot.com/moby/moby/pull/43887">moby/moby#43887</a>, <a href="https://github-redirect.dependabot.com/moby/moby/pull/43993">moby/moby#43993</a></li> <li>Add support for the containerd <code>runhcs</code> shim on Windows (off by default). <a href="https://github-redirect.dependabot.com/moby/moby/pull/42089">moby/moby#42089</a></li> <li>Add <code>dockerd --validate</code> to check the daemon JSON config and exit. <a href="https://github-redirect.dependabot.com/moby/moby/pull/42393">moby/moby#42393</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/moby/moby/commit/bc3805a0a0d3b5bd3f0e6c69f46ac08dd53377c7"><code>bc3805a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/docker/docker/issues/44959">#44959</a> from tonistiigi/23.0-buildkit-update-0208</li> <li><a href="https://github.com/moby/moby/commit/4002fa877b4c3b85647e94c3a6c7306a4f28daa1"><code>4002fa8</code></a> vendor: update buildkit to latest v0.10</li> <li><a href="https://github.com/moby/moby/commit/77f3d31ed6e178e70785c4598742e1f3b270d527"><code>77f3d31</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/docker/docker/issues/44944">#44944</a> from thaJeztah/23.0_backport_worker_getremotes</li> <li><a href="https://github.com/moby/moby/commit/e697c9365f1bef04b52f418b325e29984189f738"><code>e697c93</code></a> builder: define GetRemotes for the worker</li> <li><a href="https://github.com/moby/moby/commit/1141704bc95620f7af0d11dde3558f6007bc518a"><code>1141704</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/docker/docker/issues/44952">#44952</a> from thaJeztah/23.0_backport_ci_fix_workflows</li> <li><a href="https://github.com/moby/moby/commit/4c544c3d5fc7072e1420132e925dbaedc377f4c1"><code>4c544c3</code></a> ci: fix branch filter pattern in buildkit workflow</li> <li><a href="https://github.com/moby/moby/commit/f7e2cbaf1bef75d83a9f4be9f6ef436879ac9dbb"><code>f7e2cba</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/docker/docker/issues/44948">#44948</a> from crazy-max/23.0_backport_ci-itg-cli-split</li> <li><a href="https://github.com/moby/moby/commit/06aca27cc15a7d993b93f813a9b6796a10589b90"><code>06aca27</code></a> ci: enhance tests distribution</li> <li><a href="https://github.com/moby/moby/commit/001b2e778a19b9d031bd19950566588ea211eddb"><code>001b2e7</code></a> ci: update gotestlist to 0.3.1</li> <li><a href="https://github.com/moby/moby/commit/e664cc2239747bea77f984d6a2c5321dc6f56469"><code>e664cc2</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/docker/docker/issues/44942">#44942</a> from vvoland/apparmor-check-binary-23</li> <li>Additional commits viewable in <a href="https://github.com/docker/docker/compare/v20.10.17...v23.0.1">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
c7672db1f9 |
Bump goreleaser/goreleaser-action from 3.0.0 to 4.2.0 (#9558)
Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 3.0.0 to 4.2.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/goreleaser/goreleaser-action/releases">goreleaser/goreleaser-action's releases</a>.</em></p> <blockquote> <h2>v4.2.0</h2> <h2>What's Changed</h2> <ul> <li>fix: don't depend on the GitHub API to check release by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/391">goreleaser/goreleaser-action#391</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/goreleaser/goreleaser-action/compare/v4.1.1...v4.2.0">https://github.com/goreleaser/goreleaser-action/compare/v4.1.1...v4.2.0</a></p> <h2>v4.1.1</h2> <h2>What's Changed</h2> <ul> <li>Update Readme to reference <code>goreleaser/goreleaser-action@v4</code> by <a href="https://github.com/felladrin"><code>@felladrin</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/384">goreleaser/goreleaser-action#384</a></li> <li>docs: fix README badge by <a href="https://github.com/dirien"><code>@dirien</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/386">goreleaser/goreleaser-action#386</a></li> <li>chore(deps): bump json5 from 2.2.0 to 2.2.3 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/388">goreleaser/goreleaser-action#388</a></li> <li>fix: use <code>@action/github</code> by <a href="https://github.com/caarlos0"><code>@caarlos0</code></a> and <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/390">goreleaser/goreleaser-action#390</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/felladrin"><code>@felladrin</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/384">goreleaser/goreleaser-action#384</a></li> <li><a href="https://github.com/dirien"><code>@dirien</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/386">goreleaser/goreleaser-action#386</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/goreleaser/goreleaser-action/compare/v4.1.0...v4.1.1">https://github.com/goreleaser/goreleaser-action/compare/v4.1.0...v4.1.1</a></p> <h2>v4.1.0</h2> <h2>What's Changed</h2> <ul> <li>feat!: remove auto-snapshot on dirty tag by <a href="https://github.com/caarlos0"><code>@caarlos0</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/382">goreleaser/goreleaser-action#382</a></li> <li>docs: add example when using workdir along with upload-artifact by <a href="https://github.com/zdtsw"><code>@zdtsw</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/366">goreleaser/goreleaser-action#366</a></li> <li>Fix Self-Hosted Windows Error: Expand-Archive by <a href="https://github.com/flarco"><code>@flarco</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/379">goreleaser/goreleaser-action#379</a></li> <li>chore(deps): bump minimatch from 3.0.4 to 3.1.2 by <a href="https://github.com/dependabot"><code>@dependabot</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/383">goreleaser/goreleaser-action#383</a></li> </ul> <h2>Migrating from v3</h2> <p>If you need the auto-snapshot feature, take a look at <a href="https://github.com/caarlos0/goreleaser-action-v4-auto-snapshot-example">this example repository</a>: it's a minimal working example with all you need.</p> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/zdtsw"><code>@zdtsw</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/366">goreleaser/goreleaser-action#366</a></li> <li><a href="https://github.com/flarco"><code>@flarco</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/379">goreleaser/goreleaser-action#379</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/goreleaser/goreleaser-action/compare/v4...v4.1.0">https://github.com/goreleaser/goreleaser-action/compare/v4...v4.1.0</a></p> <h2>v4.0.0</h2> <h2>What's Changed</h2> <ul> <li>fix: do not override GORELEASER_CURRENT_TAG by <a href="https://github.com/caarlos0"><code>@caarlos0</code></a> in <a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/pull/370">goreleaser/goreleaser-action#370</a></li> </ul> <h2>Migrating from v3</h2> <p>If you need the auto-snapshot feature, take a look at <a href="https://github.com/caarlos0/goreleaser-action-v4-auto-snapshot-example">this example repository</a>: it's a minimal working example with all you need.</p> <p><strong>Full Changelog</strong>: <a href="https://github.com/goreleaser/goreleaser-action/compare/v3...v4.0.0">https://github.com/goreleaser/goreleaser-action/compare/v3...v4.0.0</a></p> <h2>v3.2.0</h2> <h2>What's Changed</h2> <ul> <li>chore: remove workaround for <code>setOutput</code> by <a href="https://github.com/crazy-max"><code>@crazy-max</code></a> (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/374">#374</a>)</li> <li>chore(deps): bump <code>@actions/core</code> from 1.9.1 to 1.10.0 (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/372">#372</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/f82d6c1c344bcacabba2c841718984797f664a6b"><code>f82d6c1</code></a> fix: don't depend on the GitHub API to check release (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/391">#391</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/9754a253a8673b0ea869c2e863b4e975497efd0c"><code>9754a25</code></a> fix: use <code>@action/github</code> (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/390">#390</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/b1a238106b6582da75cc041a06cf8473dc02b3ca"><code>b1a2381</code></a> build: run ci on workflow dispatch</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/b1ffc5d9902c456688e7814a5f93e0b3309f7c0b"><code>b1ffc5d</code></a> chore(deps): bump json5 from 2.2.0 to 2.2.3 (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/388">#388</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/256e4b8b2899ef3f97260f849b8ddcc8e8794fb4"><code>256e4b8</code></a> docs: migrating from v3</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/a7c543ca7a866f4d914fa7a767ded0c3868d0821"><code>a7c543c</code></a> docs: fix README badgea (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/386">#386</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/13f1e21a502d76668f53fc8631dfef02a96ecac6"><code>13f1e21</code></a> docs: update Readme to reference <code>goreleaser/goreleaser-action@v4</code> (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/384">#384</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/8f67e590f2d095516493f017008adc464e63adb1"><code>8f67e59</code></a> chore: regenerate</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/78df308971ca82472949e05f288641bf24078f12"><code>78df308</code></a> chore(deps): bump minimatch from 3.0.4 to 3.1.2 (<a href="https://github-redirect.dependabot.com/goreleaser/goreleaser-action/issues/383">#383</a>)</li> <li><a href="https://github.com/goreleaser/goreleaser-action/commit/66134d94a72316c372bfb2832b853f249cf96a0c"><code>66134d9</code></a> Merge remote-tracking branch 'origin/master' into flarco/master</li> <li>Additional commits viewable in <a href="https://github.com/goreleaser/goreleaser-action/compare/68acf3b1adf004ac9c2f0a4259e85c5f66e99bef...f82d6c1c344bcacabba2c841718984797f664a6b">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
673a4465cc |
Bump stefanprodan/helm-gh-pages from 1.5.0 to 1.7.0 (#8804)
Bumps [stefanprodan/helm-gh-pages](https://github.com/stefanprodan/helm-gh-pages) from 1.5.0 to 1.7.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/stefanprodan/helm-gh-pages/releases">stefanprodan/helm-gh-pages's releases</a>.</em></p> <blockquote> <h2>v1.7.0</h2> <h2>What's Changed</h2> <ul> <li>Allow private helm repo auth in dependencies by <a href="https://github.com/zzorica"><code>@zzorica</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/35">stefanprodan/helm-gh-pages#35</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/zzorica"><code>@zzorica</code></a> made their first contribution in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/35">stefanprodan/helm-gh-pages#35</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/stefanprodan/helm-gh-pages/compare/v1.6.0...v1.7.0">https://github.com/stefanprodan/helm-gh-pages/compare/v1.6.0...v1.7.0</a></p> <h2>v1.6.0</h2> <h2>What's Changed</h2> <ul> <li>Add support for alias:<!-- raw HTML omitted --> in dependencies check by <a href="https://github.com/paulcarlton-ww"><code>@paulcarlton-ww</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/32">stefanprodan/helm-gh-pages#32</a></li> <li>Update Helm to v3.10.0 by <a href="https://github.com/stefanprodan"><code>@stefanprodan</code></a> in <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/pull/33">stefanprodan/helm-gh-pages#33</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/stefanprodan/helm-gh-pages/compare/v1.5.0...v1.6.0">https://github.com/stefanprodan/helm-gh-pages/compare/v1.5.0...v1.6.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/0ad2bb377311d61ac04ad9eb6f252fb68e207260"><code>0ad2bb3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/35">#35</a> from zzorica/allow-private-helm-repo-auth-in-dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/86e9903900d2757310b239c6963a29d5127aba23"><code>86e9903</code></a> allow private helm repo auth in dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/a5c92527816f345553e78c3136b031c91724ecf1"><code>a5c9252</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/33">#33</a> from stefanprodan/helm-3.10.0</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/844812954c061f65f4ca5bd2095cc7ead39f588c"><code>8448129</code></a> Update Helm to v3.10.0</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/b97c7e37c518934b55ffc8e3d3bbe6a451bc1b6e"><code>b97c7e3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/stefanprodan/helm-gh-pages/issues/32">#32</a> from paulcarlton-ww/debug</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/84568715a3046d58d695e521b69a824f1550c0e7"><code>8456871</code></a> add dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/aa539260428975df4d46ac611d52ffc92403174f"><code>aa53926</code></a> add dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/a77eeb96302211474cae657c3318ed700025bc8b"><code>a77eeb9</code></a> add dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/ce5cd1646e707ee9ecc00f40acbc1edc313a4e62"><code>ce5cd16</code></a> add dependencies</li> <li><a href="https://github.com/stefanprodan/helm-gh-pages/commit/13eb32b03be06d80a3b229ce2f121efd935b5645"><code>13eb32b</code></a> add dependencies</li> <li>Additional commits viewable in <a href="https://github.com/stefanprodan/helm-gh-pages/compare/b43a8719cc63fdb3aa943cc57359ab19118eab3f...0ad2bb377311d61ac04ad9eb6f252fb68e207260">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
318a12a5fa |
Bump golang from 1.19.5-alpine to 1.20.1-alpine (#10099)
Bumps golang from 1.19.5-alpine to 1.20.1-alpine. [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
527cb0a622 |
Bump aws-actions/amazon-ecr-login from 1.5.0 to 1.5.3 (#8507)
Bumps [aws-actions/amazon-ecr-login](https://github.com/aws-actions/amazon-ecr-login) from 1.5.0 to 1.5.3. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/aws-actions/amazon-ecr-login/releases">aws-actions/amazon-ecr-login's releases</a>.</em></p> <blockquote> <h2>v1.5.3</h2> <p>See the <a href="https://github.com/aws-actions/amazon-ecr-login/blob/HEAD/CHANGELOG.md">changelog</a> for details about the changes included in this release.</p> <h2>v1.5.2</h2> <p>See the <a href="https://github.com/aws-actions/amazon-ecr-login/blob/HEAD/CHANGELOG.md">changelog</a> for details about the changes included in this release.</p> <h2>v1.5.1</h2> <p>See the <a href="https://github.com/aws-actions/amazon-ecr-login/blob/HEAD/CHANGELOG.md">changelog</a> for details about the changes included in this release.</p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/aws-actions/amazon-ecr-login/blob/main/CHANGELOG.md">aws-actions/amazon-ecr-login's changelog</a>.</em></p> <blockquote> <h1>Changelog</h1> <p>All notable changes to this project will be documented in this file. See <a href="https://github.com/conventional-changelog/standard-version">standard-version</a> for commit guidelines.</p> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.5.2...v1.5.3">1.5.3</a> (2022-10-29)</h3> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.5.1...v1.5.2">1.5.2</a> (2022-10-18)</h3> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.5.0...v1.5.1">1.5.1</a> (2022-08-04)</h3> <h3>Bug Fixes</h3> <ul> <li>reverted change that masked Docker credentials (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/7d073b66cc2799eb766b698980d716db7e62a8b7">7d073b6</a>)</li> </ul> <h2><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.4.0...v1.5.0">1.5.0</a> (2022-06-27)</h2> <h3>Features</h3> <ul> <li>added ECR Public Registry support (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/b4f084e928b56f43c9afa5773b761bbfcd7e83e2">b4f084e</a>)</li> </ul> <h2><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.3.3...v1.4.0">1.4.0</a> (2022-05-20)</h2> <h3>Features</h3> <ul> <li>output docker credentials after login (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/57206dc28c379a6eebdce44c592109d2e97e031d">57206dc</a>)</li> <li>support for username and password outputs (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/d121236bfd0a712a9f4bd93767d696874680bc95">d121236</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li>add-mask to login outputs (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/45a78e2dab5678b27e94cf31545c181e8ca9c044">45a78e2</a>)</li> </ul> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.3.2...v1.3.3">1.3.3</a> (2021-02-15)</h3> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.3.1...v1.3.2">1.3.2</a> (2021-02-01)</h3> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.3.0...v1.3.1">1.3.1</a> (2020-11-24)</h3> <h2><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.2.2...v1.3.0">1.3.0</a> (2020-10-29)</h2> <h3>Features</h3> <ul> <li>optional skipping of docker registries logout in post step (<a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/78">#78</a>) (<a href="https://github.com/aws-actions/amazon-ecr-login/commit/dd3fdeeb95577a637ece5e647581680afda16e6f">dd3fdee</a>)</li> </ul> <h3><a href="https://github.com/aws-actions/amazon-ecr-login/compare/v1.2.1...v1.2.2">1.2.2</a> (2020-10-05)</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/261a7de32bda11ba01f4d75c4ed6caf3739e54be"><code>261a7de</code></a> chore(release): 1.5.3</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/3e4df454b5fe188ec2d2f4e9f5d455e2905eaddd"><code>3e4df45</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/330">#330</a> from aws-actions/docs</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/c77259b76704335fd146ce77b8212e1267e14b18"><code>c77259b</code></a> chore: Update dist</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/383620b24db517197b0747f434e9635b72e14d04"><code>383620b</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/352">#352</a> from aws-actions/dependabot/npm_and_yarn/actions/core...</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/8ccaf4775529a3c46cadcc1475e34ceac2675328"><code>8ccaf47</code></a> chore: Bump <code>@actions/core</code> from 1.9.1 to 1.10.0</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/eb9a709a709d0d6e4b34a02d34494041831f6999"><code>eb9a709</code></a> chore(release): 1.5.2</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/ba4f9ee50033629e05e8019f1b4921cf48d89b2d"><code>ba4f9ee</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/355">#355</a> from aws-actions/dependabot/npm_and_yarn/eslint-8.25.0</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/a1ac76b296896ebf0a9ab474c5850e76ad01b4f6"><code>a1ac76b</code></a> chore: Update dist</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/c21dbea0d3dbcf24e314befd96076f9f0b6a875d"><code>c21dbea</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/356">#356</a> from aws-actions/dependabot/npm_and_yarn/aws-sdk-2.12...</li> <li><a href="https://github.com/aws-actions/amazon-ecr-login/commit/e70c985d140834e952b5a863ba89f98cec59314f"><code>e70c985</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/aws-actions/amazon-ecr-login/issues/354">#354</a> from gotoeveryone/chore/update-runtime-to-node16</li> <li>Additional commits viewable in <a href="https://github.com/aws-actions/amazon-ecr-login/compare/b874a33292cc9887d2e80bc63f6f1a11fccb4a7b...261a7de32bda11ba01f4d75c4ed6caf3739e54be">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
4ae5d9ba2f |
Bump golang.org/x/sys from 0.0.0-20211216021012-1d35b9e2eb4e to 0.1.0 in /infrastructure/sandbox/Monitoring/lambda (#10108)
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20211216021012-1d35b9e2eb4e to 0.1.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.1.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/fleetdm/fleet/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
c067302c2c |
Bump golang.org/x/sys from 0.0.0-20220227234510-4e6760a101f9 to 0.1.0 in /infrastructure/sandbox/JITProvisioner/deprovisioner (#10109)
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.0.0-20220227234510-4e6760a101f9 to 0.1.0. <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/golang/sys/commits/v0.1.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/fleetdm/fleet/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
6bf80ef23e |
Bump golang.org/x/text from 0.3.7 to 0.3.8 in /infrastructure/sandbox/JITProvisioner/lambda (#10049)
[//]: # (dependabot-start) ⚠️ **Dependabot is rebasing this PR** ⚠️ Rebasing might not happen immediately, so don't worry if this takes some time. Note: if you make any changes to this PR yourself, they will take precedence over the rebase. --- [//]: # (dependabot-end) Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.3.8. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c"><code>434eadc</code></a> language: reject excessively large Accept-Language strings</li> <li><a href="https://github.com/golang/text/commit/23407e72ed5b895a2dfd230aec777f4fbe026d6a"><code>23407e7</code></a> go.mod: ignore cyclic dependency for tagging</li> <li><a href="https://github.com/golang/text/commit/b18d3dd8a4b426ebedcf279b593e85ac4985b9d3"><code>b18d3dd</code></a> secure/precis: replace bytes.Compare with bytes.Equal</li> <li><a href="https://github.com/golang/text/commit/795e854ff348c9cac4fd0033ce04c417705dd0bb"><code>795e854</code></a> all: replace io/ioutil with io and os package</li> <li><a href="https://github.com/golang/text/commit/b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9"><code>b0ca10f</code></a> internal/language: bump script types to uint16 and update registry</li> <li><a href="https://github.com/golang/text/commit/ba9b0e1d4b03523c708709935fbc961124b6967b"><code>ba9b0e1</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/d03b41800055b01e3895b1e047af09733c93bf63"><code>d03b418</code></a> A+C: delete AUTHORS and CONTRIBUTORS</li> <li><a href="https://github.com/golang/text/commit/b4bca84b03619dba00657375259024a7f8ae6712"><code>b4bca84</code></a> language/display: fix Tag method comment</li> <li><a href="https://github.com/golang/text/commit/ea49e3e2d5b3f1518081d8bc53ffefc8bc60ecec"><code>ea49e3e</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/78819d01d041a94e055bbaa2d95e5e4d49e8f8a0"><code>78819d0</code></a> go.mod: update to golang.org/x/text v0.1.10</li> <li>Additional commits viewable in <a href="https://github.com/golang/text/compare/v0.3.7...v0.3.8">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/fleetdm/fleet/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
57feba63dd |
Bump golang.org/x/text from 0.3.7 to 0.3.8 in /infrastructure/sandbox/PreProvisioner/lambda (#10050)
Bumps [golang.org/x/text](https://github.com/golang/text) from 0.3.7 to 0.3.8. <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/golang/text/commit/434eadcdbc3b0256971992e8c70027278364c72c"><code>434eadc</code></a> language: reject excessively large Accept-Language strings</li> <li><a href="https://github.com/golang/text/commit/23407e72ed5b895a2dfd230aec777f4fbe026d6a"><code>23407e7</code></a> go.mod: ignore cyclic dependency for tagging</li> <li><a href="https://github.com/golang/text/commit/b18d3dd8a4b426ebedcf279b593e85ac4985b9d3"><code>b18d3dd</code></a> secure/precis: replace bytes.Compare with bytes.Equal</li> <li><a href="https://github.com/golang/text/commit/795e854ff348c9cac4fd0033ce04c417705dd0bb"><code>795e854</code></a> all: replace io/ioutil with io and os package</li> <li><a href="https://github.com/golang/text/commit/b0ca10ff35f1325c7d0ac7830fe3f036bd72d8f9"><code>b0ca10f</code></a> internal/language: bump script types to uint16 and update registry</li> <li><a href="https://github.com/golang/text/commit/ba9b0e1d4b03523c708709935fbc961124b6967b"><code>ba9b0e1</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/d03b41800055b01e3895b1e047af09733c93bf63"><code>d03b418</code></a> A+C: delete AUTHORS and CONTRIBUTORS</li> <li><a href="https://github.com/golang/text/commit/b4bca84b03619dba00657375259024a7f8ae6712"><code>b4bca84</code></a> language/display: fix Tag method comment</li> <li><a href="https://github.com/golang/text/commit/ea49e3e2d5b3f1518081d8bc53ffefc8bc60ecec"><code>ea49e3e</code></a> go.mod: update x/tools to HEAD</li> <li><a href="https://github.com/golang/text/commit/78819d01d041a94e055bbaa2d95e5e4d49e8f8a0"><code>78819d0</code></a> go.mod: update to golang.org/x/text v0.1.10</li> <li>Additional commits viewable in <a href="https://github.com/golang/text/compare/v0.3.7...v0.3.8">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/fleetdm/fleet/network/alerts). </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> |
||
|
|
5d6cb9e4e9 |
Update policy ownership and language (#10152)
Reflects updates since Guillaume's departure. |
||
|
|
71f2a62b4c | Prepare for 4.28.0 (#10103) | ||
|
|
0455dfea92 |
Update list of endpoints (#10013)
Added`/api/osquery/log` to list of endpoints needed for hosts running Orbit . |
||
|
|
0756b7c0dd |
offboarding charlie (#10142)
. --------- Co-authored-by: Mike McNeil <mikermcneil@users.noreply.github.com> |
||
|
|
07b5c15a14 |
offboarding charlie (#10143)
. |
||
|
|
08a8b1cc17 |
offboarding charlie (#10140)
. |
||
|
|
6fec539fbf |
Update API responses for hosts and labels endpoints to include host mdm info (#10141)
Issue #10126 - Add mdm solution name to host mdm inf - Add host mdm info in labels API response; |
||
|
|
d849838c23 | change showing turn off mdm from data from host/:id/mdm (#10129) | ||
|
|
8c4d4b1763 | Fix controls page tab navigation (#10125) | ||
|
|
728c47fa34 |
Offboarding Charlie (#10131)
https://app.zenhub.com/workspaces/-g-business-operations-63f3dc3cc931f6247fcf55a9/issues/gh/fleetdm/confidential/2024 |
||
|
|
a860328c04 |
Website: Update Github webhook to ignore Mergefreeze status for PRs outside of the Fleet repo (#10123)
Changes: - Updated `receive-from-github.js` to only send requests to freeze and unfreeze the Fleet repo when the PR it is checking is from the fleetdm/fleet repo. |
||
|
|
1a37f9bf5a | Fleet UI: Use app context currentTeam as source of truth for teamId (#10118) | ||
|
|
593a64fde0 |
Add Loom tutorials about hiring (#10119)
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [ ] Documented any API changes (docs/Using-Fleet/REST-API.md or docs/Contributing/API-for-contributors.md) - [ ] Documented any permissions changes - [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for new osquery data ingestion features. - [ ] Added/updated tests - [ ] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [ ] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [ ] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)). |
||
|
|
e4ee9c0c4f | Add div wrapper around logo to increase click area (#10117) | ||
|
|
3f5a45bc97 | fix showing turn off mdm host action depending on mdm solution (#10116) | ||
|
|
b69b781c6e |
Updating GetPoliciesResponse content to address requirements from Feb 2023 OS update (#10064)
This is a tool's update to the Policies Webservice response to address the changes introduced during Feb 2023 OS update |
||
|
|
9031ee569d | Adjust permissions for Apple BM endpoints (#10107) | ||
|
|
103edb11f0 |
MDM docs: Custom settings (profiles) (#10055)
Addresses: - #9908 Changes: - Add instructions for enforcing custom settings to macOS hosts using profiles - Add instructions for using iMazing Profile Creator to create profiles - Add instructions for adding profiles to Fleet (UI and CLI) - Add instructions for migrating settings that were enforced using the old MDM solution to Fleet - Update link in Fleet UI (**Custom settings** page) to point to docs --------- Co-authored-by: Mo Zhu <mozhu888@gmail.com> |
||
|
|
1f6985e597 | Add context to some primary nav items (#10106) | ||
|
|
a6551e43d7 |
Website: Update signup error handling when there is a Stripe related error. (#10042)
Closes: https://github.com/fleetdm/confidential/issues/1748 Changes: - Added an error that is thrown if a Stripe customer cannot be created for a new user. - Updated `signup.js` to create Stripe customers for new users before the new record is saved in the database. This helps prevent situations where users are shown an error message when they submit the signup form, but their account was actually created (without a `stripeCustomerId`). |
||
|
|
40a343a43f | fix for delete profile activity (#10096) | ||
|
|
bbd0cb087b | Add compliance to CODEOWNERS (#10100) | ||
|
|
838645a905 | Screen for unsupported MDM config profile payload types in CLI (#10098) | ||
|
|
7e366272c0 |
Feature 9386: Parse the Mac Office release notes for vulnerability processing (#9993)
This PR adds the capability of parsing the release notes posted in https://learn.microsoft.com/en-us/officeupdates/release-notes-office-for-mac into a JSON metadata file (to be released in the NVD repo) and use it for detecting vulnerabilities on Mac Office apps. |
||
|
|
ac27703dd4 |
Shut down g-compliance channel, handbook cleanup (#10082)
https://app.zenhub.com/workspaces/-g-business-operations-63f3dc3cc931f6247fcf55a9/issues/gh/fleetdm/confidential/1955 |
||
|
|
75a0436f12 | max height for org logo images, ensured consistant nav height (#10095) | ||
|
|
ea42eff8e4 | Fleet UI: Saving policy platforms always successful even if incompatible (#10058) | ||
|
|
d70164cd38 | Less punctuation, consistently apply "Explore data" (#10087) | ||
|
|
5603190d6a | CIS Win10 1.2.1-1.2.3 + 2.2.1-2.2.7 (Some empty queries) (#9839) | ||
|
|
dbaa25104e | Fleet UI: Wrap activity feed (#10075) | ||
|
|
f3b0e4da72 | add configuration parameters for filesystem logging file rotation (#10048) | ||
|
|
8ed7e88ed5 |
fix No teams typo and cleanup controls page (#10089)
quick fix to change `No teams` to `No team`. also did some organising of import statements on controls page |
||
|
|
6f8abe3bc3 |
refactor vuln process command (#10088)
propagate error and properly defer store unlock |
||
|
|
590822115e |
Signature process for agreements where customer kicks off the signature request (#10085)
# Checklist for submitter If some of the following don't apply, delete the relevant line. - [ ] Changes file added for user-visible changes in `changes/` or `orbit/changes/`. See [Changes files](https://fleetdm.com/docs/contributing/committing-changes#changes-files) for more information. - [ ] Documented any API changes (docs/Using-Fleet/REST-API.md or docs/Contributing/API-for-contributors.md) - [ ] Documented any permissions changes - [ ] Input data is properly validated, `SELECT *` is avoided, SQL injection is prevented (using placeholders for values in statements) - [ ] Added support on fleet's osquery simulator `cmd/osquery-perf` for new osquery data ingestion features. - [ ] Added/updated tests - [ ] Manual QA for all new/changed functionality - For Orbit and Fleet Desktop changes: - [ ] Manual QA must be performed in the three main OSs, macOS, Windows and Linux. - [ ] Auto-update manual QA, from released version of component to new version (see [tools/tuf/test](../tools/tuf/test/README.md)). |