Skip to content

Commit

Permalink
Patch cycle - 2024 / Cycle 5 (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
dallasread authored Dec 12, 2024
1 parent 80cee1c commit d75d1a5
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ jobs:
php-version:
- '8.2'
- '8.3'
- '8.4'
steps:
- name: Set up PHP
uses: shivammathur/setup-php@c541c155eee45413f5b09a52248675b1a2575231
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ composer.phar
vendor/
.phpunit.result.cache
composer.lock
.tool-versions
1 change: 0 additions & 1 deletion .tool-versions

This file was deleted.

2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ This project uses [Semantic Versioning 2.0.0](http://semver.org/).

- NEW: Added `aliasEmail` and `destinationEmail` to `EmailForward`
- CHANGED: Deprecated `from` and `to` fields in `EmailForward`
- CHANGED: `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
- CHANGED: Add support for PHP 8.4

## 2.0.0

Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2015-2022 DNSimple Corporation
Copyright (c) 2015-2024 DNSimple Corporation

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ Contibutions are welcomed. Please open an issue to discuss the changes before op

## License

Copyright (c) 2015-2022 DNSimple Corporation. This is Free Software distributed under the MIT license.
Copyright (c) 2015-2024 DNSimple Corporation. This is Free Software distributed under the MIT license.
3 changes: 3 additions & 0 deletions src/Dnsimple/Service/Domains.php
Original file line number Diff line number Diff line change
Expand Up @@ -99,6 +99,7 @@ public function deleteDomain($account, $domain): Response
* @param array $options key/value options to sort and filter the results
* @return Response The list of collaborators
* @throws DnsimpleException When something goes wrong
* @deprecated `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
*/
public function listCollaborators($account, $domain, array $options = []): Response
{
Expand All @@ -124,6 +125,7 @@ public function listCollaborators($account, $domain, array $options = []): Respo
* @param array $attributes The collaborator attributes. Refer to the documentation for the list of available fields.
* @return Response The collaborator added to the domain in the account
* @throws DnsimpleException When something goes wrong
* @deprecated `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
*/
public function addCollaborator($account, $domain, array $attributes): Response
{
Expand All @@ -141,6 +143,7 @@ public function addCollaborator($account, $domain, array $attributes): Response
* @param int $collaborator The collaborator id
* @return Response An empty response
* @throws DnsimpleException When something goes wrong
* @deprecated `DomainCollaborators` have been deprecated and will be removed in the next major version. Please use our Domain Access Control feature.
*/
public function removeCollaborator($account, $domain, $collaborator): Response
{
Expand Down

0 comments on commit d75d1a5

Please sign in to comment.