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

Deploy to stage #684

Merged
merged 44 commits into from
Aug 9, 2024
Merged

Deploy to stage #684

merged 44 commits into from
Aug 9, 2024

Conversation

amstilp
Copy link
Contributor

@amstilp amstilp commented Aug 9, 2024

No description provided.

dependabot bot and others added 30 commits July 30, 2024 20:39
Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.1 to 8.3.2.
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.1...8.3.2)

---
updated-dependencies:
- dependency-name: pytest
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
These are not the actual workspaces that are getting released; instead
they are workspaces where we are preparing the release. (This changed
since they were initially coded.) To help prevent confusion from users,
show "release prep" instead of "release" in text that users see. Do
not make any changes to the underlying structure of the code or
models, because we are not tracking the actual release workspaces
in ACM.
…type

Rename release workspace to "release prep workspace" in user-facing text
Since we're now using the action to combine dependabot PRs into a
single PR, it's ok if dependabot runs more frequently.
Bumps [mypy](https://github.com/python/mypy) from 1.11.0 to 1.11.1.
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.11...v1.11.1)

---
updated-dependencies:
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
This should(?) allow the create-pull-request action to run and
create a PR on dependabot updates. (This mostly affects security
updates?)
Bumps [sphinx](https://github.com/sphinx-doc/sphinx) from 7.1.2 to 8.0.2.
- [Release notes](https://github.com/sphinx-doc/sphinx/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx/blob/v8.0.2/CHANGES.rst)
- [Commits](sphinx-doc/sphinx@v7.1.2...v8.0.2)

---
updated-dependencies:
- dependency-name: sphinx
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [sphinx-autobuild](https://github.com/sphinx-doc/sphinx-autobuild) from 2021.3.14 to 2024.4.16.
- [Release notes](https://github.com/sphinx-doc/sphinx-autobuild/releases)
- [Changelog](https://github.com/sphinx-doc/sphinx-autobuild/blob/main/NEWS.rst)
- [Commits](sphinx-doc/sphinx-autobuild@2021.03.14...2024.04.16)

---
updated-dependencies:
- dependency-name: sphinx-autobuild
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.5.0 to 3.8.0.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.5.0...v3.8.0)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [ruff](https://github.com/astral-sh/ruff) from 0.5.4 to 0.5.6.
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.5.4...0.5.6)

---
updated-dependencies:
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Bumps [django-test-migrations](https://github.com/wemake-services/django-test-migrations) from 1.3.0 to 1.4.0.
- [Release notes](https://github.com/wemake-services/django-test-migrations/releases)
- [Changelog](https://github.com/wemake-services/django-test-migrations/blob/master/CHANGELOG.md)
- [Commits](wemake-services/django-test-migrations@1.3.0...1.4.0)

---
updated-dependencies:
- dependency-name: django-test-migrations
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Add permissions for pip-compile workflow
updates:
- [github.com/astral-sh/ruff-pre-commit: v0.5.4 → v0.5.6](astral-sh/ruff-pre-commit@v0.5.4...v0.5.6)
[pre-commit.ci] pre-commit autoupdate
…es/678

Update requirements file for feature/acm-v0.25
This setting will be used to automate some tasks, eg sharing
workspaces with the admin group or adding it as an admin of any
managed group that is created.
amstilp and others added 14 commits August 8, 2024 15:06
This adapter shares a workspace with the admins group upon creation.
This method checks if the workspace is shared with the admins as
an owner. If not, it shares it; if it is shared but not as an owner,
it updates the sharing.
This way, all workspaces get automatically shared with the admins
group.
Add a new adapter that automatically shares any ManagedGroup created
via the app view with the GREGOR_DCC_ADMINS group.
A couple lines of the adapter method were not covered in tests; fix
that.
Automate adding DCC admins group to workspaces and managed groups
…es/681

Update requirements file for maint/security/django-4.2.15
Update minimum django version to address security update
We were getting some failures to send mail when the audit was being
run at midnight on Sundays; perhaps trying the audit at a different
time will fix the issue.
@amstilp amstilp merged commit ab72b5b into deploy/stage Aug 9, 2024
8 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant