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

core: bump msgraph-sdk from 1.4.0 to 1.5.2 #10450

Merged
merged 1 commit into from
Jul 11, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 11, 2024

Bumps msgraph-sdk from 1.4.0 to 1.5.2.

Release notes

Sourced from msgraph-sdk's releases.

v1.5.2

1.5.2 (2024-07-10)

Bug Fixes

  • fixes module name for release (941f6b2)

v1.5.1

1.5.1 (2024-07-09)

Bug Fixes

  • avoid using default mutable arguments (4912f5a)

Documentation

Changelog

Sourced from msgraph-sdk's changelog.

1.5.2 (2024-07-10)

Bug Fixes

  • fixes module name for release (941f6b2)

1.5.1 (2024-07-09)

Bug Fixes

  • avoid using default mutable arguments (4912f5a)

Documentation

[1.5.0] - 2024-05-23

Changed

  • Weekly generation with Kiota - 21st May 2024
Commits
  • 14fd337 Merge pull request #808 from microsoftgraph/release-please--branches--main--c...
  • 8a2c0e1 chore(main): release 1.5.2
  • f73ffa2 Merge pull request #807 from microsoftgraph/bugfix/module-name
  • 941f6b2 fix: fixes module name for release
  • a188189 Merge pull request #806 from microsoftgraph/release/onefivetwo
  • 4182394 fix: project configuration for releases
  • d3e9c6e Merge pull request #802 from microsoftgraph/bugfix/flit-configuration
  • a2c60f0 chore: updates kiota http package
  • 8021dde Merge branch 'main' into bugfix/flit-configuration
  • ac303af Merge pull request #804 from microsoftgraph/dependabot/pip/microsoft-kiota-ht...
  • Additional commits viewable in compare view

Dependabot compatibility score

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 commands and options

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @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)

Bumps [msgraph-sdk](https://github.com/microsoftgraph/msgraph-sdk-python) from 1.4.0 to 1.5.2.
- [Release notes](https://github.com/microsoftgraph/msgraph-sdk-python/releases)
- [Changelog](https://github.com/microsoftgraph/msgraph-sdk-python/blob/main/CHANGELOG.md)
- [Commits](microsoftgraph/msgraph-sdk-python@v1.4.0...v1.5.2)

---
updated-dependencies:
- dependency-name: msgraph-sdk
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot requested a review from a team as a code owner July 11, 2024 04:28
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 11, 2024
Copy link

netlify bot commented Jul 11, 2024

Deploy Preview for authentik-storybook canceled.

Name Link
🔨 Latest commit 8e84e27
🔍 Latest deploy log https://app.netlify.com/sites/authentik-storybook/deploys/668f5f6f4f960e000863c34d

Copy link

netlify bot commented Jul 11, 2024

Deploy Preview for authentik-docs canceled.

Name Link
🔨 Latest commit 8e84e27
🔍 Latest deploy log https://app.netlify.com/sites/authentik-docs/deploys/668f5f6fb6b08b00085b4329

Copy link
Contributor

authentik PR Installation instructions

Instructions for docker-compose

Add the following block to your .env file:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-ghcr.io/goauthentik/dev-server:gh-8e84e2768da7a074122cb3da482bb62ae48600c1
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

For arm64, use these values:

AUTHENTIK_IMAGE=ghcr.io/goauthentik/dev-server
AUTHENTIK_TAG=gh-ghcr.io/goauthentik/dev-server:gh-8e84e2768da7a074122cb3da482bb62ae48600c1-arm64
AUTHENTIK_OUTPOSTS__CONTAINER_IMAGE_BASE=ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s

Afterwards, run the upgrade commands from the latest release notes.

Instructions for Kubernetes

Add the following block to your values.yml file:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-ghcr.io/goauthentik/dev-server:gh-8e84e2768da7a074122cb3da482bb62ae48600c1

For arm64, use these values:

authentik:
    outposts:
        container_image_base: ghcr.io/goauthentik/dev-%(type)s:gh-%(build_hash)s
global:
    image:
        repository: ghcr.io/goauthentik/dev-server
        tag: gh-ghcr.io/goauthentik/dev-server:gh-8e84e2768da7a074122cb3da482bb62ae48600c1-arm64

Afterwards, run the upgrade commands from the latest release notes.

@BeryJu BeryJu merged commit c09d36a into main Jul 11, 2024
66 checks passed
@BeryJu BeryJu deleted the dependabot/pip/msgraph-sdk-1.5.2 branch July 11, 2024 09:28
kensternberg-authentik added a commit that referenced this pull request Jul 11, 2024
* main:
  core: revert backchannel only filtering (#10455)
  website/docs: add info about license:org relation (#10444)
  web: bump @sentry/browser from 8.15.0 to 8.17.0 in /web in the sentry group across 1 directory (#10449)
  web: bump the storybook group across 1 directory with 7 updates (#10451)
  core: bump msgraph-sdk from 1.4.0 to 1.5.2 (#10450)
  core: bump sentry-sdk from 2.8.0 to 2.9.0 (#10452)
  website/docs: add info and link about supported versions (#10442)
kensternberg-authentik added a commit that referenced this pull request Jul 12, 2024
* main: (35 commits)
  core: bump github.com/redis/go-redis/v9 from 9.5.3 to 9.5.4 (#10469)
  core: bump goauthentik.io/api/v3 from 3.2024060.6 to 3.2024061.1 (#10470)
  web: bump the babel group across 1 directory with 2 updates (#10471)
  web: bump the storybook group across 1 directory with 7 updates (#10472)
  core: bump coverage from 7.5.4 to 7.6.0 (#10473)
  website/docs: air gapped: clarify .env usage at the top for Kubernetes installations (#10447)
  website/docs: air gapped: update "see configuration" wording (#10448)
  website/docs: Add Kubernetes Bootstrap Instructions (#9541)
  web: bump API Client version (#10461)
  release: 2024.6.1
  website/docs: add 2024.6.1 release notes (#10456)
  core: revert backchannel only filtering (#10455)
  website/docs: add info about license:org relation (#10444)
  web: bump @sentry/browser from 8.15.0 to 8.17.0 in /web in the sentry group across 1 directory (#10449)
  web: bump the storybook group across 1 directory with 7 updates (#10451)
  core: bump msgraph-sdk from 1.4.0 to 1.5.2 (#10450)
  core: bump sentry-sdk from 2.8.0 to 2.9.0 (#10452)
  website/docs: add info and link about supported versions (#10442)
  core: fix source flow_manager not resuming flow when linking (#10436)
  ci: fix PR comment k8s snippet (#10433)
  ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant