Skip to content

Commit b29501a

Browse files
authored
Merge pull request #355 from Temikus/release_140
Release 1.4.0 🚀
2 parents c064f4d + 86b6a48 commit b29501a

File tree

2 files changed

+80
-1
lines changed

2 files changed

+80
-1
lines changed

CHANGELOG.md

+79
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
The format is loosely based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
4+
5+
## 1.4.0
6+
7+
### User-facing
8+
9+
#### Added
10+
11+
- \#336 `Fog::Compute::Google::Server.set_metadata` is now working properly and adopted a simpler format, e.g. `{'foo' => 'bar', 'baz'=>'foo'}`
12+
- \#334 Added a new helper method: `Fog::Compute::Google::Server.public_ip_address` [temikus]
13+
- \#314 Added `Fog::Compute::Google::InstanceGroup.add_instance` method back [temikus]
14+
- \#326 Added support for using predefined ACLs, refactor valid ACLs [vimutter]
15+
- \#318 Added fog_public support in Storage JSON API [jayhsu21]
16+
17+
#### Fixed
18+
19+
- \#354 Bump Google API client to 0.23 [temikus]
20+
- \#346 Fixed get_health when called with an instance name [bpaquet]
21+
- \#317 Fixed source_image selection to get the image from name if the format is not compatible with new Google API Client [temikus]
22+
- \#321 Fix string key instead of symbol for subnetworks listing [tumido]
23+
- \#351 Fixed trailing spaces and added data presence check to `Fog::Storage::GoogleJSON.put_object` [vimutter]
24+
25+
### Development changes
26+
27+
#### Added
28+
29+
- \#353 Added collection/model unit tests to be run by Travis CI [temikus]
30+
- \#347 Added target pool tests [temikus]
31+
32+
#### Fixed
33+
34+
- \#322 Fixed all broken integration tests, all tests now pass in CI [temikus]
35+
- \#344 Updated CI pipeline to run in parallel, broke out test tasks [temikus]
36+
37+
## 1.0.1
38+
39+
\#290 - Fixes paperclip integration
40+
\#288 - Fixes typo in server network code
41+
42+
## 1.0.0
43+
44+
1.0.0!!!!!!!!!!!!
45+
46+
This rewrites everything except for the legacy storage backend!
47+
48+
Shoutout to @emilymye, @Temikus, @DawidJanczak, @Everlag and everyone who has been asking for this for ~forever.
49+
50+
We did this major refactor because as of version 0.9, google-api-client rewrote their entire api, thus limiting our ability to integrate with google APIs, and also running into a bunch of deprecated gem collisions.
51+
52+
You no longer need to require google-api-client, we are now doing that for you.
53+
54+
HELP: We need help testing. Please report bugs! As this is a complete rewrite of the request layer, there are undoubetedly bugs. We had to throw away most of our tests, and due to the time this has taken us, we chose to ship, instead of writing tests for everything all over again. If you would like to write tests, we would love your PRs, as well as any ideas you have about how we can test this code better.
55+
56+
Thanks!
57+
58+
## 0.6.0
59+
60+
NOTE: New Monitoring models are not compatible in any way to old ones because of significant rewrite to monitoring api since v2beta2.
61+
62+
## 0.5.5
63+
64+
Adds support for SSL certificates, https proxies and global IP addresses: #244
65+
66+
## 0.5.4
67+
68+
Fixes a storage bug #224 and fixes an issue with compute snapshots #240
69+
70+
## 0.5.3
71+
72+
Fixes a bunch of bugs and adds subnetworks support.
73+
74+
PRs that change functionality: #212, #215, #203, #198, #201, #221, #222, #216
75+
76+
## 0.5.2
77+
78+
Rapid-releasing 0.5.2 due to regression fixed by #190 still present in v0.5.1
79+
We encourage people using 0.5.1 to upgrade.

lib/fog/google/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
module Fog
22
module Google
3-
VERSION = "1.3.3".freeze
3+
VERSION = "1.4.0".freeze
44
end
55
end

0 commit comments

Comments
 (0)