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

Stuff for 1.7.7 release #679

Merged
merged 1 commit into from
Oct 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,28 @@ Community.MongoDB Release Notes

.. contents:: Topics

v 1.7.7:
=========

Release Summary
----------------

This release is a maintenance release.

Bug Fixes
----------

- 678 - mongodb_shell - This module did not implement the standard connection_options
feature since it is not a pymongo module. This has now been implemented in this module.
The connection_options parameter will be parsed, in a similar way to pymongo based modules,
and those options will be appended to the mongodb connection url.
e.g. mongodb://localhost:3001/test?replicaSet=myReplSet

Minor Changes
--------------

- 675 & 673 - Minor documentation updates.

v 1.7.6:
=========

Expand Down
13 changes: 12 additions & 1 deletion changelogs/changelog.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -355,4 +355,15 @@ releases:
- 666 - mongodb_linux - Fix check for Transparent Huge Pages.
- 669 - mongodb_common - Replaces readfp function with read_file to support Python 3.12.
minor_changes:
- 667 - Several modules - Minor documentation update.
- 667 - Several modules - Minor documentation update.
1.7.7:
release_summary: |
This release is a maintenance release.
bugfixes:
- 678 - mongodb_shell - This module did not implement the standard connection_options
feature since it is not a pymongo module. This has now been implemented in this module.
The connection_options parameter will be parsed, in a similar way to pymongo based modules,
and those options will be appended to the mongodb connection url.
e.g. mongodb://localhost:3001/test?replicaSet=myReplSet
minor_changed:
- 675 & 673 - Minor documentation updates.
2 changes: 1 addition & 1 deletion galaxy.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace: community
name: mongodb
version: 1.7.6
version: 1.7.7
readme: README.md
authors:
- Ansible (https://github.com/ansible)
Expand Down
Loading