Skip to content

Commit

Permalink
chore(release): 1.27.1
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Dec 6, 2023
1 parent 47d6781 commit dcf849e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## [1.27.1](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.27.0...v1.27.1) (2023-12-06)


### Bug Fixes

* Add 2.5Gbps to validation set ([#313](https://github.com/terraform-routeros/terraform-provider-routeros/issues/313)) ([47d6781](https://github.com/terraform-routeros/terraform-provider-routeros/commit/47d67811bc70776b9aea58f4f8ec0dc0166eed42)), closes [#311](https://github.com/terraform-routeros/terraform-provider-routeros/issues/311)

## [1.27.0](https://github.com/terraform-routeros/terraform-provider-routeros/compare/v1.26.0...v1.27.0) (2023-12-02)


Expand Down
2 changes: 1 addition & 1 deletion docs/resources/interface_ethernet.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ resource "routeros_interface_ethernet" "test" {
auto is the same as on except when auto-negotiation=yes flow control status is resolved by taking into account what other end advertises.
- `sfp_rate_select` (String) Allows to control rate select pin for SFP ports. Values: high | low
- `sfp_shutdown_temperature` (Number) The temperature in Celsius at which the interface will be temporarily turned off due to too high detected SFP module temperature (introduced v6.48).The default value for SFP/SFP+/SFP28 interfaces is 95, and for QSFP+/QSFP28 interfaces 80 (introduced v7.6).
- `speed` (String) Sets interface data transmission speed which takes effect only when auto-negotiation is disabled.
- `speed` (String) Sets interface data transmission speed which takes effect only when ```auto_negotiation``` is disabled.
- `tx_flow_control` (String) When set to on, the port will generate pause frames to the upstream device to temporarily stop the packet transmission.
Pause frames are only generated when some routers output interface is congested and packets cannot be transmitted anymore.
Auto is the same as on except when auto-negotiation=yes flow control status is resolved by taking into account what other end advertises.
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/ip_address.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
## Example Usage
```terraform
resource "routeros_ip_address" "address" {
address = "10.0.0.1"
address = "10.0.0.1/24"
interface = "bridge"
network = "10.0.0.0/24"
network = "10.0.0.0"
}
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "terraform-provider-routeros",
"version": "1.27.0",
"version": "1.27.1",
"repository": {
"type": "git",
"url": "https://github.com/terraform-routeros/terraform-provider-routeros"
Expand Down

0 comments on commit dcf849e

Please sign in to comment.